Skip to content

Commit 3af1fc2

Browse files
fhirschmannclaude
andcommitted
feat: rename file browser tab to Files and enlarge tree view
Renames the RFID/file tab label to 'Files' (with a folder-tree icon) in all locales and doubles the file tree height (200->400px) for easier browsing on larger libraries. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent bd07a7c commit 3af1fc2

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ neon logo that doubles as the SVG favicon ([`8d9725c`](../../commit/8d9725c)):
7373
| Blinking "connection lost" icon in the navbar replaces the connection-lost toast | [`c45402b`](../../commit/c45402b) |
7474
| WiFi signal-strength indicator in the navbar (RSSI %, color-coded), next to the battery | [`e4ac7e7`](../../commit/e4ac7e7) |
7575
| Play/pause button in the RFID tab plays the highlighted file/folder (and pauses running playback) | [`8d3d196`](../../commit/8d3d196) |
76+
| File browser tab renamed to "Files" (folder icon) and the file tree view height doubled for easier navigation | [`9d2a8ae`](../../commit/9d2a8ae) |
7677
| Cyberpunk footer below the interface (neon "LEO INDUSTRIES // DIVISION: AUDIO" branding) | [`c21f8bf`](../../commit/c21f8bf) |
7778
| SD card cleanup: removes macOS metadata (`.DS_Store`, `._*`, Spotlight/Trashes) with one click | [`5f38a51`](../../commit/5f38a51) |
7879
| Live log: the log dialog refreshes every 2 s and follows the end of the log | [`d326faa`](../../commit/d326faa) |

html/locales/de.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"nav": {
3030
"control": "Steuerung",
31-
"rfid": "RFID",
31+
"rfid": "Dateien",
3232
"wifi": "WLAN",
3333
"mqtt": "MQTT",
3434
"ftp": "FTP",
@@ -609,4 +609,4 @@
609609
"chargelevel": "Aktuelle Batterieladung: {{chargelevel}} %",
610610
"hallsensor": "Hall-Sensor Nullfeldwert: {{hsnullfieldvalue}}, aktueller Wert: {{hsactual}}, Differenz:{{hsdiff}}, letzter WaitFor-Zustand:{{hslastwaitforstate}} (Wartezeit:{{hswaited}} ms)"
611611
}
612-
}
612+
}

html/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"nav": {
3030
"control": "Control",
31-
"rfid": "RFID",
31+
"rfid": "Files",
3232
"wifi": "WiFi",
3333
"mqtt": "MQTT",
3434
"ftp": "FTP",

html/locales/fr.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"nav": {
3030
"control": "Contrôle",
31-
"rfid": "RFID",
31+
"rfid": "Fichiers",
3232
"wifi": "WiFi",
3333
"mqtt": "MQTT",
3434
"ftp": "FTP",
@@ -598,4 +598,4 @@
598598
"chargelevel": "Niveau de charge actuel : {{chargelevel}} %",
599599
"hallsensor": "Valeur nulle du capteur d'effet Hall : {{hsnullfieldvalue}}, actuel : {{hsactual}}, diff : {{hsdiff}}, Dernier état (LastWaitFor) : {{hslastwaitforstate}} (attendu : {{hswaited}} ms)"
600600
}
601-
}
601+
}

html/management.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@
12151215
}
12161216

12171217
.filetree-size {
1218-
height: 200px;
1218+
height: 400px;
12191219
}
12201220

12211221
.filetree-container {
@@ -1611,7 +1611,7 @@ <h5 class="modal-title" data-i18n="tools.nvs.erase.title"></h5>
16111611
class="fas fa-gamepad"></i><span class=".d-sm-none .d-md-block" data-i18n="nav.control"></span></a>
16121612
<a class="nav-item nav-link main-tab-item active" id="nav-rfid-tab" data-bs-toggle="tab" href="#nav-rfid"
16131613
data-bs-target="#nav-rfid" role="tab" aria-controls="nav-rfid" aria-selected="true"><i
1614-
class="fas fa-dot-circle"></i><span data-i18n="nav.rfid"></span></a>
1614+
class="fas fa-folder-tree"></i><span data-i18n="nav.rfid"></span></a>
16151615
<a class="nav-item nav-link main-tab-item" id="nav-wifi-tab" data-bs-toggle="tab" href="#nav-wifi"
16161616
data-bs-target="#nav-wifi" role="tab" aria-controls="nav-wifi" aria-selected="false"><i
16171617
class="fas fa-wifi"></i><span class=".d-sm-none .d-md-block"><span
@@ -5117,7 +5117,7 @@ <h5 class="modal-title" data-i18n="tools.nvs.erase.title"></h5>
51175117
$('#expandfilelist').hide();
51185118
$('#shrinkfilelist').show();
51195119
} else {
5120-
el.setAttribute("style", "height: 200px");
5120+
el.setAttribute("style", "height: 400px");
51215121
$('#shrinkfilelist').hide();
51225122
$('#expandfilelist').show();
51235123
}

0 commit comments

Comments
 (0)