-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Explicitly set targets for Linux and Mac
-Provide valid application category for Linux and Mac -Remove unwanted keys from package.json
- Loading branch information
1 parent
3a6d14b
commit 41ed205
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
"productName": "Android Messages", | ||
"description": "Google's Android Messages web client, as a desktop app", | ||
"version": "0.0.1", | ||
"private": true, | ||
"author": "Chris Knepper <[email protected]>", | ||
"copyright": "© 2018 Chris Knepper", | ||
"homepage": "https://github.com/chrisknepper/android-messages-desktop", | ||
|
@@ -22,7 +21,21 @@ | |
"directories": { | ||
"buildResources": "resources" | ||
}, | ||
"publish": null | ||
"mac": { | ||
"category": "public.app-category.social-networking", | ||
"target": [ | ||
"zip", | ||
"dmg" | ||
] | ||
}, | ||
"linux": { | ||
"category": "Chat", | ||
"target": [ | ||
"deb", | ||
"AppImage", | ||
"snap" | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"postinstall": "electron-builder install-app-deps", | ||
|