Skip to content

Commit

Permalink
Bump version to 2.11.0-beta1 (#2884)
Browse files Browse the repository at this point in the history
Co-authored-by: sandymcfadden <[email protected]>
  • Loading branch information
mokagio and sandymcfadden authored May 14, 2021
1 parent 3330c5b commit b264cb2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
15 changes: 15 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion desktop/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"email": "[email protected]"
},
"productName": "Simplenote",
"version": "2.10.0",
"version": "2.11.0-beta1",
"main": "desktop/index.js",
"license": "GPL-2.0",
"homepage": "https://simplenote.com",
Expand Down

0 comments on commit b264cb2

Please sign in to comment.