diff --git a/argentum.cfg b/argentum.cfg index 27bfbb5..d5b8f27 100644 --- a/argentum.cfg +++ b/argentum.cfg @@ -1,7 +1,7 @@ local agcfg = { ["halyde"] = { ["maindir"] = "", - ["version"] = "1.7.0", + ["version"] = "1.7.1", ["description"] = "A universal, customizable and feature-packed operating system for OpenComputers.", ["directories"] = { "halyde/apps", diff --git a/argentum/store/halyde/package.cfg b/argentum/store/halyde/package.cfg index 46a7905..8d969cc 100644 --- a/argentum/store/halyde/package.cfg +++ b/argentum/store/halyde/package.cfg @@ -4,7 +4,7 @@ Ahalyde/core/ Ahalyde/config/ Ahalyde/apps/helpdb/ Ahalyde/apps/ -V1.7.0 +V1.7.1 Ainit.lua Ahalyde/apps/helpdb/cat.txt Ahalyde/apps/helpdb/cd.txt diff --git a/halyde/apps/argentum.lua b/halyde/apps/argentum.lua index f917046..3216329 100644 --- a/halyde/apps/argentum.lua +++ b/halyde/apps/argentum.lua @@ -2,6 +2,7 @@ local packages = {...} local command = packages[1] table.remove(packages, 1) local fs = import("filesystem") +local component = import("component") local agReg = import("/argentum/registry.cfg") if not command then shell.run("help argentum") diff --git a/halyde/core/boot.lua b/halyde/core/boot.lua index 948624b..0bd2f71 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 1.7.0" +_G._OSVERSION = "Halyde 1.7.1" _G._OSLOGO = "" local handle, tmpdata = filesystem.open("/halyde/config/oslogo.ans", "r"), nil repeat