Commit Graph
17 Commits
Author SHA1 Message Date
daniel e9d8c66ff5 feat: files app - render modified dates in Properties dialog 2026-07-21 14:44:44 +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 43d43ac9ea cleanup: namespace Montauk (capital M) => montauk::abi 2026-06-16 09:09:16 +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 651c60e065 feat: add Files app selection marquee, Properties dialog for multiple files 2026-05-26 18:27:31 +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 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 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 7fa2b6c54b feat: expose drive labels to userspace, render in Files 2026-04-22 07:45:33 +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
daniel be787529ea refactor: split Files and Settings apps into multiple files 2026-04-01 23:08:25 +02:00