@fresh-editor/fresh-editor 0.1.39 → 0.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -0
- package/README.md +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 0.1.40
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **Switch Project Command**: New "Switch Project" command (renamed from "Open Folder") to change project root with full context switch. Sessions are automatically saved and restored when switching projects, preserving open files, cursor positions, and split layouts.
|
|
8
|
+
|
|
9
|
+
* **Nested Submenu Support**: Menus now support nested submenus with proper arrow indicators and positioning.
|
|
10
|
+
|
|
11
|
+
* **Select Keybinding Map Command**: New popup selector to choose between different keybinding schemes.
|
|
12
|
+
|
|
13
|
+
* **Double-Click in File Dialog**: Can now double-click to open files in the file open dialog.
|
|
14
|
+
|
|
15
|
+
* **File Explorer UX Improvements**:
|
|
16
|
+
- Ctrl+E now focuses the file explorer instead of toggling it
|
|
17
|
+
- File explorer automatically focuses when closing the last tab
|
|
18
|
+
- Menu checkboxes properly sync with file explorer visibility state
|
|
19
|
+
|
|
20
|
+
* **Split Auto-Close**: Closing the last tab in a split now automatically closes the split.
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **Mouse Click Below Last Line**: Fixed mouse click below the last line incorrectly jumping to position 0,0.
|
|
25
|
+
|
|
26
|
+
* **Menu Checkbox Sync**: Fixed View menu checkboxes not syncing with file explorer visibility state.
|
|
27
|
+
|
|
28
|
+
* **Duplicate Buffer on Project Switch**: Fixed duplicate buffer creation when switching projects.
|
|
29
|
+
|
|
30
|
+
* **Wrong Upgrade Tip**: Fixed incorrect upgrade tip message (#293).
|
|
31
|
+
|
|
32
|
+
### Infrastructure
|
|
33
|
+
|
|
34
|
+
* **Build System Overhaul**: Replaced cargo-dist with direct cargo builds and custom packaging for more control over the release process.
|
|
35
|
+
|
|
36
|
+
* **npm OIDC Publishing**: Improved npm publish workflow with OIDC trusted publishing and provenance attestations.
|
|
37
|
+
|
|
38
|
+
* **GitHub Actions Updates**: Bumped actions/checkout to v6, actions/upload-artifact to v5, actions/download-artifact to v6, and actions/setup-node to v6.
|
|
39
|
+
|
|
40
|
+
* **Test Improvements**: Many test reliability improvements including Windows compatibility fixes, flaky test fixes, and better test isolation for session persistence tests.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
3
44
|
## 0.1.35
|
|
4
45
|
|
|
5
46
|
### Features
|
package/README.md
CHANGED
|
@@ -45,6 +45,7 @@ Fresh is engineered for speed. It delivers a low-latency experience, with text a
|
|
|
45
45
|
| npm | [npm / npx](#npm) |
|
|
46
46
|
| Rust users (Fast) | [cargo-binstall](#using-cargo-binstall) |
|
|
47
47
|
| Rust users | [crates.io](#from-cratesio) |
|
|
48
|
+
| Nix | [Nix flakes](#nix-flakes) |
|
|
48
49
|
| Developers | [From source](#from-source) |
|
|
49
50
|
|
|
50
51
|
### macOS (Homebrew)
|
|
@@ -112,6 +113,18 @@ Then install fresh
|
|
|
112
113
|
cargo binstall fresh-editor
|
|
113
114
|
```
|
|
114
115
|
|
|
116
|
+
### Nix flakes
|
|
117
|
+
|
|
118
|
+
Run without installing:
|
|
119
|
+
```bash
|
|
120
|
+
nix run github:sinelaw/fresh
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Or install to your profile:
|
|
124
|
+
```bash
|
|
125
|
+
nix profile install github:sinelaw/fresh
|
|
126
|
+
```
|
|
127
|
+
|
|
115
128
|
### From crates.io
|
|
116
129
|
|
|
117
130
|
```bash
|