git commit -m "first commit for v2"

This commit is contained in:
2025-12-29 16:21:22 +07:00
commit aa3d832d5c
1807 changed files with 307078 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
wget "https://github.com/robincornelius/libedssharp/raw/gh-pages/build/OpenEDSEditor-latest.zip"
if [ $? -eq 0 ] ; then
rm -r EDSEditor
unzip OpenEDSEditor-latest.zip -d EDSEditor
chmod a+x EDSEditor/*.exe
rm OpenEDSEditor-latest.zip
echo "EDSEditor updated successfully."
fi
echo "Press enter to continue..."
read