diff --git a/brewos.iso b/brewos.iso index d2156f5..e8c5df7 100644 Binary files a/brewos.iso and b/brewos.iso differ diff --git a/build/brewos.elf b/build/brewos.elf index 3060dac..51e22cc 100755 Binary files a/build/brewos.elf and b/build/brewos.elf differ diff --git a/build/cli_apps/about.o b/build/cli_apps/about.o index aacc79f..5c18369 100644 Binary files a/build/cli_apps/about.o and b/build/cli_apps/about.o differ diff --git a/build/cli_apps/help.o b/build/cli_apps/help.o index 1a9d226..1cb6c80 100644 Binary files a/build/cli_apps/help.o and b/build/cli_apps/help.o differ diff --git a/build/cmd.o b/build/cmd.o index 9494b29..591e34a 100644 Binary files a/build/cmd.o and b/build/cmd.o differ diff --git a/iso_root/brewos.elf b/iso_root/brewos.elf index 3060dac..51e22cc 100755 Binary files a/iso_root/brewos.elf and b/iso_root/brewos.elf differ diff --git a/src/kernel/cli_apps/about.c b/src/kernel/cli_apps/about.c index 6998bd6..4958df0 100644 --- a/src/kernel/cli_apps/about.c +++ b/src/kernel/cli_apps/about.c @@ -1,6 +1,7 @@ #include "cli_utils.h" -void cli_cmd_about(char *args) { +void cli_cmd_brewver(char *args) { (void)args; - cli_write("BrewOS Desktop v1.01 Alpha\n"); + cli_write("BrewOS v1.02 Alpha\n"); + cli_write("BrewOS Kernel V2.0.2 Pre-Alpha\n"); } diff --git a/src/kernel/cli_apps/cli_apps.h b/src/kernel/cli_apps/cli_apps.h index 76e5009..55614c2 100644 --- a/src/kernel/cli_apps/cli_apps.h +++ b/src/kernel/cli_apps/cli_apps.h @@ -15,7 +15,7 @@ void cli_cmd_license(char *args); void cli_cmd_txtedit(char *args); void cli_cmd_blind(char *args); void cli_cmd_readtheman(char *args); -void cli_cmd_about(char *args); +void cli_cmd_brewver(char *args); void cli_cmd_clear(char *args); void cli_cmd_exit(char *args); diff --git a/src/kernel/cli_apps/help.c b/src/kernel/cli_apps/help.c index dc99843..df67fb2 100644 --- a/src/kernel/cli_apps/help.c +++ b/src/kernel/cli_apps/help.c @@ -3,16 +3,17 @@ void cli_cmd_help(char *args) { (void)args; cli_write("Available commands:\n"); - cli_write(" HELP - Display this help message\n"); - cli_write(" DATE - Display current date and time\n"); - cli_write(" CLEAR - Clear the screen\n"); - cli_write(" ABOUT - System info\n"); - cli_write(" MATH - math (e.g. math + 1 2)\n"); - cli_write(" MAN - Show user manual (interactive)\n"); - cli_write(" LICENSE - Show license (interactive)\n"); - cli_write(" UPTIME - System uptime\n"); - cli_write(" BEEP - Make a sound\n"); - cli_write(" COWSAY - cowsay \n"); - cli_write(" REBOOT - Reboot system\n"); - cli_write(" SHUTDOWN- Shutdown system\n"); + cli_write(" HELP - Display this help message\n"); + cli_write(" DATE - Display current date and time\n"); + cli_write(" CLEAR - Clear the screen\n"); + cli_write(" BREWVER - Gives version info\n"); + cli_write(" MATH - math (e.g. math + 1 2)\n"); + cli_write(" MAN - Show user manual (interactive)\n"); + cli_write(" LICENSE - Show license (interactive)\n"); + cli_write(" UPTIME - System uptime\n"); + cli_write(" BEEP - Make a sound\n"); + cli_write(" COWSAY - cowsay \n"); + cli_write(" REBOOT - Reboot system\n"); + cli_write(" SHUTDOWN - Shutdown system\n"); + cli_write(" MEMINFO - Gives memory info"); } diff --git a/src/kernel/cmd.c b/src/kernel/cmd.c index 51cd80a..705341e 100644 --- a/src/kernel/cmd.c +++ b/src/kernel/cmd.c @@ -346,8 +346,8 @@ static const CommandEntry commands[] = { {"date", cli_cmd_date}, {"CLEAR", cli_cmd_clear}, {"clear", cli_cmd_clear}, - {"ABOUT", cli_cmd_about}, - {"about", cli_cmd_about}, + {"BREWVER", cli_cmd_brewver}, + {"brewver", cli_cmd_brewver}, {"MATH", cli_cmd_math}, {"math", cli_cmd_math}, {"MAN", cli_cmd_man},