This commit is contained in:
frostime 2023-10-27 20:41:40 +08:00
parent 05c9f269e2
commit c2d3812e19
7 changed files with 35 additions and 10 deletions

View file

@ -1,7 +1,23 @@
# Changelog # Changelog
## 0.2.7 2023-10
## 0.2.6 2023-10-24
* [Deprecated `loaded-protyle` use `loaded-protyle-static` instead](https://github.com/siyuan-note/siyuan/issues/9468)
## 0.2.5 2023-10-10
* [Add plugin event bus `open-menu-doctree`](https://github.com/siyuan-note/siyuan/issues/9351)
## 0.2.4 2023-09-19
* Supports use in windows
* [Add plugin function `transaction`](https://github.com/siyuan-note/siyuan/issues/9172)
## 0.2.3 2023-09-05 ## 0.2.3 2023-09-05
* [Add plugin function `transaction`](https://github.com/siyuan-note/siyuan/issues/9172)
* [Plugin API add openWindow and command.globalCallback](https://github.com/siyuan-note/siyuan/issues/9032) * [Plugin API add openWindow and command.globalCallback](https://github.com/siyuan-note/siyuan/issues/9032)
## 0.2.2 2023-08-29 ## 0.2.2 2023-08-29

View file

@ -3,7 +3,7 @@
[中文版](./README_zh_CN.md) [中文版](./README_zh_CN.md)
> Consistent with [siyuan/plugin-sample](https://github.com/siyuan-note/plugin-sample) [v0.2.3](https://github.com/siyuan-note/plugin-sample/tree/v0.2.3) > Consistent with [siyuan/plugin-sample](https://github.com/siyuan-note/plugin-sample) [v0.2.6](https://github.com/siyuan-note/plugin-sample/tree/v0.2.6)

View file

@ -4,7 +4,7 @@
[English](./README.md) [English](./README.md)
> 本例和 [siyuan/plugin-sample](https://github.com/siyuan-note/plugin-sample) [v0.2.3](https://github.com/siyuan-note/plugin-sample/tree/v0.2.3) > 本例和 [siyuan/plugin-sample](https://github.com/siyuan-note/plugin-sample) [v0.2.6](https://github.com/siyuan-note/plugin-sample/tree/v0.2.6)
1. 使用 vite 打包 1. 使用 vite 打包
2. 使用符号链接、而不是把项目放到插件目录下的模式进行开发 2. 使用符号链接、而不是把项目放到插件目录下的模式进行开发

View file

@ -1,12 +1,12 @@
{ {
"name": "plugin-sample-vite-svelte", "name": "plugin-sample-vite-svelte",
"version": "0.2.3", "version": "0.2.6",
"type": "module", "type": "module",
"description": "", "description": "This is a sample plugin based on vite and svelte for Siyuan (https://b3log.org/siyuan)",
"repository": "", "repository": "",
"homepage": "", "homepage": "",
"author": "", "author": "",
"license": "GPL-3.0", "license": "MIT",
"scripts": { "scripts": {
"make-link": "node --no-warnings ./scripts/make_dev_link.js", "make-link": "node --no-warnings ./scripts/make_dev_link.js",
"dev": "vite build --watch", "dev": "vite build --watch",
@ -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.3", "siyuan": "0.8.7",
"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,10 +2,17 @@
"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.2.3", "version": "0.2.6",
"minAppVersion": "2.10.3", "minAppVersion": "2.10.12",
"backends": ["all"], "backends": [
"frontends": ["all"], "windows",
"linux",
"darwin"
],
"frontends": [
"desktop",
"desktop-window"
],
"displayName": { "displayName": {
"en_US": "Plugin sample with vite and svelte", "en_US": "Plugin sample with vite and svelte",
"zh_CN": "插件样例 vite + svelte 版" "zh_CN": "插件样例 vite + svelte 版"

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",
"removeSpace": "Remove Space",
"getTab": "Print out all opened custom tabs in the debugger", "getTab": "Print out all opened custom tabs in the debugger",
"name": "SiYuan", "name": "SiYuan",
"hello": { "hello": {

View file

@ -9,6 +9,7 @@
"removedData": "数据已删除", "removedData": "数据已删除",
"confirmRemove": "确认删除 ${name} 中的数据?", "confirmRemove": "确认删除 ${name} 中的数据?",
"insertEmoji": "插入表情", "insertEmoji": "插入表情",
"removeSpace": "移除空格",
"getTab": "在日志中打印出已打开的所有自定义页签", "getTab": "在日志中打印出已打开的所有自定义页签",
"name": "思源", "name": "思源",
"hello": { "hello": {