v1.12.4: bouton Rafraichir dans le modal de consultation database.html

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
PaulVua
2026-06-03 09:03:33 +02:00
parent a0f2d28b96
commit e2d34e1686
3 changed files with 21 additions and 2 deletions

View File

@@ -1 +1 @@
1.12.3 1.12.4

View File

@@ -1,5 +1,18 @@
{ {
"versions": [ "versions": [
{
"version": "1.12.4",
"date": "2026-06-03",
"changes": {
"features": [],
"improvements": [
"database.html: ajout d'un bouton 'Rafraîchir' dans le modal de consultation des mesures. Il recharge la page courante (même offset) sans fermer le modal, pour voir les nouvelles données arriver en temps réel."
],
"fixes": [],
"compatibility": []
},
"notes": "Amélioration UI uniquement, aucune incidence firmware/transmission."
},
{ {
"version": "1.12.3", "version": "1.12.3",
"date": "2026-06-02", "date": "2026-06-02",

View File

@@ -182,7 +182,13 @@
</div> </div>
</div> </div>
<div class="modal-footer justify-content-between"> <div class="modal-footer justify-content-between">
<div class="d-flex align-items-center gap-2">
<button type="button" class="btn btn-outline-secondary" id="tableModalRefresh" onclick="loadTableModalPage()" title="Rafraîchir">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2v1z"/><path d="M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466z"/></svg>
Rafraîchir
</button>
<div class="text-muted small" id="tableModalRange"></div> <div class="text-muted small" id="tableModalRange"></div>
</div>
<div class="btn-group"> <div class="btn-group">
<button type="button" class="btn btn-outline-primary" id="tableModalPrev" onclick="tableModalChangePage(-1)" disabled>← Précédent</button> <button type="button" class="btn btn-outline-primary" id="tableModalPrev" onclick="tableModalChangePage(-1)" disabled>← Précédent</button>
<button type="button" class="btn btn-outline-primary" id="tableModalNext" onclick="tableModalChangePage(1)">Suivant →</button> <button type="button" class="btn btn-outline-primary" id="tableModalNext" onclick="tableModalChangePage(1)">Suivant →</button>