diff --git a/README.md b/README.md index e3de8417..c051ba08 100644 --- a/README.md +++ b/README.md @@ -76,14 +76,17 @@ For more information on how to use the following functions, please see [characte ## Changelogs -### [v3.82.1](https://github.com/purocean/yn/releases/tag/v3.82.1) 2025-03-30 +### [v3.83.0](https://github.com/purocean/yn/releases/tag/v3.83.0) 2025-07-14 -[Windows](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-win-x64-3.82.1.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-mac-arm64-3.82.1.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-mac-x64-3.82.1.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-linux-x86_64-3.82.1.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-linux-amd64-3.82.1.deb) +[Windows](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-win-x64-3.83.0.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-mac-arm64-3.83.0.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-mac-x64-3.83.0.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-linux-x86_64-3.83.0.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-linux-amd64-3.83.0.deb) -1. feat: Added font configuration for the preview area -2. feat: Restrict Markdown syntax suggestions in the editor from displaying within code fences -3. fix: Fixed the issue where exported HTML headings were not highlighted correctly in some cases -4. feat(plugin): Added the `ctx.editor.getLineLanguageId` method to retrieve the language ID of a specific line +1. feat: Added configuration for editor scroll wheel sensitivity +2. feat: Added configuration for editor ruler settings +3. feat: Added support for custom CSS styling during rendering +4. feat: Double-clicking the editor highlights the current line in preview +5. fix: Resolved potential freeze when saving encrypted documents +6. fix: Fixed extension details display failure issue +7. feat(plugin): Added `editor` callback parameter to `SETTING_PANEL_AFTER_SHOW` Hook to access configuration editor instances [More release notes](https://github.com/purocean/yn/releases) diff --git a/README_ZH-CN.md b/README_ZH-CN.md index bba86379..03d371e7 100644 --- a/README_ZH-CN.md +++ b/README_ZH-CN.md @@ -76,14 +76,17 @@ ## 更新日志 -### [v3.82.1](https://github.com/purocean/yn/releases/tag/v3.82.1) 2025-03-30 +### [v3.83.0](https://github.com/purocean/yn/releases/tag/v3.83.0) 2025-07-14 -[Windows](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-win-x64-3.82.1.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-mac-arm64-3.82.1.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-mac-x64-3.82.1.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-linux-x86_64-3.82.1.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.82.1/Yank-Note-linux-amd64-3.82.1.deb) +[Windows](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-win-x64-3.83.0.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-mac-arm64-3.83.0.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-mac-x64-3.83.0.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-linux-x86_64-3.83.0.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.83.0/Yank-Note-linux-amd64-3.83.0.deb) -1. feat: 新增预览区字体配置 -2. feat: 限制编辑器的 Markdown 语法建议在代码围栏中不显示 -3. fix: 修复某些情况下导出的 HTML 标题高亮不正确问题 -4. feat(plugin): 增加 `ctx.editor.getLineLanguageId` 方法获取某行的语言ID +1. feat: 增加配置编辑器滚轮敏感度配置 +2. feat: 增加配置编辑器标尺配置 +3. feat: 增加渲染自定义 CSS 样式配置 +4. feat: 双击编辑器可以在预览中高亮当前行 +5. fix: 修复保存加密文档可能卡死问题 +6. fix: 修复扩展详情可能不显示问题 +7. feat(plugin): `SETTING_PANEL_AFTER_SHOW` Hook 增加 `editor` 回调参数,用来获取配置编辑器实例 [更多发布说明](https://github.com/purocean/yn/releases) diff --git a/package.json b/package.json index 6bcfbf6c..f56d0e85 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "yank.note", - "version": "3.82.1", + "version": "3.83.0", "description": "Yank Note: A highly extensible Markdown editor, designed for productivity.", "main": "dist/main/app.js", "license": "AGPL-3.0",