From 6f0a33f75d2f1235cfff024227c26184e9dce750 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Mon, 1 Sep 2025 09:39:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20LeonOS=20=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7=E8=87=B3=200.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 _HOST 和 _VERSION 中的版本号从 0.1.0 更新至 0.1.1 --- data/computercraft/lua/bios.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/computercraft/lua/bios.lua b/data/computercraft/lua/bios.lua index 3dee6d4..76dcfc6 100644 --- a/data/computercraft/lua/bios.lua +++ b/data/computercraft/lua/bios.lua @@ -1,4 +1,4 @@ -_G._HOST = _G._HOST .. " (LeonOS 0.1.0)" +_G._HOST = _G._HOST .. " (LeonOS 0.1.1)" local fs = rawget(_G, "fs") @@ -35,7 +35,7 @@ local rc = { _VERSION = { major = 0, minor = 1, - patch = 0 + patch = 1 }, queueEvent = pull(os, "queueEvent"), startTimer = pull(os, "startTimer"),