From 177674111464c0ac3bb2da3a2478db33a05bd7d4 Mon Sep 17 00:00:00 2001 From: Ponali Date: Mon, 14 Jul 2025 15:47:23 +0200 Subject: [PATCH] v2.4.1 - Now preloading filesystem library for faster boot times and memory saving. --- argentum.cfg | 2 +- halyde/core/boot.lua | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/argentum.cfg b/argentum.cfg index 5dc4dcf..8fcc7d2 100644 --- a/argentum.cfg +++ b/argentum.cfg @@ -1,7 +1,7 @@ local agcfg = { ["halyde"] = { ["maindir"] = "", - ["version"] = "2.4.0", + ["version"] = "2.4.1", ["description"] = "A universal, customizable and feature-packed operating system for OpenComputers.", ["directories"] = { "halyde/apps", diff --git a/halyde/core/boot.lua b/halyde/core/boot.lua index 6518c98..053732f 100644 --- a/halyde/core/boot.lua +++ b/halyde/core/boot.lua @@ -1,7 +1,7 @@ local loadfile = ... local filesystem = loadfile("/halyde/lib/filesystem.lua")(loadfile) -_G._OSVERSION = "Halyde 2.4.0" +_G._OSVERSION = "Halyde 2.4.1" _G._OSLOGO = "" local handle, tmpdata = filesystem.open("/halyde/config/oslogo.ans", "r"), nil repeat @@ -48,6 +48,7 @@ end preload("component") preload("computer") +preload("filesystem") local component = import("component") local gpu = component.gpu