Skip to content

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 06 Jun 14:01
· 594 commits to main since this release

Fixed

  • πŸ›‘ File browser no longer refreshes constantly. Replaced the macOS PollingObserver (which generated a feedback loop of phantom filesystem events) with the native FSEventsObserver. Background refreshes are now silent β€” no more loading spinner flash on every update.
  • πŸ”‡ Eliminated noisy filesystem watcher events. The watcher now ignores changes in .git, __pycache__, .DS_Store, and node_modules directories, which were triggering unnecessary file browser refreshes.
  • ⚑ Centralized git status store. All components (GitBar, GitView, FileEditor, layout) now share a single gitStatusStore instead of each independently polling git/status. On page load, this reduces git status API calls from ~6+ down to 1.
  • πŸ” Reduced git polling frequency. Removed the 5-second git status polling intervals that were running in multiple components simultaneously.