affichage à l'écran de la version

This commit is contained in:
2026-03-27 01:38:59 +01:00
parent 628b9bb518
commit de5758a123
2 changed files with 10 additions and 10 deletions

View File

@@ -13,15 +13,15 @@
</head> </head>
<body> <body>
<header> <header>
<div style="display: flex; gap: 10px; align-items: center;"> <div style="display: flex; gap: 10px; align-items: center;">
<button class="stop-all" onclick="stopAll()">🛑 STOP ALL</button> <button class="stop-all" onclick="stopAll()">🛑 STOP ALL</button>
<button id="installBtn" style="display:none; padding: 12px 20px; background: var(--accent); color: black; border: none; border-radius: 4px; font-weight: bold; cursor: pointer;"> <span id="app-version" style="color: #555; font-size: 0.8rem; margin-left: 10px;">v1.201</span>
📥 INSTALLER SOUNDBOARD
</button> <button id="installBtn" style="display:none; ...">📥 INSTALLER</button>
</div> </div>
<button onclick="toggleEditMode()" id="toggleBtn" style="padding: 12px 30px; border-radius: 4px; font-weight: bold;">MODE ÉDITION</button> <button onclick="toggleEditMode()" id="toggleBtn">MODE ÉDITION</button>
</header> </header>
<div class="grid" id="board"></div> <div class="grid" id="board"></div>

View File

@@ -1,4 +1,4 @@
const CACHE_NAME = 'sb-v1.2'; // Change ce numéro pour forcer une mise à jour globale const CACHE_NAME = 'sb-v1.201'; // Change ce numéro pour forcer une mise à jour globale
const ASSETS = [ const ASSETS = [
'./', // Racine './', // Racine
'./index.html', './index.html',