v1.0.0 - Added Argentum as well as other major improvements and bugfixes.

This commit is contained in:
TheWahlolly
2025-05-18 19:16:30 +03:00
parent 521d52a26e
commit 95c235e65b
19 changed files with 951 additions and 42 deletions
+79
View File
@@ -0,0 +1,79 @@
local agcfg = {
["halyde"] = {
["maindir"] = "",
["version"] = "1.1.0",
["description"] = "A universal, customizable and feature-packed operating system for OpenComputers.",
["directories"] = {
"halyde/apps",
"halyde/apps/helpdb",
"halyde/config",
"halyde/core",
"halyde/lib"
},
["files"] = {
"init.lua",
"halyde/apps/helpdb/cat.txt",
"halyde/apps/helpdb/cd.txt",
"halyde/apps/helpdb/clear.txt",
"halyde/apps/helpdb/cp.txt",
"halyde/apps/helpdb/default.txt",
"halyde/apps/helpdb/echo.txt",
"halyde/apps/helpdb/fetch.txt",
"halyde/apps/helpdb/help.txt",
"halyde/apps/helpdb/ls.txt",
"halyde/apps/helpdb/lua.txt",
"halyde/apps/helpdb/mv.txt",
"halyde/apps/helpdb/rm.txt",
"halyde/apps/cat.lua",
"halyde/apps/cd.lua",
"halyde/apps/clear.lua",
"halyde/apps/cp.lua",
"halyde/apps/download.lua",
"halyde/apps/echo.lua",
"halyde/apps/fetch.lua",
"halyde/apps/help.lua",
"halyde/apps/ls.lua",
"halyde/apps/lua.lua",
"halyde/apps/mv.lua",
"halyde/apps/rm.lua",
"halyde/config/shell.cfg",
"halyde/config/startupapps.cfg",
"halyde/core/boot.lua",
"halyde/core/cormgr.lua",
"halyde/core/datatools.lua",
"halyde/core/evmgr.lua",
"halyde/core/fullkb.lua",
"halyde/core/shell.lua",
"halyde/core/termlib.lua",
"halyde/lib/component.lua",
"halyde/lib/event.lua",
"halyde/lib/filesystem.lua",
"halyde/lib/raster.lua"
}
},
["argentum"] = {
["maindir"] = "",
["version"] = "1.0.0",
["description"] = "The default package manager for Halyde.",
["directories"] = {
"argentum",
"argentum/store"
},
["files"] = {
"argentum/registry.cfg",
"halyde/apps/argentum.lua",
"halyde/apps/helpdb/argentum.txt"
}
},
["edit"] = {
["maindir"] = "",
["version"] = "1.1.0",
["description"] = "The default text editor for Halyde.",
["files"] = {
"halyde/apps/edit.lua",
"halyde/apps/helpdb/edit.txt"
}
}
}
return agcfg