diff --git a/app/tray_icon.js b/app/tray_icon.js index 8a88b4319b..fde1eab4c3 100644 --- a/app/tray_icon.js +++ b/app/tray_icon.js @@ -11,8 +11,19 @@ let trayContextMenu = null; let tray = null; function createTrayIcon(getMainWindow, messages) { - // A smaller icon is needed on macOS - const iconSize = process.platform === 'darwin' ? '16' : '256'; + let iconSize; + switch (process.platform) { + case 'darwin': + iconSize = '16'; + break; + case 'win32': + iconSize = '32'; + break; + default: + iconSize = '256'; + break; + } + const iconNoNewMessages = path.join( __dirname, '..', diff --git a/images/alert/32/1.png b/images/alert/32/1.png new file mode 100644 index 0000000000..325ade90aa Binary files /dev/null and b/images/alert/32/1.png differ diff --git a/images/alert/32/10.png b/images/alert/32/10.png new file mode 100644 index 0000000000..245cf4ec68 Binary files /dev/null and b/images/alert/32/10.png differ diff --git a/images/alert/32/2.png b/images/alert/32/2.png new file mode 100644 index 0000000000..579f399d7b Binary files /dev/null and b/images/alert/32/2.png differ diff --git a/images/alert/32/3.png b/images/alert/32/3.png new file mode 100644 index 0000000000..73e8b7fbeb Binary files /dev/null and b/images/alert/32/3.png differ diff --git a/images/alert/32/4.png b/images/alert/32/4.png new file mode 100644 index 0000000000..a96a0620fc Binary files /dev/null and b/images/alert/32/4.png differ diff --git a/images/alert/32/5.png b/images/alert/32/5.png new file mode 100644 index 0000000000..abf0c1ca71 Binary files /dev/null and b/images/alert/32/5.png differ diff --git a/images/alert/32/6.png b/images/alert/32/6.png new file mode 100644 index 0000000000..f952161d1e Binary files /dev/null and b/images/alert/32/6.png differ diff --git a/images/alert/32/7.png b/images/alert/32/7.png new file mode 100644 index 0000000000..5427452d87 Binary files /dev/null and b/images/alert/32/7.png differ diff --git a/images/alert/32/8.png b/images/alert/32/8.png new file mode 100644 index 0000000000..f7bb6dfc4d Binary files /dev/null and b/images/alert/32/8.png differ diff --git a/images/alert/32/9.png b/images/alert/32/9.png new file mode 100644 index 0000000000..84521bc4fe Binary files /dev/null and b/images/alert/32/9.png differ