Commit Graph
102 Commits
Author SHA1 Message Date
daniel 0e1601be74 feat: desktop - use MTK menu for desktop right-click menu 2026-08-07 10:55:38 +02:00
daniel 9eb21eb3e3 feat: wi-fi - expand support and fix issues, add GUI components 2026-08-07 10:36:53 +02:00
daniel ca5331c9db feat: vfs - add dynamic filesystem mounts and safe unmount lifecycle 2026-08-04 08:58:50 +02:00
daniel 86de3400a9 feat: audio - add concurrent mixing, output switching, and device-aware UI 2026-07-29 20:03:35 +01:00
daniel 75ae7ede56 refactor: unify desktop apps and Settings under item catalog 2026-07-29 13:59:46 +01:00
daniel e9d8c66ff5 feat: files app - render modified dates in Properties dialog 2026-07-21 14:44:44 +02:00
daniel 2319858e8c fix: add path qualification to Files app pathbar 2026-07-18 12:07:53 +02:00
daniel 3ac25b7abd feat: raised max windows to 32 2026-07-18 10:34:46 +02:00
danielandClaude Fable 5 648f7111c0 feat: build userspace programs with the x86_64-montauk toolchain
Switch all program and library Makefiles from host g++ (or the
bare-metal x86_64-elf compiler) to x86_64-montauk-g++/gcc and drop the
flags the target now owns: -nostdinc + kernel freestanding -isystem
paths, -m64/-march, -fno-PIC, -mno-red-zone, -mcmodel=small, -static,
-Wl,-m,elf_x86_64, -z max-page-size, --build-id=none. Deliberate
policy flags stay (-ffreestanding, per-app SSE, -nostdlib + link.ld).

Program builds now require the montauk toolchain and fail with a
pointer to build-montauk-toolchain.sh; lib/ and libs/ keep the host
fallback since the toolchain script bootstraps libc through it.
Userspace is also now pinned to the cross GCC instead of drifting
with the distro compiler.

Co-Authored-By: Claude Fable 5 <[email protected]>
2026-07-14 10:19:35 +02:00
danielandClaude Fable 5 e1a5364824 fix: eliminate desktop stall when deleting large files
Deleting a big file froze the desktop for seconds: ext2 FreeBlock did 4
synchronous disk I/Os per data block (bitmap + BGDT read/write), and the
file manager deleted single files inline on the desktop main thread.

- Ext2: batch block frees per block group; keep the bitmap resident,
  clear bits in memory, flush bitmap + BGDT once per group transition.
  Also covers the truncate-on-overwrite path.
- Ext2: refuse to mount volumes with block size > 4096; temp buffers
  throughout the driver are single 4 KiB pages, so larger blocks would
  overflow them (our mkfs always uses 4K).
- Files: route single-file deletes past 4 MiB to the background worker
  + progress dialog; refuse (instead of stalling inline) when another
  file operation already owns the worker.

