mirror of https://github.com/laurent22/joplin.git
Desktop: Use asar packing to improve performances (#2531)
* Use the strongly recommended asar packing on linux * Use asar for macOS packaging * Update package.json Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>pull/2594/head
parent
16fb1bda53
commit
ef8af13500
|
@ -26,6 +26,7 @@
|
||||||
"build/images/*"
|
"build/images/*"
|
||||||
],
|
],
|
||||||
"win": {
|
"win": {
|
||||||
|
"asar": true,
|
||||||
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp",
|
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp",
|
||||||
"icon": "../../Assets/Joplin.ico",
|
"icon": "../../Assets/Joplin.ico",
|
||||||
"target": [
|
"target": [
|
||||||
|
@ -54,10 +55,10 @@
|
||||||
},
|
},
|
||||||
"mac": {
|
"mac": {
|
||||||
"icon": "../../Assets/macOs.icns",
|
"icon": "../../Assets/macOs.icns",
|
||||||
"asar": false
|
"asar": true
|
||||||
},
|
},
|
||||||
"linux": {
|
"linux": {
|
||||||
"asar": false,
|
"asar": true,
|
||||||
"category": "Office",
|
"category": "Office",
|
||||||
"desktop": {
|
"desktop": {
|
||||||
"Icon": "joplin"
|
"Icon": "joplin"
|
||||||
|
|
Loading…
Reference in New Issue