Skip to content

Commit e6a729c

Browse files
committedJan 11, 2025·
fix: bazaar index
1 parent f515f5d commit e6a729c

File tree

6 files changed

+60
-0
lines changed

6 files changed

+60
-0
lines changed
 

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Terwer
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎apps/siyuan/preview.png

20.9 KB
Loading

‎icon.png

44.9 KB
Loading

‎plugin.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "siyuan-blog",
3+
"author": "terwer",
4+
"url": "https://github.com/terwer/siyuan-plugin-blog",
5+
"version": "6.0.3",
6+
"minAppVersion": "2.9.0",
7+
"backends": [
8+
"windows",
9+
"linux",
10+
"darwin",
11+
"docker"
12+
],
13+
"frontends": [
14+
"desktop",
15+
"browser-desktop"
16+
],
17+
"displayName": {
18+
"default": "Share to web",
19+
"zh_CN": "在线分享"
20+
},
21+
"description": {
22+
"default": "Your self-hosted notion alternative",
23+
"zh_CN": "您的自部署 notion 替代品"
24+
},
25+
"readme": {
26+
"default": "README.md",
27+
"zh_CN": "README_zh_CN.md"
28+
},
29+
"i18n": [
30+
"en_US",
31+
"zh_CN"
32+
],
33+
"funding": {
34+
"custom": [
35+
"https://afdian.com/a/terwer"
36+
]
37+
}
38+
}

‎preview.png

144 KB
Loading

‎scripts/version.py

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def parse_json(filename, version_field, new_version):
6868
print("Verbose mode enabled")
6969

7070
# plugin.json
71+
parse_json(cwd + "plugin.json", "version", args.version)
7172
parse_json(cwd + "apps/siyuan/plugin.json", "version", args.version)
7273
parse_json(cwd + "apps/siyuan/package.json", "version", args.version)
7374
parse_json(cwd + "apps/app/package.json", "version", args.version)

0 commit comments

Comments
 (0)
Please sign in to comment.