Project restart

This commit is contained in:
2025-12-29 10:46:05 +01:00
commit 59d19cb48c
388 changed files with 48020 additions and 0 deletions

12
package/appimage/build.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/bash
export APP_VERSION=$(<../../src/VERSION)
appimage-builder --recipe AppImageBuilder.yml
RESULT=$?
if [ -n "$1" ] && [ "$1" = "install" ]; then
if [ $RESULT -eq 0 ]; then
install -v "testium-${APP_VERSION}-x86_64.AppImage" "${HOME}/.local/bin/testium"
fi
fi