chore: update manifest and Nitro update script

This commit is contained in:
root
2026-06-07 17:10:26 +02:00
parent 2f363eb106
commit 4a4110a478
2 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -111,7 +111,7 @@
"src": "public/assets/images/profile/profile-bg.png"
},
"resources/css/global.css": {
"file": "assets/global-waxZ23FQ.css",
"file": "assets/global-CfixNq9d.css",
"name": "global",
"names": [
"global.css"
@@ -166,7 +166,7 @@
]
},
"resources/themes/atom/css/app.css": {
"file": "assets/app-BwtlzFKR.css",
"file": "assets/app-RokO-SZl.css",
"name": "app",
"names": [
"app.css"
+6 -2
View File
@@ -93,8 +93,12 @@ echo "--> Updating emulator launch file..."
cd target/
cat << EOF > emulator
#!/bin/bash
java -Xmx2G -jar $JAR_FILE
#!/bin/sh
file_name_emulator=emulator.log
current_time=\$(date "+%H%M_%d-%m-%Y")
file_name=\$file_name_emulator.\$current_time
mv /var/log/emu/emulator.log /var/log/emu/\$file_name
java -Dfile.encoding=UTF8 -Xmx2G -jar $JAR_FILE
EOF
chmod +x emulator