fix #182: save window position on Windows

This commit is contained in:
antelle 2016-04-07 00:00:21 +03:00
parent da0b0239c1
commit d18eeded63
2 changed files with 5 additions and 1 deletions

View File

@ -169,7 +169,7 @@ function saveMainWindowPosition() {
} }
delete mainWindowPosition.changed; delete mainWindowPosition.changed;
try { try {
fs.writeFile(windowPositionFileName, JSON.stringify(mainWindowPosition), 'utf8'); fs.writeFileSync(windowPositionFileName, JSON.stringify(mainWindowPosition), 'utf8');
} catch (e) {} } catch (e) {}
} }

View File

@ -1,5 +1,9 @@
Release notes Release notes
------------- -------------
##### v1.1.1 (2016-04-**)
Hotfix
`-` fix #181: save window position on Windows
##### v1.1.0 (2016-04-05) ##### v1.1.0 (2016-04-05)
Storage providers, one-time passwords, usability improvements Storage providers, one-time passwords, usability improvements
`+` WebDAV `+` WebDAV