Translate repository documentation and reorganize version history

This commit is contained in:
2026-08-03 19:47:19 +00:00
parent 5c5edbaac4
commit 8a9115af83
289 changed files with 2544 additions and 3393 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
set -eu
ROOT="${1:-/srv/docker/assetmanager}"
cd "$ROOT"
echo "VERSION: $(cat VERSION)"
grep -n 'APP_VERSION = "0.5.5.5"' app/version.py
grep -n 'powershell -ExecutionPolicy Bypass -File' app/software_control.py
if sed -n '/def _launch_uploaded_script/,/return _run_meshctrl/p' app/software_control.py | grep -q "action=.*--powershell"; then
echo "FEHLER: _launch_uploaded_script contains --powershell" >&2
exit 1
fi
echo "files auf dem Host are korrekt."