diff --git a/CHANGELOG.md b/CHANGELOG.md index 336ee72..753a699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ but can still easily be enabled by following instructions in the [docs](README.m - bugfix: odd mix of `\\` and `/` being used for windows filepaths. - bugfix: app no longer crashes when sidebar is toggled. -known remaining/confirmed issues: +known/confirmed remaining issues: - russian symbols not supported by UTF-8 diff --git a/docs/changelog.html b/docs/changelog.html index aed0bc2..97d8303 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -23,7 +23,7 @@ better with the OS while not being out-of-place in notion).
  • bugfix: odd mix of \\ and / being used for windows filepaths.
  • bugfix: app no longer crashes when sidebar is toggled.
  • -

    known remaining/confirmed issues:

    +

    known/confirmed remaining issues:

    diff --git a/resources/icons/maximise_off.svg b/resources/icons/maximise_off.svg index 99542c8..b8967f4 100644 --- a/resources/icons/maximise_off.svg +++ b/resources/icons/maximise_off.svg @@ -1,3 +1,3 @@ - + diff --git a/resources/icons/maximise_on.svg b/resources/icons/maximise_on.svg index b8967f4..99542c8 100644 --- a/resources/icons/maximise_on.svg +++ b/resources/icons/maximise_on.svg @@ -1,3 +1,3 @@ - + diff --git a/resources/tray.js b/resources/tray.js index 912c249..fae6be3 100644 --- a/resources/tray.js +++ b/resources/tray.js @@ -47,7 +47,6 @@ function enhancements() { contextMenu.getMenuItemById('startup').checked ? electron_1.app.setLoginItemSettings({ openAtLogin: true }) : electron_1.app.setLoginItemSettings({ openAtLogin: false }); - tray.setContextMenu(contextMenu); }, }, { @@ -57,7 +56,6 @@ function enhancements() { checked: store.openhidden, click: () => { store.openhidden = contextMenu.getMenuItemById('openhidden').checked; - tray.setContextMenu(contextMenu); }, }, { @@ -67,7 +65,6 @@ function enhancements() { checked: store.maximized, click: () => { store.maximized = contextMenu.getMenuItemById('maximized').checked; - tray.setContextMenu(contextMenu); }, }, { @@ -77,7 +74,6 @@ function enhancements() { checked: store.tray, click: () => { store.tray = contextMenu.getMenuItemById('tray').checked; - tray.setContextMenu(contextMenu); }, }, { @@ -88,7 +84,6 @@ function enhancements() { click: () => { store.theme = contextMenu.getMenuItemById('theme').checked; electron_1.BrowserWindow.getAllWindows().forEach((win) => win.reload()); - tray.setContextMenu(contextMenu); }, }, {