@@ -58,7 +58,6 @@ Expected release date: 2016-07-16
|
|||||||
- Fixed authentication dialog not working for proxy.
|
- Fixed authentication dialog not working for proxy.
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
- Fixed the pixelated app icon on the top left of the main window.
|
|
||||||
- Fixed the blurred system tray icon.
|
- Fixed the blurred system tray icon.
|
||||||
- Fixed a redundant description appearing in the pinned start menu on Windows 7.
|
- Fixed a redundant description appearing in the pinned start menu on Windows 7.
|
||||||
|
|
||||||
|
@@ -319,7 +319,9 @@ app.on('ready', function() {
|
|||||||
// follow Electron's defaults
|
// follow Electron's defaults
|
||||||
window_options = {};
|
window_options = {};
|
||||||
}
|
}
|
||||||
if (process.platform === 'linux') {
|
if (process.platform === 'win32' || process.platform === 'linux') {
|
||||||
|
// On HiDPI(125%) Windows environment, the taskbar icon is pixelated. So this line is necessary. See #192.
|
||||||
|
// As the side effect, #98 reoccurs.
|
||||||
window_options.icon = path.resolve(__dirname, 'resources/appicon.png');
|
window_options.icon = path.resolve(__dirname, 'resources/appicon.png');
|
||||||
}
|
}
|
||||||
window_options.title = app.getName();
|
window_options.title = app.getName();
|
||||||
|
Reference in New Issue
Block a user