Skip to content

Commit

Permalink
Merge branch 'release/3.70.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
purocean committed May 22, 2024
2 parents ed1bac3 + 7b78204 commit 783d2d6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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.70.3](https://github.com/purocean/yn/releases/tag/v3.70.3) 2024-05-21
### [v3.70.4](https://github.com/purocean/yn/releases/tag/v3.70.4) 2024-05-21

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

1. feat: Support pasting rich text as Markdown with table support
2. feat: Support keyboard navigation in context menu
Expand Down
4 changes: 2 additions & 2 deletions README_ZH-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@

## 更新日志

### [v3.70.3](https://github.com/purocean/yn/releases/tag/v3.70.3) 2024-05-21
### [v3.70.4](https://github.com/purocean/yn/releases/tag/v3.70.4) 2024-05-21

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

1. feat: 富文本粘贴为 Markdown 支持表格
2. feat: 上下文菜单支持使用键盘导航
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.70.3",
"version": "3.70.4",
"description": "Yank Note: A highly extensible Markdown editor, designed for productivity.",
"main": "dist/main/app.js",
"license": "AGPL-3.0",
Expand Down
1 change: 0 additions & 1 deletion src/renderer/others/setting-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const schema: SettingSchema = ({
path: {
type: 'string',
title: 'T_setting-panel.schema.repos.path',
readonly: true,
options: {
inputAttributes: { placeholder: 'T_setting-panel.schema.repos.path-placeholder', style: 'cursor: pointer' }
},
Expand Down
1 change: 1 addition & 0 deletions src/renderer/services/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export const getDefaultOptions = (): Monaco.editor.IStandaloneEditorConstruction
occurrencesHighlight: 'off',
renderLineHighlight: 'all',
stickyScroll: { enabled: getSetting('editor.sticky-scroll-enabled', true) },
lightbulb: { enabled: 'on' as any },
wordSeparators: '`~!@#$%^&*()-=+[{]}\\|;:\'",.<>/?。?!,、;:“”‘’()《》〈〉【】『』「」﹃﹄〔〕'
})

Expand Down

0 comments on commit 783d2d6

Please sign in to comment.