chore: 更新版本号至1.0.0

将LeonOS的版本号从0.3.8 Beta 23更新至1.0.0,包括安装程序和BIOS中的版本信息
This commit is contained in:
2025-09-06 17:42:22 +08:00
parent 2feb4a773c
commit 8d5a6b08e8
2 changed files with 5 additions and 5 deletions

View File

@@ -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") local fs = rawget(_G, "fs")
_G._RC_ROM_DIR = _RC_ROM_DIR or (...) and fs.exists("/leonos") and "/leonos" or "/rom" _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 = { local rc = {
_NAME = "LeonOS", _NAME = "LeonOS",
_VERSION = { _VERSION = {
major = 0, major = 1,
minor = 3, minor = 0,
patch = 8 patch = 0
}, },
queueEvent = pull(os, "queueEvent"), queueEvent = pull(os, "queueEvent"),
startTimer = pull(os, "startTimer"), startTimer = pull(os, "startTimer"),

View File

@@ -1,5 +1,5 @@
-- LeonOS installer -- LeonOS installer
local INSTALLER_VERSION = "0.3.8 Beta 23" local INSTALLER_VERSION = "1.0.0"
local DEFAULT_ROM_DIR = "/leonos" local DEFAULT_ROM_DIR = "/leonos"
print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...") print("Start loading LeonOS installer ("..INSTALLER_VERSION..")...")