From 4b31c8eb8a570e15b304df2f7a8fd48a2bea0431 Mon Sep 17 00:00:00 2001 From: scott Date: Thu, 9 Apr 2026 18:42:02 -0400 Subject: [PATCH] Clean up main menu and banner UI labels Remove (stdlib only) from banner subtitle and (serial) from menu option 1. Co-Authored-By: Claude Sonnet 4.6 --- es24n_conf.py | 2 +- modules/ui.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/es24n_conf.py b/es24n_conf.py index d1c4695..7299e96 100755 --- a/es24n_conf.py +++ b/es24n_conf.py @@ -31,7 +31,7 @@ def main(): while True: banner() draw_box([ - f" {_c(C.BOLD, '1')} Configure Network Settings (serial)", + f" {_c(C.BOLD, '1')} Configure Network Settings", f" {_c(C.BOLD, '2')} Update IOM / Fabric Card Firmware", f" {_c(C.BOLD, '3')} Query Current Configuration", f" {_c(C.BOLD, '4')} Exit", diff --git a/modules/ui.py b/modules/ui.py index fe6be2c..163c014 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -37,7 +37,7 @@ def banner(): print(_c(C.CYN, " |") + _c(C.WHT + C.BOLD, " TrueNAS ES24N IOM Configuration Tool ") + _c(C.CYN, " |")) print(_c(C.CYN, " |") + _c(C.DIM, - " Serial Config & Firmware Updates (stdlib only) ") + _c(C.CYN, " |")) + " Serial Config & Firmware Updates ") + _c(C.CYN, " |")) print(_c(C.CYN, " +" + "-" * w + "+")) print()