diff --git a/coordinator/config/hmi.lua b/coordinator/config/hmi.lua index 80c67fe..6f52cf1 100644 --- a/coordinator/config/hmi.lua +++ b/coordinator/config/hmi.lua @@ -240,6 +240,7 @@ function hmi.create(tool_ctl, main_pane, cfg_sys, divs, style) tool_ctl.clock_fmt = RadioButton{parent=crd_c_1,x=1,y=5,default=util.trinary(ini_cfg.Time24Hour,1,2),options={"24-Hour","12-Hour"},callback=function()end,radio_colors=cpair(colors.lightGray,colors.black),select_color=colors.lime} TextBox{parent=crd_c_1,x=20,y=4,text="Po/Pu Pellet Color"} + TextBox{parent=crd_c_1,x=39,y=4,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision tool_ctl.pellet_color = RadioButton{parent=crd_c_1,x=20,y=5,default=util.trinary(ini_cfg.GreenPuPellet,1,2),options={"Green Pu/Cyan Po","Cyan Pu/Green Po (Mek 10.4+)"},callback=function()end,radio_colors=cpair(colors.lightGray,colors.black),select_color=colors.lime} TextBox{parent=crd_c_1,x=1,y=8,text="Temperature Scale"} diff --git a/coordinator/startup.lua b/coordinator/startup.lua index 323af98..cd1213c 100644 --- a/coordinator/startup.lua +++ b/coordinator/startup.lua @@ -19,7 +19,7 @@ local renderer = require("coordinator.renderer") local sounder = require("coordinator.sounder") local threads = require("coordinator.threads") -local COORDINATOR_VERSION = "v1.6.14" +local COORDINATOR_VERSION = "v1.6.15" local CHUNK_LOAD_DELAY_S = 30.0 diff --git a/pocket/config/system.lua b/pocket/config/system.lua index 110a6cf..c3251b1 100644 --- a/pocket/config/system.lua +++ b/pocket/config/system.lua @@ -62,6 +62,7 @@ function system.create(tool_ctl, main_pane, cfg_sys, divs, style, exit) TextBox{parent=ui_c_1,x=1,y=1,height=3,text="You may customize UI options below."} TextBox{parent=ui_c_1,y=4,text="Po/Pu Pellet Color"} + TextBox{parent=ui_c_1,x=20,y=4,text="new!",fg_bg=cpair(colors.red,colors._INHERIT)} ---@todo remove NEW tag on next revision local pellet_color = RadioButton{parent=ui_c_1,y=5,default=util.trinary(ini_cfg.GreenPuPellet,1,2),options={"Green Pu/Cyan Po","Cyan Pu/Green Po"},callback=function()end,radio_colors=cpair(colors.lightGray,colors.black),select_color=colors.lime} TextBox{parent=ui_c_1,y=8,height=4,text="In Mekanism 10.4 and later, pellet colors now match gas colors (Cyan Pu/Green Po).",fg_bg=g_lg_fg_bg} diff --git a/pocket/startup.lua b/pocket/startup.lua index a2eddd6..dbebafb 100644 --- a/pocket/startup.lua +++ b/pocket/startup.lua @@ -22,7 +22,7 @@ local pocket = require("pocket.pocket") local renderer = require("pocket.renderer") local threads = require("pocket.threads") -local POCKET_VERSION = "v0.13.2-beta" +local POCKET_VERSION = "v0.13.3-beta" local println = util.println local println_ts = util.println_ts