This commit is contained in:
Chris 2026-02-10 18:56:14 +01:00
parent 90f86d63dc
commit d0ab5021c4
10 changed files with 4 additions and 4 deletions

View file

@ -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. 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! ## Brewkernel is now BrewOS!

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -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. 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! ## Brewkernel is now BrewOS!

Binary file not shown.

View file

@ -32,7 +32,7 @@ static void about_paint(Window *win) {
// Version info // Version info
draw_string(offset_x, offset_y + 105, "BrewOS", COLOR_BLACK); 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); draw_string(offset_x, offset_y + 135, "Kernel Version 2.3.1", COLOR_BLACK);
// Copyright // Copyright

View file

@ -2,6 +2,6 @@
void cli_cmd_brewver(char *args) { void cli_cmd_brewver(char *args) {
(void)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"); cli_write("BrewOS Kernel V2.3.1 Beta\n");
} }