diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/package.json b/package.json index 176d5b5..aad947f 100644 --- a/package.json +++ b/package.json @@ -24,32 +24,34 @@ "!main.js" ], "mac": { - "artifactName": "${productName}-${version}-${arch}.${ext}", + "artifactName": "jitsi-meet-${version}.${ext}", "category": "public.app-category.video", "target": "dmg" }, "linux": { - "artifactName": "${productName}-${version}-${arch}.${ext}", + "artifactName": "jitsi-meet-${version}-${arch}.${ext}", "category": "VideoConference;AudioVideo;Audio;Video;Network", "description": "Jitsi Meet Desktop App", "executableName": "jitsi-meet", - "target": "AppImage" + "target": [ + { + "arch": "x64", + "target": "AppImage" + } + ] }, "win": { + "artifactName": "jitsi-meet-${version}-${arch}.${ext}", "target": [ { "arch": [ - "x64", - "ia32" + "ia32", + "x64" ], "target": "nsis" } ] }, - "nsis": { - "allowToChangeInstallationDirectory": true, - "oneClick": false - }, "directories": { "buildResources": "resources" } |