diff --git a/README.md b/README.md index 6019cd9d2..8cb98845a 100644 --- a/README.md +++ b/README.md @@ -76,12 +76,13 @@ For more information on how to use the following functions, please see [characte ## Changelogs -### [v3.32.0](https://github.com/purocean/yn/releases/tag/v3.32.0) 2022-07-14 +### [v3.33.0](https://github.com/purocean/yn/releases/tag/v3.33.0) 2022-07-28 -1. feat: added "Export" and "Print" menu items to the status bar menu -2. feat: open the terminal and switch to the current warehouse directory by default -3. feat: add "section" container block -4. upd: the "Keep running in background" setting is disabled by default on macOS +1. fix: fix the problem that the word count statistics of open documents are not updated +2. fix: fix the problem that front matter is not refreshed when switching files +3. upd: export HTML preserves `data-*` attributes +4. upd: optimize `section` container style +5. feat(plugin): Added previewer registration, plugins can customize the document preview interface. Related APIs: `ctx.view.switchPreviewer` `ctx.view.registerPreviewer` `ctx.view.removePreviewer` `ctx.view.getAllPreviewers` [More release notes](https://github.com/purocean/yn/releases) diff --git a/README_ZH-CN.md b/README_ZH-CN.md index 38e84e4dd..6ecea19ff 100644 --- a/README_ZH-CN.md +++ b/README_ZH-CN.md @@ -76,12 +76,13 @@ ## 更新日志 -### [v3.32.0](https://github.com/purocean/yn/releases/tag/v3.32.0) 2022-07-14 +### [v3.33.0](https://github.com/purocean/yn/releases/tag/v3.33.0) 2022-07-28 -1. feat: 状态栏菜单增加“导出”、“打印”菜单项 -2. feat: 打开终端默认切换到当前仓库目录 -3. feat: 增加“section”容器块 -4. upd: macOS 上默认禁用“保持后台运行”设置 +1. fix: 修复打开文档字数统计信息不更新问题 +2. fix: 修复切换文件时候 front matter 没刷新问题 +3. upd: 导出 HTML 保留 `data-*` 属性 +4. upd: 优化 `section` 容器样式 +5. feat(plugin): 增加预览器注册,插件可以自定义文档预览界面。相关 Api: `ctx.view.switchPreviewer` `ctx.view.registerPreviewer` `ctx.view.removePreviewer` `ctx.view.getAllPreviewers` [更多发布说明](https://github.com/purocean/yn/releases) diff --git a/package.json b/package.json index 9f600ea19..61178a3a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "yank.note", - "version": "3.32.0", + "version": "3.33.0", "description": "Yank Note: A hackable markdown note application for programmers", "main": "dist/main/app.js", "license": "AGPL-3.0",