diff --git a/CHANGELOG.md b/CHANGELOG.md index 39a2fc1e..35530347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # WebTorrent Desktop Version History -## UNRELEASED +## v0.3.2 - 2016-04-07 ### Added @@ -8,7 +8,10 @@ ### Changed +- Faster startup time (50ms) - Update Electron to 0.37.5 + - Remove the white flash when loading pages and resizing the window + - Fix crash when sending IPC messages ### Fixed diff --git a/main/ipc.js b/main/ipc.js index 28f9c391..802a4673 100644 --- a/main/ipc.js +++ b/main/ipc.js @@ -20,10 +20,8 @@ function init () { ipcMain.on('ipcReady', function (e) { app.ipcReady = true app.emit('ipcReady') - setTimeout(function () { - windows.main.show() - try { console.timeEnd('init') } catch (err) {} - }, 50) + windows.main.show() + console.timeEnd('init') }) var messageQueueMainToWebTorrent = [] diff --git a/main/windows.js b/main/windows.js index bbee87af..b6b9d42f 100644 --- a/main/windows.js +++ b/main/windows.js @@ -49,7 +49,7 @@ function createAboutWindow () { function createWebTorrentHiddenWindow () { var win = windows.webtorrent = new electron.BrowserWindow({ - backgroundColor: '#282828', + backgroundColor: '#1E1E1E', show: false, center: true, title: 'webtorrent-hidden-window', @@ -79,7 +79,7 @@ function createMainWindow () { return focusWindow(windows.main) } var win = windows.main = new electron.BrowserWindow({ - backgroundColor: '#282828', + backgroundColor: '#1E1E1E', darkTheme: true, // Forces dark theme (GTK+3) icon: config.APP_ICON + '.png', minWidth: 425,