Co-Authored-By: Claude Fable 5 <[email protected]>
2026-07-09 23:20:19 +02:00
daniel ab8c24844e fix: fix desktop app loading cap 2026-07-08 10:00:45 +02:00
daniel 18eb48e5df cleanup: purge unused sysinfo icon field from DesktopState 2026-06-21 14:33:50 +02:00
daniel d05672f637 fix: remove inaccurate virtual path (virtual://apps) 2026-06-21 14:29:27 +02:00
daniel 43d43ac9ea cleanup: namespace Montauk (capital M) => montauk::abi 2026-06-16 09:09:16 +02:00
daniel 4eb4ba4073 fix: fix UI issues in Files app dialogs 2026-06-07 10:56:43 +02:00
daniel 472c36e992 fix: adjust copyright messages for accuracy to license 2026-06-07 09:34:30 +02:00
daniel 427876afa7 feat: filesystem and Files app support for >64 file entries, 64-bit sizes, async ops, GUI toolkit improvements to devexplorer app 2026-06-07 09:33:46 +02:00
daniel f0943d675f feat: disconnect Bluetooth devices, flush disks on shutdown/reboot, display progress in login.elf window 2026-06-06 18:27:19 +02:00
daniel 87433f3b7f feat: extend Files app marquee selection and highlight to list view 2026-06-04 07:47:42 +02:00
daniel d00c0deaf2 feat: add build numbering 2026-05-30 10:22:40 +02:00
daniel f19b1887af feat: rename desktop-applets.toml => config-applets.toml 2026-05-28 20:01:51 +02:00
daniel ecf1b70e8f fix: fix VFS Delete op for Ramdisk driver 2026-05-27 18:06:27 +02:00
daniel 651c60e065 feat: add Files app selection marquee, Properties dialog for multiple files 2026-05-26 18:27:31 +02:00
daniel 2ea81843d4 feat: respect accent colors in more places in desktop 2026-05-24 21:29:59 +02:00
daniel 159fea1667 feat: add threading to Scheduler, fix desktop background selection freeze issue 2026-05-23 16:08:25 +02:00
daniel 0d61c0df61 feat: update copyright messages 2026-05-19 20:57:31 +02:00
daniel f95dc771a6 fix: audio stack bug fixes 2026-05-19 18:36:22 +02:00
daniel 8b8c8cee95 feat: audio mixer, Audio app, fix Installer crash 2026-05-19 07:48:09 +02:00
daniel 72b9bd681b feat: SVG support in Image viewer app 2026-05-18 20:07:37 +02:00
daniel 7cb1866998 feat: added Files app USB medium detection 2026-05-18 20:00:42 +02:00
daniel 54c60e7a81 feat: refresh button in Files, svg.hpp arc handling 2026-05-18 19:51:23 +02:00
daniel 0688c0ba7e fix: desktop/Files labelling improvements, rename Sys. Config to Settings 2026-05-14 15:40:15 +02:00
daniel 4fde39397a fix: kernel and desktop bug fixes 2026-05-14 11:31:14 +02:00
daniel dcdbcac1e0 feat: screenshot app improvement, WIndow Server supports full-screen overlay, Disks app UI improvements 2026-05-10 10:45:05 +02:00
daniel 60ee905552 fix: various bug fixes in desktop components 2026-05-07 20:00:17 +02:00
daniel 70539c94dd feat: properties menu in Files and delete confirmation for directories 2026-05-06 17:55:57 +02:00
daniel 77408ff432 feat: improve MTK input boxes, right-click context menus 2026-05-06 08:03:14 +02:00
daniel 14971e6f02 feat: architectural improvements for Apps and System Configuration virtual folders in Files 2026-04-30 16:51:08 +02:00
daniel 3636546a6e feat: add time zone configuration applet to System Configuration 2026-04-24 16:37:17 +02:00
daniel 29034b792f feat: allow applets to be shared modules 2026-04-24 14:50:08 +02:00
daniel be67fce29a feat: system settings stored as applets in virtual folder 2026-04-23 15:36:03 +02:00
daniel de96c1ca57 feat: add warning popup if existing desktop process is present 2026-04-22 21:53:58 +02:00
daniel 7fa2b6c54b feat: expose drive labels to userspace, render in Files 2026-04-22 07:45:33 +02:00
daniel 38b1f8a7ef feat: further kernel power and power optimizations 2026-04-21 20:51:12 +02:00
daniel 5784134866 feat: standardize gui toolkit 2026-04-10 22:33:18 +02:00
daniel c8b7b864d7 wip: add clipboard support 2026-04-09 20:44:52 +02:00
daniel f37ee8432b fix: Disks app UI elements, file manager list view rendering 2026-04-06 10:05:58 +02:00
daniel 2fbcb4886d fix: fix filemanager filename tile rendering, edit cwd 2026-04-06 09:16:37 +02:00
daniel ff7b1ab916 fix: bump file manager name limit 2026-04-06 00:25:27 +02:00
daniel 2d75122dc7 fix: make login screen use asterisks instead of bullets, bump >6 app limit in Files 2026-04-05 22:55:50 +02:00