mattermost-desktop/electron-builder.json
Jim Campbell 3921081384 Update icon for Linux menus to use an SVG icon
Replace mattermost-desktop PNG icon (icon.png) with an SVG version
(icon.svg). This will improve icon appearance on Linux desktops.
Update icon references in electron-builder.json and
create_desktop_file.sh to point to the new SVG icon.
Update CHANGELOG.MD
Fixes #507
2018-06-04 10:12:40 -05:00

79 lines
1.3 KiB
JSON

{
"appId": "com.mattermost.desktop",
"directories": {
"buildResources": "resources",
"app": "src",
"output": "release"
},
"files": [
"main_bundle.js",
"browser/**/*{.html,.css,_bundle.js}",
"assets/**/*",
"node_modules/bootstrap/dist/**",
"node_modules/simple-spellchecker/dict/*.dic"
],
"protocols": [
{
"name": "Mattermost",
"schemes": ["mattermost"]
}
],
"deb": {
"synopsis": "Mattermost"
},
"linux": {
"category": "Network;InstantMessaging",
"target": [
"deb",
"tar.gz"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
},
{
"from": "resources/linux",
"filter": [
"create_desktop_file.sh",
"icon.svg",
"README.md"
]
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"zip"
],
"extraResources": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
]
},
"squirrelWindows": {
"iconUrl": "file://resources/icon.ico"
},
"win": {
"target": [
"squirrel",
"zip"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
]
}
}