From 8d5a6b08e8045828f2a340c92e1122a7bb577a00 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Sat, 6 Sep 2025 17:42:22 +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=B31.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将LeonOS的版本号从0.3.8 Beta 23更新至1.0.0,包括安装程序和BIOS中的版本信息 --- data/computercraft/lua/bios.lua | 8 ++++---- installer.lua | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/data/computercraft/lua/bios.lua b/data/computercraft/lua/bios.lua index 9d02995..99836a4 100644 --- a/data/computercraft/lua/bios.lua +++ b/data/computercraft/lua/bios.lua @@ -1,4 +1,4 @@ -_G._HOST = _G._HOST .. " (LeonOS 0.3.8)" +_G._HOST = _G._HOST .. " (LeonOS 1.0.0)" local fs = rawget(_G, "fs") _G._RC_ROM_DIR = _RC_ROM_DIR or (...) and fs.exists("/leonos") and "/leonos" or "/rom" @@ -30,9 +30,9 @@ local reboot = pull(os, "restart") local rc = { _NAME = "LeonOS", _VERSION = { - major = 0, - minor = 3, - patch = 8 + major = 1, + minor = 0, + patch = 0 }, queueEvent = pull(os, "queueEvent"), startTimer = pull(os, "startTimer"), diff --git a/installer.lua b/installer.lua index 7c6e81a..f2aa275 100644 --- a/installer.lua +++ b/installer.lua @@ -1,5 +1,5 @@ -- LeonOS installer -local INSTALLER_VERSION = "0.3.8 Beta 23" +local INSTALLER_VERSION = "1.0.0" local DEFAULT_ROM_DIR = "/leonos" print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")