diff --git a/README.md b/README.md index 1f61af9..6529b18 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Brew OS 1.44 Beta +# Brew OS 1.45 Beta BrewOS is now in a Beta stage as i have brought over all apps from brewkernel and have made the DE a lot more usable and stable. ## Brewkernel is now BrewOS! diff --git a/brewos.iso b/brewos.iso index 92e3f55..82ae834 100644 Binary files a/brewos.iso and b/brewos.iso differ diff --git a/build/about.o b/build/about.o index d1a563a..76f1a1a 100644 Binary files a/build/about.o and b/build/about.o differ diff --git a/build/brewos.elf b/build/brewos.elf index 44a435e..ba71df0 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 f835ab7..fce9597 100644 Binary files a/build/cli_apps/about.o and b/build/cli_apps/about.o differ diff --git a/build/wm.o b/build/wm.o index d0feb76..e757921 100644 Binary files a/build/wm.o and b/build/wm.o differ diff --git a/iso_root/README.md b/iso_root/README.md index 1f61af9..6529b18 100644 --- a/iso_root/README.md +++ b/iso_root/README.md @@ -1,4 +1,4 @@ -# Brew OS 1.44 Beta +# Brew OS 1.45 Beta BrewOS is now in a Beta stage as i have brought over all apps from brewkernel and have made the DE a lot more usable and stable. ## Brewkernel is now BrewOS! diff --git a/iso_root/brewos.elf b/iso_root/brewos.elf index 44a435e..ba71df0 100755 Binary files a/iso_root/brewos.elf and b/iso_root/brewos.elf differ diff --git a/src/kernel/about.c b/src/kernel/about.c index cc4fb0d..e51b0b3 100644 --- a/src/kernel/about.c +++ b/src/kernel/about.c @@ -32,7 +32,7 @@ static void about_paint(Window *win) { // Version info draw_string(offset_x, offset_y + 105, "BrewOS", COLOR_BLACK); - draw_string(offset_x, offset_y + 120, "BrewOS Version 1.44", COLOR_BLACK); + draw_string(offset_x, offset_y + 120, "BrewOS Version 1.45", COLOR_BLACK); draw_string(offset_x, offset_y + 135, "Kernel Version 2.3.1", COLOR_BLACK); // Copyright diff --git a/src/kernel/cli_apps/about.c b/src/kernel/cli_apps/about.c index 6629695..28e1d24 100644 --- a/src/kernel/cli_apps/about.c +++ b/src/kernel/cli_apps/about.c @@ -2,6 +2,6 @@ void cli_cmd_brewver(char *args) { (void)args; - cli_write("BrewOS v1.44 Beta\n"); + cli_write("BrewOS v1.45 Beta\n"); cli_write("BrewOS Kernel V2.3.1 Beta\n"); }