diff --git a/VERSION b/VERSION index f0a2883..5e9287b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.10 +1.9.11 diff --git a/changelog.json b/changelog.json index 3bf24ba..0b40388 100644 --- a/changelog.json +++ b/changelog.json @@ -1,5 +1,18 @@ { "versions": [ + { + "version": "1.9.11", + "date": "2026-05-28", + "changes": { + "features": [ + "Bouton 'Test Power Supply' à côté de 'Run Self Test' (pages Admin, Accueil, Capteurs, Modem) : lance uniquement le check sous-tension dans un petit modal dédié, sans dérouler tout le Self Test. Affiche le verdict (OK / Warning / Failed) + le détail des bits (sous-tension maintenant / depuis le boot, throttling)." + ], + "improvements": [], + "fixes": [], + "compatibility": [] + }, + "notes": "Réutilise l'endpoint launcher.php?type=throttled ajouté en v1.9.10. Le modal est défini dans selftest-modal.html (déjà chargé sur toutes les pages)." + }, { "version": "1.9.10", "date": "2026-05-28", diff --git a/html/admin.html b/html/admin.html index 769dc70..bd4b5d2 100755 --- a/html/admin.html +++ b/html/admin.html @@ -59,6 +59,13 @@ Run Self Test + +
| Valeur brute | ${data.raw} |
| Sous-tension maintenant | ${flag(data.under_voltage_now)} |
| Throttling maintenant | ${flag(data.throttled_now)} |
| Sous-tension depuis le boot | ${flag(data.under_voltage_occurred)} |
| Throttling depuis le boot | ${flag(data.throttling_occurred)} |