Skip to content

Rune Editor v1.4.0

Choose a tag to compare

@satadeep3927 satadeep3927 released this 09 Jun 08:36
· 22 commits to master since this release
1d3dd29

Welcome to Rune v1.4.0! This release brings major structural upgrades to the Tauri backend and squashes a cross-window context pollution bug.

🏗️ Backend Architecture Overhaul

The massive monolithic lib.rs has been thoroughly dismantled and rebuilt into a scalable, domain-driven architecture.

  • Extracted and modularized window.rs, terminal.rs, fs_utils.rs, search.rs, and system.rs.
  • Cleaner state management and easier contribution pipelines without merge conflict hell inside the Tauri bootstrap logic.

🐛 Bug Fixes

  • Command Palette Workspace Pollution: Fixed a critical bug where searching for files (Ctrl+P) or symbols in a new workspace would incorrectly return results belonging to previously opened workspaces in the background. The Rust backend now properly slices the shared global indexing memory using the active window's current rootPath.