fix(installer): 更新安装程序版本并添加必要的模块导入

添加了term、colors和rc模块的导入,并将安装程序版本更新至1.0.3 Beta 3
This commit is contained in:
2025-09-12 17:23:10 +08:00
parent adb57f5ee8
commit bf396ef4ba

View File

@@ -1,6 +1,11 @@
-- LeonOS installer -- LeonOS installer
local INSTALLER_VERSION = "1.0.3 Beta 2" local term = require("term")
local colors = require("colors")
local rc = require("rc")
local INSTALLER_VERSION = "1.0.3 Beta 3"
local DEFAULT_ROM_DIR = "/leonos" local DEFAULT_ROM_DIR = "/leonos"
term.at(1, y).clearLine()
print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...") print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")
print("[Installer] Loading module 1") print("[Installer] Loading module 1")