diff --git a/data/computercraft/lua/rom/programs/shell.lua b/data/computercraft/lua/rom/programs/shell.lua index 3cddc5a..dc15cdf 100644 --- a/data/computercraft/lua/rom/programs/shell.lua +++ b/data/computercraft/lua/rom/programs/shell.lua @@ -82,17 +82,17 @@ for _, prog in ipairs(fs.list(completions)) do end local history = {} -local image = paintutils.parseImage([[ - f f +-- 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) +-- 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().." >>> ") + rc.write("$ "..shell.dir().." # ") term.setTextColor(colors.white) local text = term.read(nil, history, shell.complete) diff --git a/installer.lua b/installer.lua index 522694b..4b2033d 100644 --- a/installer.lua +++ b/installer.lua @@ -1,5 +1,5 @@ -- LeonOS installer -local INSTALLER_VERSION = "0.3.7 Beta 10" +local INSTALLER_VERSION = "0.3.7 Beta 11" local DEFAULT_ROM_DIR = "/leonos" print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")