From 8d99565557f4be10a47ff5e4a8e2f5284f6f58fe Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Tue, 2 Sep 2025 12:52:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7=E8=87=B30.3.7=20Beta=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新installer.lua、app.lua和bios.lua中的版本号,移除app.lua中未使用的applist依赖 --- data/computercraft/lua/bios.lua | 4 ++-- data/computercraft/lua/rom/programs/app.lua | 1 - installer.lua | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/data/computercraft/lua/bios.lua b/data/computercraft/lua/bios.lua index a660236..d568155 100644 --- a/data/computercraft/lua/bios.lua +++ b/data/computercraft/lua/bios.lua @@ -1,4 +1,4 @@ -_G._HOST = _G._HOST .. " (LeonOS 0.3.6)" +_G._HOST = _G._HOST .. " (LeonOS 0.3.7)" local fs = rawget(_G, "fs") _G._RC_ROM_DIR = _RC_ROM_DIR or (...) and fs.exists("/leonos") and "/leonos" or "/rom" @@ -32,7 +32,7 @@ local rc = { _VERSION = { major = 0, minor = 3, - patch = 6 + patch = 7 }, queueEvent = pull(os, "queueEvent"), startTimer = pull(os, "startTimer"), diff --git a/data/computercraft/lua/rom/programs/app.lua b/data/computercraft/lua/rom/programs/app.lua index 37f666c..db06b13 100644 --- a/data/computercraft/lua/rom/programs/app.lua +++ b/data/computercraft/lua/rom/programs/app.lua @@ -1,7 +1,6 @@ -- app.lua - Application launcher for LeonOS local fs = require("fs") local shell = require("shell") -local applist = require("applist") local function show_help() print("Usage: app [arguments]") diff --git a/installer.lua b/installer.lua index 98c25f9..ed9a1ef 100644 --- a/installer.lua +++ b/installer.lua @@ -1,5 +1,5 @@ -- LeonOS installer -local INSTALLER_VERSION = "0.3.6 Beta 5" +local INSTALLER_VERSION = "0.3.7 Beta 1" local DEFAULT_ROM_DIR = "/leonos" print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")