diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e1a0b2ac6..66915ef81 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,20 @@ # Changelog +## [v2.11.0] + +### Enhancements + +- Updated search so that all notes are searched even if there is a currently selected tag [#2878](https://github.com/automattic/simplenote-electron/pull/2878) +- Added the option to search with `tag:untagged` to find notes without any tags [#2879](https://github.com/automattic/simplenote-electron/pull/2879) +- Shows tags to be restored on the note history screen [#2817](https://github.com/automattic/simplenote-electron/pull/2817) +- Added system theme for Mac and Windows Electron apps [#2882](https://github.com/automattic/simplenote-electron/pull/2882) +- Updated the method of setting the theme selection [#2873](https://github.com/automattic/simplenote-electron/pull/2873) +- Reduced the number of colors used throughout the project [#2872](https://github.com/automattic/simplenote-electron/pull/2872) + +### Fixes + +- Fixed a couple of bugs where the editor would get focus instead of staying with the search field [#2531](https://github.com/automattic/simplenote-electron/pull/2531) + ## [v2.10.0] ### Enhancements diff --git a/desktop/app.js b/desktop/app.js index 8c8add313..7724b29f5 100644 --- a/desktop/app.js +++ b/desktop/app.js @@ -102,7 +102,9 @@ module.exports = function main() { Menu.setApplicationMenu( Menu.buildFromTemplate(createMenuTemplate(args), mainWindow) ); - nativeTheme.themeSource = settings.theme; + if ('theme' in settings) { + nativeTheme.themeSource = settings.theme; + } }); ipcMain.on('clearCookies', function () { diff --git a/package-lock.json b/package-lock.json index 4b46c0ffe..e70c559b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "simplenote", - "version": "2.10.0", + "version": "2.11.0-beta1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a8cea8ad2..cfbf33bd6 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "email": "support@simplenote.com" }, "productName": "Simplenote", - "version": "2.10.0", + "version": "2.11.0-beta1", "main": "desktop/index.js", "license": "GPL-2.0", "homepage": "https://simplenote.com",