Quick explorer fix

This commit is contained in:
Chris 2026-02-07 21:07:42 +01:00
parent 4c21e732fc
commit a655dd146f
10 changed files with 9 additions and 3 deletions

Binary file not shown.

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,5 @@
# Brew OS 1.20 Alpha # Brew OS 1.40 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! ## Brewkernel is now BrewOS!
Brewkernel will from now on be deprecated as it's core became too messy. I have built a less bloated kernel and wrote a DE above it, which is why it is now an OS instead of a kernel (in my opinion). Brewkernel will from now on be deprecated as it's core became too messy. I have built a less bloated kernel and wrote a DE above it, which is why it is now an OS instead of a kernel (in my opinion).
@ -9,12 +10,16 @@ Brew Kernel is a simple x86_64 hobbyist operating system.
It features a DE (and WM), a FAT32 filesystem, customizable UI and much much more! It features a DE (and WM), a FAT32 filesystem, customizable UI and much much more!
## Features ## Features
- Drag and drop mouse centered UI
- Customizable UI
- Basic Networking Stack - Basic Networking Stack
- Brew WM - Brew WM
- Fat 32 FS - Fat 32 FS
- 64-bit long mode support - 64-bit long mode support
- Multiboot2 compliant - Multiboot2 compliant
- Text editor - Text editor
- Markdown Viewer
- Minesweeper
- IDT - IDT
- Ability to run on actual x86_64 hardware - Ability to run on actual x86_64 hardware
- CLI - CLI

Binary file not shown.

View file

@ -954,7 +954,8 @@ static void create_test_files(void) {
fh = fat32_open("README.md", "w"); fh = fat32_open("README.md", "w");
if (fh) { if (fh) {
const char *content = const char *content =
"# Brew OS 1.01 Alpha\n\n" "# Brew OS 1.40 Beta\n\n"
"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.\n"
"## Brewkernel is now BrewOS!\n" "## Brewkernel is now BrewOS!\n"
"Brewkernel will from now on be deprecated as it's core became too messy. I have built a less bloated kernel and wrote a DE above it, which is why it is now an OS instead of a kernel (in my opinion).\n\n" "Brewkernel will from now on be deprecated as it's core became too messy. I have built a less bloated kernel and wrote a DE above it, which is why it is now an OS instead of a kernel (in my opinion).\n\n"
"Brew Kernel is a simple x86_64 hobbyist operating system.\n" "Brew Kernel is a simple x86_64 hobbyist operating system.\n"

View file

@ -20,7 +20,7 @@ Window win_explorer;
#define EXPLORER_MAX_FILES 64 #define EXPLORER_MAX_FILES 64
#define EXPLORER_ITEM_HEIGHT 80 #define EXPLORER_ITEM_HEIGHT 80
#define EXPLORER_ITEM_WIDTH 120 #define EXPLORER_ITEM_WIDTH 120
#define EXPLORER_COLS 3 #define EXPLORER_COLS 4
#define EXPLORER_ROWS 4 #define EXPLORER_ROWS 4
#define EXPLORER_PADDING 15 #define EXPLORER_PADDING 15