Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
purocean committed Oct 16, 2022
1 parent fa961b8 commit 4664916
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 17 deletions.
28 changes: 20 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,28 @@ For more information on how to use the following functions, please see [characte

## Changelogs

### [v3.39.0](https://github.com/purocean/yn/releases/tag/v3.39.0) 2022-10-07
### [v3.40.1](https://github.com/purocean/yn/releases/tag/v3.40.1) 2022-10-16

1. feat: add the function of uploading all pictures
2. feat: added `$afterMacro` method for macro replacement, which supports processing the content of the document after macro replacement
3. feat: add regular expression settings for excluded files
4. fix: fix the problem that encrypted files cannot be opened correctly using the quick open panel
1. feat: optimize rendering performance for large documents containing formulas
2. feat: support using frontmatter to define Katex formula rendering parameters
3. feat: window traffic lights on macOS indicate whether the document has been saved
4. feat: added "Editor/Preview Mutual Exclusion" function to "View" menu
5. fix: fixed the problem that the editor's completion content was inserted incorrectly in some cases
6. feat(plugin): configuration item supports custom validator `validator` field
7. feat(plugin): support simple completion of items in configuration editor, related Api: `ctx.editor.tapSimpleCompletionItems`, `ctx.editor.getSimpleCompletionItems`
8. feat(plugin): add `ctx.doc.createCurrentDocChecker` method
6. fix: fix the issue of opening a new window when clicking an empty link
7. fix: Fix the abnormal display of the brain map in some cases
8. refactor(plugin): change `DOC_BEFORE_EXPORT` Hook to `VIEW_BEFORE_EXPORT`
9. refactor(plugin): change `ctx.doc.print` method to `ctx.view.print`
10. refactor(plugin): remove `ctx.theme.removeStyles` method
11. refactor(plugin): remove `view.scroll-top-to` Action
12. feat(plugin): add `ctx.theme.addStyleLink` method
13. feat(plugin): add `ctx.ui.useContextMenu` method to display the right-click menu
14. feat(plugin): add `ctx.markdown.getRenderCache` method for using render cache
15. feat(plugin): add `ctx.layout.toggleEditorPreviewExclusive` method for switching editor/preview exclusive mode
16. feat(plugin): add `ctx.editor.tapMarkdownMonarchLanguage` method to change the editor markdown language definition
17. feat(plugin): add `PLUGIN_HOOK` Hook, support to intercept and change Katex rendering parameters
18. feat(plugin): add `VIEW_RENDER_IFRAME_READY`, `GLOBAL_KEYDOWN`, `GLOBAL_KEYUP` Hooks
19. feat(plugin): preview rendering using iframe, related methods: `ctx.view.getRenderIframe`, `ctx.view.addStyles`, `ctx.view.addStyleLink`, `ctx.view.addScript`
20. fix(plugin): fix the problem that the plugin changes the markdown rendering parameters invalid

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

Expand Down
28 changes: 20 additions & 8 deletions README_ZH-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,28 @@

## 更新日志

### [v3.39.0](https://github.com/purocean/yn/releases/tag/v3.39.0) 2022-10-07
### [v3.40.1](https://github.com/purocean/yn/releases/tag/v3.40.1) 2022-10-16

1. feat: 增加上传所有图片功能
2. feat: 宏替换增加 `$afterMacro` 方法,支持处理宏替换后的文档内容
3. feat: 增加排除文件正则表达式设置
4. fix: 修复使用快速打开面板不能正确打开加密文件问题
1. feat: 优化渲染包含公式的大文档性能
2. feat: 支持使用 frontmatter 定义 Katex 公式渲染参数
3. feat: macOS 上窗口红绿灯指示文档是否已保存
4. feat: “视图”菜单增加“编辑器/预览互斥”功能
5. fix: 修复某些情况下编辑器补全内容插入不正确问题
6. feat(plugin): 配置项支持自定义校验器 `validator` 字段
7. feat(plugin): 支持配置编辑器简单补全条目,相关 Api:`ctx.editor.tapSimpleCompletionItems`, `ctx.editor.getSimpleCompletionItems`
8. feat(plugin): 增加 `ctx.doc.createCurrentDocChecker` 方法
6. fix: 修复点击空链接时打开新窗口问题
7. fix: 修复某些情况下脑图显示异常问题
8. refactor(plugin): 更改 `DOC_BEFORE_EXPORT` Hook 为 `VIEW_BEFORE_EXPORT`
9. refactor(plugin): 更改 `ctx.doc.print ` 方法为 `ctx.view.print`
10. refactor(plugin): 移除 `ctx.theme.removeStyles` 方法
11. refactor(plugin): 移除 `view.scroll-top-to` Action
12. feat(plugin): 增加 `ctx.theme.addStyleLink` 方法
13. feat(plugin): 增加 `ctx.ui.useContextMenu` 方法,用于显示右键菜单
14. feat(plugin): 增加 `ctx.markdown.getRenderCache` 方法,用于使用渲染缓存
15. feat(plugin): 增加 `ctx.layout.toggleEditorPreviewExclusive` 方法,用于切换编辑器/预览互斥模式
16. feat(plugin): 增加 `ctx.editor.tapMarkdownMonarchLanguage` 方法,用于更改编辑器 markdown 语言定义
17. feat(plugin): 增加 `PLUGIN_HOOK` Hook,支持拦截更改 Katex 渲染参数
18. feat(plugin): 增加 `VIEW_RENDER_IFRAME_READY`, `GLOBAL_KEYDOWN`, `GLOBAL_KEYUP` Hooks
19. feat(plugin): 预览渲染使用 iframe,相关方法:`ctx.view.getRenderIframe`, `ctx.view.addStyles`, `ctx.view.addStyleLink`, `ctx.view.addScript`
20. fix(plugin): 修复插件更改 markdown 渲染参数无效的问题

[更多发布说明](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.40.0",
"version": "3.40.1",
"description": "Yank Note: A hackable markdown note application for programmers",
"main": "dist/main/app.js",
"license": "AGPL-3.0",
Expand Down

0 comments on commit 4664916

Please sign in to comment.