Skip to content

Commit 34d461f

Browse files
committed
3.0.4
1 parent 58e0cac commit 34d461f

File tree

4 files changed

+47
-9
lines changed

4 files changed

+47
-9
lines changed

CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 3.0.3 (2024-06-26)
1+
## 3.0.4 (2024-06-26)
22

33
### Break Change:
44

@@ -16,3 +16,4 @@
1616
- recognize failed
1717
- tts failed
1818
- collection failed
19+
- default lingva error

com.pot_app.pot.metainfo.xml

+23
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,29 @@
5353
</screenshot>
5454
</screenshots>
5555
<releases>
56+
<release version="3.0.4" date="2024-06-26">
57+
<url type="details">https://github.com/pot-app/pot-desktop/releases/tag/3.0.4</url>
58+
<description>
59+
<p>Break Change:</p>
60+
<ul>
61+
<li>After version 3.x, old plugins will no longer be available. They will be automatically deleted upon upgrade. Please visit the plugin repository to download and install the new versions. If the plugin developers have not yet updated their plugins, please contact them to request an upgrade.</li>
62+
<li xml:lang="zh-Hans">3.x版本之后旧版插件不再可用,升级后会自动删除旧版插件,请前往插件仓库下载安装新版插件使用,若插件开发者还没适配新版插件,请联系插件开发者升级插件。</li>
63+
</ul>
64+
<p>New feature:</p>
65+
<ul>
66+
<li>Support multiple instance services</li>
67+
<li>Use Javascript plugin system</li>
68+
<li>Enable dev tools</li>
69+
</ul>
70+
<p>Bugs fixed:</p>
71+
<ul>
72+
<li>Recognize failed</li>
73+
<li>TTS failed</li>
74+
<li>Collection failed</li>
75+
<li>Default Lingva error</li>
76+
</ul>
77+
</description>
78+
</release>
5679
<release version="3.0.3" date="2024-06-26">
5780
<url type="details">https://github.com/pot-app/pot-desktop/releases/tag/3.0.3</url>
5881
<description>

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pot",
33
"private": true,
4-
"version": "3.0.2",
4+
"version": "3.0.4",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -56,4 +56,4 @@
5656
"typescript": "^5.4.5",
5757
"vite": "^5.3.1"
5858
}
59-
}
59+
}

src-tauri/tauri.conf.json

+20-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "pot",
11-
"version": "3.0.3"
11+
"version": "3.0.4"
1212
},
1313
"tauri": {
1414
"allowlist": {
@@ -35,18 +35,27 @@
3535
"http": {
3636
"all": true,
3737
"request": true,
38-
"scope": ["http://**", "https://**"]
38+
"scope": [
39+
"http://**",
40+
"https://**"
41+
]
3942
},
4043
"os": {
4144
"all": true
4245
},
4346
"protocol": {
4447
"asset": true,
45-
"assetScope": ["$CACHE/**", "$CONFIG/**"]
48+
"assetScope": [
49+
"$CACHE/**",
50+
"$CONFIG/**"
51+
]
4652
},
4753
"fs": {
4854
"all": true,
49-
"scope": ["$APPCONFIG/**", "$APPCACHE/**"]
55+
"scope": [
56+
"$APPCONFIG/**",
57+
"$APPCACHE/**"
58+
]
5059
},
5160
"dialog": {
5261
"open": true,
@@ -71,7 +80,12 @@
7180
"icons/icon.ico"
7281
],
7382
"deb": {
74-
"depends": ["libxdo-dev", "libxcb1", "libxrandr2", "tesseract-ocr"]
83+
"depends": [
84+
"libxdo-dev",
85+
"libxcb1",
86+
"libxrandr2",
87+
"tesseract-ocr"
88+
]
7589
},
7690
"macOS": {
7791
"entitlements": null,
@@ -108,4 +122,4 @@
108122
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVBRTQxQTNDQjM5QzQzM0EKUldRNlE1eXpQQnJrV21mM1Bram5LRlF6UDA3K0Jab2FYL2lZSWhXTE5McWs2NUdJS0dtYkd5VGMK"
109123
}
110124
}
111-
}
125+
}

0 commit comments

Comments
 (0)