Initial commit

This commit is contained in:
2026-01-24 05:19:02 -07:00
commit 2072f700ae
1900 changed files with 139264 additions and 0 deletions

15
build/auto-update Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
dir="$(dirname "$(readlink -f "$0")")"
root="${dir}/../"
root="$(realpath "$root")"
source "${dir}/pack.properties"
cd "${dir}/legacy"
zip -rv "${root}/dist/${TITLE}_Auto-Update-Legacy.zip"
cd -
cd "${dir}/unsup" || exit
zip -rv "${root}/dist/${TITLE}_Auto-Update.zip" .
cd - || exit
printf %s\\n "Auto update distributions created!"