chore: bump version to v3.0.12

This commit is contained in:
github-actions[bot] 2026-04-20 16:32:44 +00:00
parent 5c90715d44
commit f51e90bb7c
4 changed files with 8 additions and 8 deletions

View file

@ -1271,7 +1271,7 @@ class Security {
}
var security = new Security();
// let appVersion = 'v3.0.11'; // Default placeholder
// let appVersion = 'v3.0.12'; // Default placeholder
async function getAppVersion() {
try {
const response = await fetch('/appversion');
@ -1284,7 +1284,7 @@ async function getAppVersion() {
// Trigger any UI updates here
} catch (error) {
console.error("Error loading App version:", error);
appVersion = 'v3.0.11'; // Default placeholder
appVersion = 'v3.0.12'; // Default placeholder
}
return appVersion;
}