From 3dc1a0696992a7fcdcf28a830b6b9df668d13ae6 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Tue, 22 Aug 2023 19:55:34 -0400 Subject: [PATCH 1/2] #319 fixed installer bug on fresh install --- ccmsi.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/ccmsi.lua b/ccmsi.lua index 4c94771..be84c0d 100644 --- a/ccmsi.lua +++ b/ccmsi.lua @@ -315,7 +315,6 @@ elseif mode == "install" or mode == "update" then end end - lmnf.versions.installer = CCMSI_VERSION if manifest.versions.installer ~= CCMSI_VERSION then if not update_installer then yellow();println("A newer version of the installer is available, it is recommended to update to it.");white() end if update_installer or ask_y_n("Would you like to update now") then From 57d50e674556a7f1ea77827193b914d872803aad Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Tue, 22 Aug 2023 19:56:47 -0400 Subject: [PATCH 2/2] #319 updated installer version --- ccmsi.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccmsi.lua b/ccmsi.lua index be84c0d..fbac97e 100644 --- a/ccmsi.lua +++ b/ccmsi.lua @@ -18,7 +18,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. local function println(message) print(tostring(message)) end local function print(message) term.write(tostring(message)) end -local CCMSI_VERSION = "v1.9" +local CCMSI_VERSION = "v1.9a" local install_dir = "/.install-cache" local manifest_path = "https://mikaylafischler.github.io/cc-mek-scada/manifests/"