diff --git a/data/computercraft/lua/rom/programs/shell.lua b/data/computercraft/lua/rom/programs/shell.lua index f5978fa..3cddc5a 100644 --- a/data/computercraft/lua/rom/programs/shell.lua +++ b/data/computercraft/lua/rom/programs/shell.lua @@ -27,24 +27,9 @@ local textutils = require("textutils") if os.version then textutils.coloredPrint(colors.yellow, os.version(), colors.white) - local image = paintutils.parseImage([[ - f f - -f f - ffff - ]]) - paintutils.drawImage(image, term.getCursorPos()) else textutils.coloredPrint(colors.yellow, rc.version(), colors.white) - local image = paintutils.parseImage([[ - f f - -f f - ffff - ]]) - paintutils.drawImage(image, term.getCursorPos()) end -textutils.coloredPrint(colors.yellow, "Welcome using the beta version of LeonOS!", colors.white) thread.vars().parentShell = thread.id() shell.init(_ENV) @@ -97,6 +82,14 @@ for _, prog in ipairs(fs.list(completions)) do end local history = {} +local image = paintutils.parseImage([[ + f f + +f f + ffff +]]) +paintutils.drawImage(image, term.getCursorPos()) +textutils.coloredPrint(colors.yellow, "Welcome using the beta version of LeonOS!", colors.white) while true do term.setTextColor(colors.yellow) rc.write("$ "..shell.dir().." >>> ") diff --git a/installer.lua b/installer.lua index e3c0ad5..522694b 100644 --- a/installer.lua +++ b/installer.lua @@ -1,5 +1,5 @@ -- LeonOS installer -local INSTALLER_VERSION = "0.3.7 Beta 9" +local INSTALLER_VERSION = "0.3.7 Beta 10" local DEFAULT_ROM_DIR = "/leonos" print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")