mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 18:58:40 +00:00
Quick explorer fix
This commit is contained in:
parent
4c21e732fc
commit
a655dd146f
10 changed files with 9 additions and 3 deletions
BIN
brewos.iso
BIN
brewos.iso
Binary file not shown.
BIN
build/about.o
BIN
build/about.o
Binary file not shown.
BIN
build/brewos.elf
BIN
build/brewos.elf
Binary file not shown.
Binary file not shown.
BIN
build/cmd.o
BIN
build/cmd.o
Binary file not shown.
BIN
build/explorer.o
BIN
build/explorer.o
Binary file not shown.
|
|
@ -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.
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue