diff --git a/db/demo.zip b/db/demo.zip index 958fa4be2..0d015dc95 100644 Binary files a/db/demo.zip and b/db/demo.zip differ diff --git a/package.json b/package.json index 1e33666a5..c6d7a7616 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,7 @@ }, "devDependencies": { "cross-env": "7.0.3", - "electron": "13.4.0", + "electron": "13.5.0", "electron-builder": "22.11.7", "electron-packager": "15.4.0", "electron-rebuild": "3.2.3", diff --git a/src/becca/entities/note.js b/src/becca/entities/note.js index 5562f239c..9ba73d10a 100644 --- a/src/becca/entities/note.js +++ b/src/becca/entities/note.js @@ -649,7 +649,7 @@ class Note extends AbstractEntity { this.flatTextCache += ' '; } - this.flatTextCache = utils.removeDiacritic(this.flatTextCache.toLowerCase()); + this.flatTextCache = utils.normalize(this.flatTextCache); } return this.flatTextCache; diff --git a/src/services/options_init.js b/src/services/options_init.js index 08934541d..7610826d8 100644 --- a/src/services/options_init.js +++ b/src/services/options_init.js @@ -56,7 +56,7 @@ const defaultOptions = [ { name: 'noteRevisionSnapshotTimeInterval', value: '600', isSynced: true }, { name: 'protectedSessionTimeout', value: '600', isSynced: true }, { name: 'zoomFactor', value: '1.0', isSynced: false }, - { name: 'overrideThemeFont', value: 'false', isSynced: false }, + { name: 'overrideThemeFonts', value: 'false', isSynced: false }, { name: 'mainFontFamily', value: 'sans-serif', isSynced: false }, { name: 'mainFontSize', value: '100', isSynced: false }, { name: 'treeFontFamily', value: 'sans-serif', isSynced: false },