From bf396ef4ba33521befd38c326a96fd898fddb8af Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Fri, 12 Sep 2025 17:23:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(installer):=20=E6=9B=B4=E6=96=B0=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E7=A8=8B=E5=BA=8F=E7=89=88=E6=9C=AC=E5=B9=B6=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=BF=85=E8=A6=81=E7=9A=84=E6=A8=A1=E5=9D=97=E5=AF=BC?= =?UTF-8?q?=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加了term、colors和rc模块的导入,并将安装程序版本更新至1.0.3 Beta 3 --- installer.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/installer.lua b/installer.lua index 4514560..353f13e 100644 --- a/installer.lua +++ b/installer.lua @@ -1,6 +1,11 @@ -- 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" +term.at(1, y).clearLine() print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...") print("[Installer] Loading module 1")