Jack Phallen
1e2cf97b47
fix(analyze): Additional improvements to limit sem blocking
2026-01-11 23:28:44 -05:00
Tw93
91fcbb925b
Merge pull request #294 from JackPhallen/fix/remove-tm-mount-check
...
fix: remove Time Machine mount check
2026-01-12 11:56:33 +08:00
Tw93
df2f00c92f
Merge branch 'pr-296' into dev
2026-01-12 11:52:19 +08:00
Tw93
f21fc833b5
Merge pull request #295 from JackPhallen/fix/cap-scanner-buffer-size
...
fix: cap entryChan buffer to prevent memory spikes
2026-01-12 11:46:00 +08:00
Tw93
08a32ff413
Merge branch 'dev' of github.com:tw93/Mole into dev
2026-01-12 11:42:21 +08:00
Tw93
8aee56b7fa
fix: enhance overview scan UI and invalidate cache on refresh
...
- Invalidate disk cache for overview entries on refresh to ensure fresh data.
- Show dynamic status messages (e.g., 'Scanning Applications...') instead of static text in Overview.
- Adjust spinner animation speed to 100ms for smoother visual experience.
2026-01-12 11:42:07 +08:00
github-actions[bot]
832722d882
chore: update contributors [skip ci]
2026-01-12 02:27:21 +00:00
Tw93
67e2d2e86d
Merge pull request #297 from frozturk/fix/refresh-in-overview-mode
...
fix: refresh not working in overview mode
2026-01-12 10:27:02 +08:00
frozturk
08c577d24a
fix: refresh not working in overview mode
2026-01-11 19:38:56 +01:00
Jack Phallen
8870141923
Cap entryChan buffer to prevent memory spikes
...
Cap buffer at 4096. All entries still process normally—producers just briefly block if
the buffer fills, which is negligible since the collector drains it quickly.
2026-01-11 11:06:00 -05:00
Jack Phallen
b8ab9511fd
Create separate limiter for du subprocesses
...
Introduce duSem to cap concurrent du subprocess spawns while keeping
the existing sem to limit overall scan fan-out (dir recursion/task concurrency).
This prevents du from monopolizing scan concurrency and reduces resource
spikes during folded-dir sizing.
2026-01-11 10:58:45 -05:00
Jack Phallen
cf4690191e
Fix semaphore acquisition order
...
Acquire semaphore before spawning goroutine in calculateDirSizeFast to prevent goroutine
explosion. Previously, all subdirectory goroutines were spawned immediately and blocked on
the semaphore—now the spawning itself is throttled.
2026-01-11 10:58:45 -05:00
Jack Phallen
a994e9b406
fix: remove Time Machine mount check
2026-01-11 09:58:43 -05:00
Tw93
54be4e30a2
fix: global optimization for safe_clean and doc update
2026-01-11 09:55:18 +08:00
Tw93
74fc3df455
Merge branch 'pr-287' into dev
2026-01-11 09:27:15 +08:00
Tw93
413b2c8f98
fix: disable aggressive cleanup and optimize directory checks
2026-01-11 09:27:12 +08:00
Tw93
c8daf57b28
Merge pull request #290 from alexandear-org/refactor/use-slices-clone
...
refactor: simplify with slices.Clone
2026-01-11 08:54:37 +08:00
Tw93
fdacd3e087
update security audit
2026-01-11 08:51:01 +08:00
Tw93
3ae0746f77
Merge pull request #292 from JackPhallen/feat/time-machine-mounted
...
feat: Skip Time Machine cleaning if running
2026-01-11 08:47:36 +08:00
Tw93
e186086578
Fix handing issue on macOS Sequoia after completing 1 task ( #291 )
2026-01-11 08:11:43 +08:00
Jack Phallen
c0f76936cd
feat: Skip TimeMachine cleaning if running
2026-01-10 17:40:42 -05:00
Oleksandr Redko
14b8fa688e
refactor: simplify with slices.Clone
2026-01-10 20:41:05 +02:00
Tw93
d45423df94
fix issue with mo remove #289
2026-01-10 20:08:47 +08:00
Tw93
083ab55661
docs: update windows support link
2026-01-10 13:20:26 +08:00
Tw93
9434b41fbe
chore: remove windows support from dev branch (moved to dedicated windows branch)
2026-01-10 13:19:56 +08:00
Tw93
e84a457c2f
Merge branch 'main' into dev
2026-01-10 13:05:53 +08:00
Tw93
ef713afda7
update test
2026-01-10 09:41:17 +08:00
Tw93
8a3443be4d
update readme
2026-01-10 08:58:16 +08:00
Tw93
8118cab604
Merge branch 'main' of github.com:tw93/Mole
2026-01-10 08:52:12 +08:00
Tw93
7d43e669a8
fix(analyze): improve deletion safety and UI clarity
...
- Update UI status to 'Moving to Trash...' for clarity
- Use os.Lstat instead of os.Stat to correctly handle broken symlinks during deletion checks
2026-01-10 08:51:14 +08:00
Tw93
273a6b5cf0
fix(clean): enhance orphan detection accuracy and safety
...
- Expand app scan to include Homebrew Cask and Setapp locations
- Add lsappinfo fallback for more reliable running app detection
- Add sensitive data protection patterns (1Password, Keychain, etc.)
- Add mdfind fallback with file-based caching (Bash 3.2 compatible)
2026-01-10 08:51:14 +08:00
Tw93
9c39eef7fe
chore: auto format code
2026-01-10 00:23:16 +00:00
Tw93
0a654f365b
fix(clean): enhance orphan detection accuracy and safety
...
- Expand app scan to include Homebrew Cask and Setapp locations
- Add lsappinfo fallback for more reliable running app detection
- Add sensitive data protection patterns (1Password, Keychain, etc.)
- Add mdfind fallback with file-based caching (Bash 3.2 compatible)
2026-01-10 08:22:17 +08:00
github-actions[bot]
b952752a7d
chore: update contributors [skip ci]
2026-01-09 23:25:33 +00:00
Tw93
ebb4f7a1e9
feat(analyze): safer deletion with Trash and two-key confirm
...
- Change delete confirmation from double-delete to Delete→Enter
- Move files to macOS Trash instead of permanent deletion
- Allow file recovery from Trash if accidentally deleted
- Update UI prompts to show 'Press Enter to confirm'
- Skip Finder-dependent tests in CI environments
- Update SECURITY_AUDIT.md with new safety mechanisms
Closes #288
2026-01-10 07:24:58 +08:00
biplavbarua
096c0ca73f
feat: add cleanup support for Elixir, Haskell, OCaml, and Editors
2026-01-10 01:22:43 +05:30
Biplav Barua
3507870275
feat: add Angular, SvelteKit, Astro, and coverage to purge targets ( #286 )
2026-01-10 00:05:38 +08:00
Tw93
cbd777bf14
Update documents and instructions
2026-01-09 17:13:34 +08:00
Tw93
cce0afecc5
Merge branch 'dev' of github.com:tw93/Mole into dev
2026-01-09 15:10:36 +08:00
Tw93
124e498f15
refactor(windows): fix cmdlet shadowing and enforce dependency isolation
2026-01-09 15:10:26 +08:00
github-actions[bot]
9915d5e56f
chore: update contributors [skip ci]
2026-01-09 06:50:00 +00:00
Tw93
e40a992f7e
Merge branch main into dev
2026-01-09 14:49:31 +08:00
Tw93
ea00d979da
Merge branch 'main' into dev
2026-01-09 14:49:08 +08:00
Tw93
ce8989d3e9
chore: auto format code
2026-01-09 06:44:51 +00:00
Tw93
e33e428569
fix: add KeePassXC new bundle id to protection list ( #285 )
2026-01-09 14:43:50 +08:00
Tw93
24fa0f8f21
feat: Add cleanup rule for Quark (夸克) video cache ( #279 )
2026-01-09 14:38:59 +08:00
github-actions[bot]
07e1ee0f3e
chore: update contributors [skip ci]
2026-01-09 06:16:55 +00:00
Tw93
2b5dd3f44c
feat: show scanning progress as percentage in disk analyzer
...
- Implemented progress percentage display (e.g., `(45%)`) in `cmd/analyze` to show scanning status based on cached total files.
- Kept the UI clean by avoiding a full progress bar.
- fix: formatting improvements in `bin/touchid.sh`.
2026-01-09 14:16:29 +08:00
github-actions[bot]
bb4561e682
chore: update contributors [skip ci]
2026-01-09 03:02:38 +00:00
Tw93
2394c5d768
feat(touchid): add sudo_local support with silent migration
2026-01-09 11:02:10 +08:00