@fresh-editor/fresh-editor 0.1.93 → 0.1.94

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,39 @@
1
1
  # Release Notes
2
2
 
3
+ ## 0.1.94
4
+
5
+ ### Documentation
6
+
7
+ * **New documentation site**: @radiorambo contributed a complete restructure and build for a documentation section in the website. Kudos, awesome work!
8
+
9
+ See [getfresh.dev/docs](https://getfresh.dev/docs)
10
+
11
+ ### Features
12
+
13
+ * **Event Debug Dialog**: New diagnostic tool for troubleshooting keyboard and terminal issues. Shows raw key codes and modifiers as they are received, helping diagnose keybinding problems. Access via Command Palette → "Event Debug".
14
+
15
+ * **File Explorer Keybindings**: Reorganized the keys and updated the docs. Ctrl+E now toggles focus between file explorer and editor. Ctrl+B toggles sidebar visibility. Single-click opens files without leaving explorer; double-click or Enter opens and focuses editor (#748).
16
+
17
+ ### Bug Fixes
18
+
19
+ * **Case Conversion Enhancement**: To Upper (Alt+U) and To Lower (Alt+L) now automatically select the current word when no text is selected, matching common editor behavior.
20
+
21
+ * **Block Selection Copy**: Fixed Ctrl+C copying entire lines instead of the rectangular region. Block selection (Alt+Shift+Arrow) now correctly copies only the characters within the column bounds for each line.
22
+
23
+ * **Block Selection Editing**: Block selection now converts to multiple cursors for editing actions (typing, delete, backspace), enabling proper rectangular editing.
24
+
25
+ * **Dropdown Menu Position**: Fixed Help menu dropdown appearing at wrong position when Explorer menu was hidden. Menu position calculation now correctly skips hidden menus.
26
+
27
+ * **Settings Access**: Moved Settings to Edit menu and removed broken Ctrl+, keybinding which doesn't work reliably in terminals. Settings remain accessible via Edit → Settings... and Command Palette.
28
+
29
+ * **Block Selection Rendering**: Fixed double rendering of block selections that could cause visual artifacts.
30
+
31
+ ### Internal
32
+
33
+ * **Remote Save Optimization**: SSH remote editing now uses recipe-based patched saves. For large files with small edits, only the changed portions are transferred instead of the entire file. A 10MB file with a 100-byte edit now transfers ~200 bytes instead of 10MB.
34
+
35
+ ---
36
+
3
37
  ## 0.1.93
4
38
 
5
39
  ### Experimental
package/README.md CHANGED
@@ -40,10 +40,10 @@ Fresh is engineered for speed. It delivers a low-latency experience, with text a
40
40
  - **Plugins & Extensibility**: TypeScript plugins, color highlighter, TODO highlighter, merge conflicts, path complete, keymaps
41
41
  - **Internationalization**: Multiple language support (see [`locales/`](locales/) for available languages), plugin translation system
42
42
 
43
- ![Fresh Demo](docs/fresh-demo2.gif)
44
- ![Fresh Screenshot](docs/screenshot1.png)
45
- ![Fresh Screenshot](docs/screenshot2.png)
46
- ![Fresh Screenshot](docs/screenshot3.png)
43
+ ![Fresh Demo](docs/public/assets/fresh-demo2.gif)
44
+ ![Fresh Screenshot](docs/public/assets/screenshot1.png)
45
+ ![Fresh Screenshot](docs/public/assets/screenshot2.png)
46
+ ![Fresh Screenshot](docs/public/assets/screenshot3.png)
47
47
 
48
48
  ## Installation
49
49
 
@@ -219,10 +219,10 @@ cargo build --release
219
219
 
220
220
  ## Documentation
221
221
 
222
- - [User Guide](docs/USER_GUIDE.md)
223
- - [macOS Tips](docs/USER_GUIDE.md#macos-terminal-tips) - Terminal configuration, keyboard shortcuts, and troubleshooting for Mac users
224
- - [Plugin Development](docs/PLUGIN_DEVELOPMENT.md)
225
- - [Architecture](docs/ARCHITECTURE.md)
222
+ - [User Guide](https://sinelaw.github.io/fresh/docs/guide/)
223
+ - [macOS Tips](https://sinelaw.github.io/fresh/docs/guide/keyboard#macos-terminal-configuration) - Terminal configuration, keyboard shortcuts, and troubleshooting for Mac users
224
+ - [Plugin Development](https://sinelaw.github.io/fresh/docs/development/plugin-development)
225
+ - [Architecture](https://sinelaw.github.io/fresh/docs/development/architecture)
226
226
 
227
227
  ## Contributing
228
228
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fresh-editor/fresh-editor",
3
- "version": "0.1.93",
3
+ "version": "0.1.94",
4
4
  "description": "A modern terminal-based text editor with plugin support",
5
5
  "repository": {
6
6
  "type": "git",
package/plugins/README.md CHANGED
@@ -65,8 +65,8 @@ The `examples/` directory contains educational examples demonstrating specific A
65
65
  ## Plugin Development
66
66
 
67
67
  For plugin development guides, see:
68
- - **Getting Started:** [`docs/PLUGIN_DEVELOPMENT.md`](../docs/PLUGIN_DEVELOPMENT.md)
69
- - **API Reference:** [`docs/plugin-api.md`](../docs/plugin-api.md)
68
+ - **Getting Started:** [`docs/development/plugin-development.md`](../docs/development/plugin-development.md)
69
+ - **API Reference:** [`docs/development/plugin-api.md`](../docs/development/plugin-api.md)
70
70
  - **Examples:** [`examples/README.md`](examples/README.md)
71
71
  - **Clangd Plugin:** [`clangd_support.md`](clangd_support.md)
72
72
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  This directory contains example plugins demonstrating the editor's plugin system. These are educational examples showing specific API features.
4
4
 
5
- For the complete API reference, see **[docs/plugin-api.md](../../docs/plugin-api.md)**.
5
+ For the complete API reference, see **[docs/development/plugin-api.md](../../docs/development/plugin-api.md)**.
6
6
 
7
7
  ## Available Examples
8
8
 
@@ -81,5 +81,5 @@ editor.debug("My custom plugin loaded");
81
81
 
82
82
  ## Further Reading
83
83
 
84
- - **Getting Started:** [docs/PLUGIN_DEVELOPMENT.md](../../docs/PLUGIN_DEVELOPMENT.md)
85
- - **API Reference:** [docs/plugin-api.md](../../docs/plugin-api.md)
84
+ - **Getting Started:** [docs/development/plugin-development.md](../../docs/development/plugin-development.md)
85
+ - **API Reference:** [docs/development/plugin-api.md](../../docs/development/plugin-api.md)