Skip to content

Commit a72359a

Browse files
committed
1.7.0
1 parent e82377c commit a72359a

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
## 1.6.1 (2023-06-18)
1+
## 1.7.0 (2023-06-21)
22

33
### New feature:
44

5-
- suppoort mojidict text translator (#255)([`2d49f14`](https://github.com/pot-app/pot-desktop/commit/2d49f141d19af4b2256b34a6bc939f402af9bc9e)) (by @xtyuns)
5+
- Add windows arm64 support([`e82377c`](https://github.com/pot-app/pot-desktop/commit/e82377cfd727bdf86d20d0a5c9be4fd33b6a9286)) (by @Pylogmon)
6+
- add google PALM2 API (#257)([`1b081b9`](https://github.com/pot-app/pot-desktop/commit/1b081b967b80956db9165411e27331a27637afcd)) (by @Kuingsmile)
67

78
### Bugs fixed:
89

9-
- Tesseract can not use on Linux([`d634dff`](https://github.com/pot-app/pot-desktop/commit/d634dff2e7a0130433d8308e8c9e8ca71f03807d)) (by @Pylogmon)
10-
- cambridge dict resolve (#254)([`58c05bb`](https://github.com/pot-app/pot-desktop/commit/58c05bb314dca655ac9a2f84a9e0c933621bfe7f)) (by @xtyuns)
10+
- Crash when clipboard is not text([`c69800f`](https://github.com/pot-app/pot-desktop/commit/c69800fd9eb0f5eb273de33b64845b115789ce7e)) (by @Pylogmon)

src-tauri/tauri.conf.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "pot",
11-
"version": "1.6.1"
11+
"version": "1.7.0"
1212
},
1313
"tauri": {
1414
"allowlist": {
@@ -86,6 +86,12 @@
8686
"webviewInstallMode": {
8787
"silent": true,
8888
"type": "embedBootstrapper"
89+
},
90+
"nsis": {
91+
"displayLanguageSelector": true,
92+
"installerIcon": "icons/icon.ico",
93+
"license": "../LICENSE",
94+
"installMode": "perMachine"
8995
}
9096
}
9197
},

updater/updater.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ async function resolveUpdater() {
2020
const windows_x86_64_sig = await getSignature(windows_x86_64 + '.sig');
2121
const windows_i686 = `https://github.com/pot-app/pot-desktop/releases/download/${version}/pot_${version}_x86_zh-CN.msi.zip`;
2222
const windows_i686_sig = await getSignature(windows_i686 + '.sig');
23+
const windows_aarch64 = `https://github.com/pot-app/pot-desktop/releases/download/${version}/pot_${version}_arm64-setup.nsis.zip`;
24+
const windows_aarch64_sig = await getSignature(windows_aarch64 + '.sig');
2325

2426
let updateData = {
2527
name: version,
@@ -31,6 +33,7 @@ async function resolveUpdater() {
3133
'linux-x86_64': { signature: linux_x86_64_sig, url: 'https://ghproxy.com/' + linux_x86_64 },
3234
'windows-x86_64': { signature: windows_x86_64_sig, url: 'https://ghproxy.com/' + windows_x86_64 },
3335
'windows-i686': { signature: windows_i686_sig, url: 'https://ghproxy.com/' + windows_i686 },
36+
'windows-aarch64': { signature: windows_aarch64_sig, url: 'https://ghproxy.com/' + windows_aarch64 }
3437
},
3538
};
3639

0 commit comments

Comments
 (0)