diff --git a/data/computercraft/lua/bios.lua b/data/computercraft/lua/bios.lua index 26c9cd5..9fb1659 100644 --- a/data/computercraft/lua/bios.lua +++ b/data/computercraft/lua/bios.lua @@ -1,4 +1,4 @@ -_G._HOST = _G._HOST .. " (LeonOS 0.1.9)" +_G._HOST = _G._HOST .. " (LeonOS 0.2.0)" local fs = rawget(_G, "fs") _G._RC_ROM_DIR = _RC_ROM_DIR or (...) and fs.exists("/leonos") and "/leonos" or "/rom" @@ -31,8 +31,8 @@ local rc = { _NAME = "LeonOS", _VERSION = { major = 0, - minor = 1, - patch = 9 + minor = 2, + patch = 0 }, queueEvent = pull(os, "queueEvent"), startTimer = pull(os, "startTimer"), diff --git a/installer.lua b/installer.lua index da8b6c8..e336a00 100644 --- a/installer.lua +++ b/installer.lua @@ -1,8 +1,8 @@ -- LeonOS installer -local INSTALLER_VERSION = "0.1.9" +local INSTALLER_VERSION = "0.2.0" local DEFAULT_ROM_DIR = "/leonos" -print("Start loading LeonOS installer...") +print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...") print("[Installer] Loading module 1") local function dl(f) local hand, err = http.get(f, nil, true) @@ -89,7 +89,7 @@ end term.at(1, 2) tu.coloredPrint(colors.yellow, "LeonOS Installer (v"..INSTALLER_VERSION..")\n=======================") -tu.coloredPrint("You are going to install LeonOS "..rc.version().." to your computer.") +tu.coloredPrint("You are going to install LeonOS "..INSTALLER_VERSION.." to your computer.") tu.coloredPrint("This will ",colors.red,"OVERWRITE any existing files", colors.white, " in the computer.") tu.coloredPrint(colors.yellow, "Are you sure? (y/n)") local confirm = read()