Skip to content

Commit

Permalink
Merge branch 'hotfix/3.76.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
purocean committed Sep 14, 2024
2 parents fb1f0ee + f524d71 commit d80a3cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 20 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,11 @@ For more information on how to use the following functions, please see [characte

## Changelogs

### [v3.76.1](https://github.com/purocean/yn/releases/tag/v3.76.1) 2024-09-06
### [v3.76.2](https://github.com/purocean/yn/releases/tag/v3.76.2) 2024-09-14

[Windows](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-win-x64-3.76.1.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-mac-arm64-3.76.1.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-mac-x64-3.76.1.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-linux-x86_64-3.76.1.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-linux-amd64-3.76.1.deb)
[Windows](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-win-x64-3.76.2.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-mac-arm64-3.76.2.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-mac-x64-3.76.2.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-linux-x86_64-3.76.2.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-linux-amd64-3.76.2.deb)

1. feat: Added support for the Russian language
2. feat: Added an entry point for usage guidance
3. feat: Optimized the completion of ordered list numbers
4. feat: Added `{docHash}` placeholder to the image save directory configuration
5. fix: Fixed an issue where the input box might not be focusable on Windows
6. fix: Fixed the issue of incorrect read-only status in the editor under certain conditions
7. fix: Fixed the issue of incorrect size calculation for Mermaid rendering under certain conditions
1. fix: correct rendering issue with PlantUML diagrams

[More release notes](https://github.com/purocean/yn/releases)

Expand Down
12 changes: 3 additions & 9 deletions README_ZH-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,11 @@

## 更新日志

### [v3.76.1](https://github.com/purocean/yn/releases/tag/v3.76.1) 2024-09-06
### [v3.76.2](https://github.com/purocean/yn/releases/tag/v3.76.2) 2024-09-14

[Windows](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-win-x64-3.76.1.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-mac-arm64-3.76.1.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-mac-x64-3.76.1.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-linux-x86_64-3.76.1.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.76.1/Yank-Note-linux-amd64-3.76.1.deb)
[Windows](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-win-x64-3.76.2.exe) | [macOS arm64](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-mac-arm64-3.76.2.dmg) | [macOS x64](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-mac-x64-3.76.2.dmg) | [Linux AppImage](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-linux-x86_64-3.76.2.AppImage) | [Linux deb](https://github.com/purocean/yn/releases/download/v3.76.2/Yank-Note-linux-amd64-3.76.2.deb)

1. feat: 增加俄语语言支持
2. feat: 增加使用指引帮助入口
3. feat: 优化有序列表序号补全
4. feat: 图片保存目录配置增加 `{docHash}` 占位符
5. fix: 修复 Windows 上可能出现输入框无法聚焦的问题
6. fix: 修复某些情况下编辑器只读不正确问题
7. fix: 修复某些情况下 Mermaid 渲染尺寸计算不正确问题
1. fix: 修复 PlantUML 渲染不正确问题

[更多发布说明](https://github.com/purocean/yn/releases)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yank.note",
"version": "3.76.1",
"version": "3.76.2",
"description": "Yank Note: A highly extensible Markdown editor, designed for productivity.",
"main": "dist/main/app.js",
"license": "AGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/plugins/markdown-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ function convertLink (state: StateCore) {
return
}

if (/^[a-z+]+:/.test(attrVal)) { // xxx:
if (/^[a-zA-Z+_-]+:/.test(attrVal)) { // xxx:
return
}

Expand Down

0 comments on commit d80a3cb

Please sign in to comment.