Skip to content

Commit

Permalink
3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Pylogmon committed Jun 26, 2024
1 parent 58e0cac commit 34d461f
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 3.0.3 (2024-06-26)
## 3.0.4 (2024-06-26)

### Break Change:

Expand All @@ -16,3 +16,4 @@
- recognize failed
- tts failed
- collection failed
- default lingva error
23 changes: 23 additions & 0 deletions com.pot_app.pot.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,29 @@
</screenshot>
</screenshots>
<releases>
<release version="3.0.4" date="2024-06-26">
<url type="details">https://github.com/pot-app/pot-desktop/releases/tag/3.0.4</url>
<description>
<p>Break Change:</p>
<ul>
<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>
<li xml:lang="zh-Hans">3.x版本之后旧版插件不再可用,升级后会自动删除旧版插件,请前往插件仓库下载安装新版插件使用,若插件开发者还没适配新版插件,请联系插件开发者升级插件。</li>
</ul>
<p>New feature:</p>
<ul>
<li>Support multiple instance services</li>
<li>Use Javascript plugin system</li>
<li>Enable dev tools</li>
</ul>
<p>Bugs fixed:</p>
<ul>
<li>Recognize failed</li>
<li>TTS failed</li>
<li>Collection failed</li>
<li>Default Lingva error</li>
</ul>
</description>
</release>
<release version="3.0.3" date="2024-06-26">
<url type="details">https://github.com/pot-app/pot-desktop/releases/tag/3.0.3</url>
<description>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pot",
"private": true,
"version": "3.0.2",
"version": "3.0.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -56,4 +56,4 @@
"typescript": "^5.4.5",
"vite": "^5.3.1"
}
}
}
26 changes: 20 additions & 6 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "pot",
"version": "3.0.3"
"version": "3.0.4"
},
"tauri": {
"allowlist": {
Expand All @@ -35,18 +35,27 @@
"http": {
"all": true,
"request": true,
"scope": ["http://**", "https://**"]
"scope": [
"http://**",
"https://**"
]
},
"os": {
"all": true
},
"protocol": {
"asset": true,
"assetScope": ["$CACHE/**", "$CONFIG/**"]
"assetScope": [
"$CACHE/**",
"$CONFIG/**"
]
},
"fs": {
"all": true,
"scope": ["$APPCONFIG/**", "$APPCACHE/**"]
"scope": [
"$APPCONFIG/**",
"$APPCACHE/**"
]
},
"dialog": {
"open": true,
Expand All @@ -71,7 +80,12 @@
"icons/icon.ico"
],
"deb": {
"depends": ["libxdo-dev", "libxcb1", "libxrandr2", "tesseract-ocr"]
"depends": [
"libxdo-dev",
"libxcb1",
"libxrandr2",
"tesseract-ocr"
]
},
"macOS": {
"entitlements": null,
Expand Down Expand Up @@ -108,4 +122,4 @@
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVBRTQxQTNDQjM5QzQzM0EKUldRNlE1eXpQQnJrV21mM1Bram5LRlF6UDA3K0Jab2FYL2lZSWhXTE5McWs2NUdJS0dtYkd5VGMK"
}
}
}
}

0 comments on commit 34d461f

Please sign in to comment.