From 12d688daec71e1c52579f250c792dde389659d85 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Sun, 9 Nov 2025 15:36:14 -0500 Subject: [PATCH] #580 added more new! tags and updated change logs --- coordinator/config/system.lua | 2 ++ coordinator/configure.lua | 2 +- supervisor/config/system.lua | 3 +++ supervisor/configure.lua | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/coordinator/config/system.lua b/coordinator/config/system.lua index b7d8d04..c7d8efb 100644 --- a/coordinator/config/system.lua +++ b/coordinator/config/system.lua @@ -127,9 +127,11 @@ function system.create(tool_ctl, main_pane, cfg_sys, divs, ext, style) TextBox{parent=net_c_2,text="If you selected multiple interfaces, please specify if this device should prefer wireless or otherwise wired. The preferred interface is switched too when reconnected even if failover has succeeded onto the fallback interface."} self.wl_pref = Checkbox{parent=net_c_2,y=7,label="Prefer Wireless",default=ini_cfg.PreferWireless,box_fg_bg=cpair(colors.lightBlue,colors.black),disable_fg_bg=g_lg_fg_bg} + TextBox{parent=net_c_2,x=19,y=7,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision TextBox{parent=net_c_2,y=9,text="With a wireless modem, configure Pocket access."} self.api_en = Checkbox{parent=net_c_2,y=11,label="Enable Pocket Access",default=ini_cfg.API_Enabled,box_fg_bg=cpair(colors.lightBlue,colors.black),disable_fg_bg=g_lg_fg_bg} + TextBox{parent=net_c_2,x=24,y=11,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision local function submit_net_cfg_opts() if tmp_cfg.WirelessModem and tmp_cfg.WiredModem then diff --git a/coordinator/configure.lua b/coordinator/configure.lua index a6d63ca..b63883d 100644 --- a/coordinator/configure.lua +++ b/coordinator/configure.lua @@ -37,7 +37,7 @@ local changes = { { "v1.3.3", { "Added standard with black off state color mode", "Added blue indicator color modes" } }, { "v1.5.1", { "Added energy scale options" } }, { "v1.6.13", { "Added option for Po/Pu pellet green/cyan pairing" } }, - { "v1.7.0", { "Added support for wired communications modems" } } + { "v1.7.0", { "Added support for wired communications modems", "Added option for allowing Pocket connections" } } } ---@class crd_configurator diff --git a/supervisor/config/system.lua b/supervisor/config/system.lua index f61f21c..16d938e 100644 --- a/supervisor/config/system.lua +++ b/supervisor/config/system.lua @@ -118,6 +118,7 @@ function system.create(tool_ctl, main_pane, cfg_sys, divs, fac_pane, style, exit PushButton{parent=net_c_1,x=44,y=14,text="Next \x1a",callback=submit_interfaces,fg_bg=nav_fg_bg,active_fg_bg=btn_act_fg_bg} TextBox{parent=net_c_2,x=1,y=1,text="Please assign device connection interfaces if you selected multiple network interfaces."} + TextBox{parent=net_c_2,x=39,y=2,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision TextBox{parent=net_c_2,x=1,y=4,text="Reactor PLC\nRTU Gateway\nCoordinator",fg_bg=g_lg_fg_bg} local opts = { "Wireless", "Wired", "Both" } local plc_listen = Radio2D{parent=net_c_2,x=14,y=4,rows=1,columns=3,default=ini_cfg.PLC_Listen,options=opts,radio_colors=cpair(colors.lightGray,colors.black),select_color=colors.lightBlue,disable_color=colors.gray,disable_fg_bg=g_lg_fg_bg} @@ -133,7 +134,9 @@ function system.create(tool_ctl, main_pane, cfg_sys, divs, fac_pane, style, exit TextBox{parent=net_c_2,y=8,text="With a wireless modem, configure Pocket access."} local pkt_en = Checkbox{parent=net_c_2,y=10,label="Enable Pocket Access",default=ini_cfg.PocketEnabled,callback=on_pocket_en,box_fg_bg=cpair(colors.lightBlue,colors.black),disable_fg_bg=g_lg_fg_bg} + TextBox{parent=net_c_2,x=24,y=10,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision self.pkt_test = Checkbox{parent=net_c_2,label="Enable Pocket Remote System Testing",default=ini_cfg.PocketTest,box_fg_bg=cpair(colors.lightBlue,colors.black),disable_fg_bg=g_lg_fg_bg} + TextBox{parent=net_c_2,x=39,y=11,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision TextBox{parent=net_c_2,x=3,text="This allows remotely playing alarm sounds.",fg_bg=g_lg_fg_bg} local function submit_net_cfg_opts() diff --git a/supervisor/configure.lua b/supervisor/configure.lua index 83a9264..bedb888 100644 --- a/supervisor/configure.lua +++ b/supervisor/configure.lua @@ -34,7 +34,7 @@ local changes = { { "v1.2.12", { "Added front panel UI theme", "Added color accessibility modes" } }, { "v1.3.2", { "Added standard with black off state color mode", "Added blue indicator color modes" } }, { "v1.6.0", { "Added sodium emergency coolant option" } }, - { "v1.8.0", { "Added support for both wired and wireless networking" } } + { "v1.8.0", { "Added support for wired communications modems", "Added option for allowing Pocket connections", "Added option for allowing Pocket test commands" } } } ---@class svr_configurator