diff --git a/argentum.cfg b/argentum.cfg index 9f14220..9602396 100644 --- a/argentum.cfg +++ b/argentum.cfg @@ -1,14 +1,15 @@ local agcfg = { ["halyde"] = { ["maindir"] = "", - ["version"] = "1.1.0", + ["version"] = "1.0.2", ["description"] = "A universal, customizable and feature-packed operating system for OpenComputers.", ["directories"] = { "halyde/apps", "halyde/apps/helpdb", "halyde/config", "halyde/core", - "halyde/lib" + "halyde/lib", + "home" }, ["files"] = { "init.lua", @@ -34,6 +35,7 @@ local agcfg = { "halyde/apps/help.lua", "halyde/apps/ls.lua", "halyde/apps/lua.lua", + "halyde/apps/mkdir.lua", "halyde/apps/mv.lua", "halyde/apps/rm.lua", "halyde/config/shell.cfg", diff --git a/halyde/apps/helpdb/default.txt b/halyde/apps/helpdb/default.txt index 0cf95be..1c32e4c 100644 --- a/halyde/apps/helpdb/default.txt +++ b/halyde/apps/helpdb/default.txt @@ -8,6 +8,7 @@ All default Halyde shell commands: help Shows this. ls Lists files. lua Starts the Lua shell. + mkdir Makes a directory. mv Moves/renames a file. rm Deletes a file. edit Opens the text editor. diff --git a/halyde/apps/helpdb/mkdir.txt b/halyde/apps/helpdb/mkdir.txt index 9acaadd..2372fda 100644 --- a/halyde/apps/helpdb/mkdir.txt +++ b/halyde/apps/helpdb/mkdir.txt @@ -1,5 +1,5 @@ Usage: mkdir [PATH] -Removes files and directories. +Makes a directory. PATH Specifies the path to create the directory in. diff --git a/halyde/core/boot.lua b/halyde/core/boot.lua index 1e87def..a3d9da4 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.0.1" +_G._OSVERSION = "Halyde 1.0.2" function _G.import(module, ...) local args = table.pack(...)