Commit a72359a 1 parent e82377c commit a72359a Copy full SHA for a72359a
File tree 3 files changed +14
-5
lines changed
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
- ## 1.6.1 (2023-06-18 )
1
+ ## 1.7.0 (2023-06-21 )
2
2
3
3
### New feature:
4
4
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)
6
7
7
8
### Bugs fixed:
8
9
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)
Original file line number Diff line number Diff line change 8
8
},
9
9
"package" : {
10
10
"productName" : " pot" ,
11
- "version" : " 1.6.1 "
11
+ "version" : " 1.7.0 "
12
12
},
13
13
"tauri" : {
14
14
"allowlist" : {
86
86
"webviewInstallMode" : {
87
87
"silent" : true ,
88
88
"type" : " embedBootstrapper"
89
+ },
90
+ "nsis" : {
91
+ "displayLanguageSelector" : true ,
92
+ "installerIcon" : " icons/icon.ico" ,
93
+ "license" : " ../LICENSE" ,
94
+ "installMode" : " perMachine"
89
95
}
90
96
}
91
97
},
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ async function resolveUpdater() {
20
20
const windows_x86_64_sig = await getSignature ( windows_x86_64 + '.sig' ) ;
21
21
const windows_i686 = `https://github.com/pot-app/pot-desktop/releases/download/${ version } /pot_${ version } _x86_zh-CN.msi.zip` ;
22
22
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' ) ;
23
25
24
26
let updateData = {
25
27
name : version ,
@@ -31,6 +33,7 @@ async function resolveUpdater() {
31
33
'linux-x86_64' : { signature : linux_x86_64_sig , url : 'https://ghproxy.com/' + linux_x86_64 } ,
32
34
'windows-x86_64' : { signature : windows_x86_64_sig , url : 'https://ghproxy.com/' + windows_x86_64 } ,
33
35
'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 }
34
37
} ,
35
38
} ;
36
39
You can’t perform that action at this time.
0 commit comments