[MM-19223] Created reduced size notification icon to fix pixelation (#1136)

This commit is contained in:
Devin Binnie
2019-12-27 04:44:43 -05:00
committed by Guillermo Vayá
parent 009b473077
commit e95b7aad02
3 changed files with 2 additions and 2 deletions

BIN
src/assets/appicon_48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -24,7 +24,7 @@ const preloadJS = `file://${remote.app.getAppPath()}/browser/webview/mattermost_
const ERR_NOT_IMPLEMENTED = -11;
const U2F_EXTENSION_URL = 'chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/u2f-comms.html';
const appIconURL = `file:///${remote.app.getAppPath()}/assets/appicon.png`;
const appIconURL = `file:///${remote.app.getAppPath()}/assets/appicon_48.png`;
export default class MattermostView extends React.Component {
constructor(props) {

View File

@@ -11,7 +11,7 @@ import {ipcRenderer, remote} from 'electron';
import osVersion from '../../common/osVersion';
import dingDataURL from '../../assets/ding.mp3'; // https://github.com/mattermost/platform/blob/v3.7.3/webapp/images/ding.mp3
const appIconURL = `file:///${remote.app.getAppPath()}/assets/appicon.png`;
const appIconURL = `file:///${remote.app.getAppPath()}/assets/appicon_48.png`;
const playDing = throttle(() => {
const ding = new Audio(dingDataURL);