Skip to content

Commit

Permalink
Merge branch 'release/3.56.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
purocean committed Jul 23, 2023
2 parents 2d8d5f2 + 349684b commit c129473
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ For more information on how to use the following functions, please see [characte

## Changelogs

### [v3.56.2](https://github.com/purocean/yn/releases/tag/v3.56.2) 2023-07-23
### [v3.56.3](https://github.com/purocean/yn/releases/tag/v3.56.3) 2023-07-23

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

1. feat: upgrade Electron to 22.3.17
2. feat: optimize the popup position of context menu when space is limited
Expand Down
14 changes: 7 additions & 7 deletions README_ZH-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@

## 更新日志

### [v3.56.2](https://github.com/purocean/yn/releases/tag/v3.56.2) 2023-07-23
### [v3.56.3](https://github.com/purocean/yn/releases/tag/v3.56.3) 2023-07-23

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

1. feat: 升级 Electron 到 22.3.17
1. feat: 优化当空间不够时上下文菜单弹出位置
1. feat: 文件选项卡上下文菜单增加文件相关操作
1. feat: 切换到一个不存在的文件时,提示是否创建
1. feat(plugin): 增加 `file-tabs.close-tabs` Action
1. feat(plugin): 增加文件选项卡上下文菜单拓展方法
2. feat: 优化当空间不够时上下文菜单弹出位置
3. feat: 文件选项卡上下文菜单增加文件相关操作
4. feat: 切换到一个不存在的文件时,提示是否创建
5. feat(plugin): 增加 `file-tabs.close-tabs` Action
6. feat(plugin): 增加文件选项卡上下文菜单拓展方法

[更多发布说明](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.56.2",
"version": "3.56.3",
"description": "Yank Note: A highly extensible Markdown editor, designed for productivity.",
"main": "dist/main/app.js",
"license": "AGPL-3.0",
Expand Down
6 changes: 5 additions & 1 deletion src/main/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ export function changeSource () {
}

app.whenReady().then(() => {
init()
init(() => {
setTimeout(() => {
app.exit(0)
}, process.platform === 'darwin' ? 3500 : 0)
})

setTimeout(() => {
autoCheckForUpdates()
Expand Down

0 comments on commit c129473

Please sign in to comment.