fix: 更新安装程序版本号并简化shell提示符

- 将安装程序版本号从0.3.7 Beta 10更新至0.3.7 Beta 11
- 移除shell启动时的欢迎图像和文字
- 将shell提示符从">>>"简化为"#"
This commit is contained in:
2025-09-02 17:15:44 +08:00
parent 937e6bdf0c
commit 207a856b46
2 changed files with 9 additions and 9 deletions

View File

@@ -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)

View File

@@ -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..")...")