@fresh-editor/fresh-editor 0.1.70 → 0.1.74

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 CHANGED
@@ -1,5 +1,51 @@
1
1
  # Release Notes
2
2
 
3
+ ## 0.1.74
4
+
5
+ ### Features
6
+
7
+ * **Italian Locale**: Full Italian translation support added across the editor and all core plugins (@fdefilippo).
8
+ * **Interactive Links in Popups**: Markdown popups (such as LSP hover) now support clickable hyperlinks (OSC 8). Clicking a link opens it in your default web browser (@Asuka-Minato).
9
+ * **Sudo Save Fallback**: When saving a file fails due to insufficient permissions, the editor now offers to save using `sudo` (Linux/macOS) (#301).
10
+ * **Improved Language Features**: Improved word navigation, auto-pairs, and multi-cursor behavior.
11
+
12
+ ### Bug Fixes
13
+
14
+ * **LSP Hover Reliability**: Fixed multiple issues with hover popups, including race conditions during rapid mouse movement, incorrect positioning on empty lines, and popups triggering past the end of a line.
15
+ * **Popup Scrollbar Drag**: You can now click and drag the scrollbar in popups (like hover and completion) to scroll through long content.
16
+ * **Inlay Hint Positioning**: Corrected inlay hint placement in Rust files to prevent them from shifting line content (#626, @Asuka-Minato).
17
+ * **Theme Editor Path Resolution**: Fixed a bug where the theme editor couldn't find the correct configuration directory on some systems.
18
+
19
+ ### Internal
20
+
21
+ * **Error Handling**: Migrated to `anyhow` for more robust error tracking and backtraces.
22
+ * **Plugin API**: Added `editor.getConfigDir()` and `editor.getThemesDir()` to the plugin API.
23
+ * **Dependency Updates**: Bumped `clap` to 4.5.54.
24
+
25
+ ---
26
+
27
+ ## 0.1.71
28
+
29
+ ### Features
30
+
31
+ * **Side-by-Side Diff View**: Word-level highlighting, synchronized scrolling, cursor navigation.
32
+ * **Theme Editor**: JSON Schema API, color swatches, command palette integration, delete theme.
33
+ * **Create Files from Open Dialog**: Type non-existent filename to create new buffer.
34
+ * **Tilde Expansion**: `~/path` works in Save As, Open File, Switch Project.
35
+
36
+ ### Bug Fixes
37
+
38
+ * **Toggle Comment**: Use language config for comment prefixes, preserve selection, don't hang (#681).
39
+ * **Split Close**: Close split when closing last buffer instead of empty buffer.
40
+ * **Terminal**: Resume mode on buffer switch, sync content, clean up on close.
41
+ * **Hidden Buffers**: Skip in next/prev buffer, fix tab click targets.
42
+
43
+ ### Internal
44
+
45
+ * Plugin i18n completeness tests. Bumped libc, tokio, tree-sitter-lua.
46
+
47
+ ---
48
+
3
49
  ## 0.1.70
4
50
 
5
51
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fresh-editor/fresh-editor",
3
- "version": "0.1.70",
3
+ "version": "0.1.74",
4
4
  "description": "A modern terminal-based text editor with plugin support",
5
5
  "repository": {
6
6
  "type": "git",