udpate version

This commit is contained in:
frostime 2023-09-16 16:16:56 +08:00
parent f114305718
commit 57e50e1ca8
5 changed files with 23 additions and 5 deletions

View file

@ -1,4 +1,20 @@
## 0.2.0 # Changelog
## 0.2.3 2023-09-05
* [Plugin API add openWindow and command.globalCallback](https://github.com/siyuan-note/siyuan/issues/9032)
## 0.2.2 2023-08-29
* [Add plugin event bus `destroy-protyle`](https://github.com/siyuan-note/siyuan/issues/9033)
* [Add plugin event bus `loaded-protyle-dynamic`](https://github.com/siyuan-note/siyuan/issues/9021)
## 0.2.1 2023-08-21
* [Plugin API add getOpenedTab method](https://github.com/siyuan-note/siyuan/issues/9002)
* [Plugin API custom.fn => custom.id in openTab](https://github.com/siyuan-note/siyuan/issues/8944)
## 0.2.0 2023-08-15
* [Add plugin event bus `open-siyuan-url-plugin` and `open-siyuan-url-block`](https://github.com/siyuan-note/siyuan/pull/8927) * [Add plugin event bus `open-siyuan-url-plugin` and `open-siyuan-url-block`](https://github.com/siyuan-note/siyuan/pull/8927)

View file

@ -1,6 +1,6 @@
{ {
"name": "plugin-sample-vite-svelte", "name": "plugin-sample-vite-svelte",
"version": "0.1.12", "version": "0.2.3",
"type": "module", "type": "module",
"description": "", "description": "",
"repository": "", "repository": "",
@ -22,7 +22,7 @@
"minimist": "^1.2.8", "minimist": "^1.2.8",
"rollup-plugin-livereload": "^2.0.5", "rollup-plugin-livereload": "^2.0.5",
"sass": "^1.62.1", "sass": "^1.62.1",
"siyuan": "0.8.1", "siyuan": "0.8.3",
"svelte": "^3.57.0", "svelte": "^3.57.0",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "^5.0.4", "typescript": "^5.0.4",

View file

@ -2,8 +2,8 @@
"name": "plugin-sample-vite-svelte", "name": "plugin-sample-vite-svelte",
"author": "frostime", "author": "frostime",
"url": "https://github.com/siyuan-note/plugin-sample-vite-svelte", "url": "https://github.com/siyuan-note/plugin-sample-vite-svelte",
"version": "0.1.12", "version": "0.2.3",
"minAppVersion": "2.9.0", "minAppVersion": "2.10.3",
"backends": ["all"], "backends": ["all"],
"frontends": ["all"], "frontends": ["all"],
"displayName": { "displayName": {

View file

@ -9,6 +9,7 @@
"removedData": "Data deleted", "removedData": "Data deleted",
"confirmRemove": "Confirm to delete the data in ${name}?", "confirmRemove": "Confirm to delete the data in ${name}?",
"insertEmoji": "Insert Emoji", "insertEmoji": "Insert Emoji",
"getTab": "Print out all opened custom tabs in the debugger",
"name": "SiYuan", "name": "SiYuan",
"hello": { "hello": {
"makesure": "Before using this template, please read the <a href=\"https://github.com/siyuan-note/plugin-sample\">offical sample</a>, make sure that you've known about the pipeline for plugin developing." "makesure": "Before using this template, please read the <a href=\"https://github.com/siyuan-note/plugin-sample\">offical sample</a>, make sure that you've known about the pipeline for plugin developing."

View file

@ -9,6 +9,7 @@
"removedData": "数据已删除", "removedData": "数据已删除",
"confirmRemove": "确认删除 ${name} 中的数据?", "confirmRemove": "确认删除 ${name} 中的数据?",
"insertEmoji": "插入表情", "insertEmoji": "插入表情",
"getTab": "在日志中打印出已打开的所有自定义页签",
"name": "思源", "name": "思源",
"hello": { "hello": {
"makesure": "使用这个模板之前,请阅读<a href=\"https://github.com/siyuan-note/plugin-sample\">官方教程</a>, 确保自己已经理解了插件的基本开发流程。" "makesure": "使用这个模板之前,请阅读<a href=\"https://github.com/siyuan-note/plugin-sample\">官方教程</a>, 确保自己已经理解了插件的基本开发流程。"