Release v1.1.3

This commit is contained in:
rene 2026-04-30 15:39:54 +02:00
commit b3e81f4504
6 changed files with 18 additions and 7 deletions

View file

@ -3,8 +3,8 @@
Router, State-Management, Navigation, Initialisierung.
============================================================ */
const APP_VER = '533'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VERSION = '1.1.2'; // ← semantische Version, wird bei make release gesetzt
const APP_VER = '536'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VERSION = '1.1.3'; // ← semantische Version, wird bei make release gesetzt
const IS_STAGING = location.hostname === 'staging.banyaro.app';
const App = (() => {

View file

@ -64,8 +64,15 @@ window.Page_settings = (() => {
}
}
function refresh() {
async function refresh() {
_render();
if (_appState?.user) {
try {
const fresh = await API.auth.me();
Object.assign(_appState.user, fresh);
_render();
} catch {}
}
}
// ----------------------------------------------------------