diff -ur rednotebook-2.29.5.orig/CHANGELOG.md rednotebook-2.29.6/CHANGELOG.md --- rednotebook-2.29.5.orig/CHANGELOG.md 2023-06-06 14:44:40.000000000 +0300 +++ rednotebook-2.29.6/CHANGELOG.md 2023-04-28 20:51:53.000000000 +0300 @@ -1,3 +1,6 @@ +# 2.29.6 (2023-04-28) +* Restore all keyboard shorts (#690, Jendrik Seipp). +* # 2.29.5 (2023-04-13) * Fix: Don't try to print WebKit2 version on Windows (#686, Jendrik Seipp). diff -ur rednotebook-2.29.5.orig/debian/changelog rednotebook-2.29.6/debian/changelog --- rednotebook-2.29.5.orig/debian/changelog 2023-06-06 14:44:40.000000000 +0300 +++ rednotebook-2.29.6/debian/changelog 2023-04-28 20:51:53.000000000 +0300 @@ -1,3 +1,10 @@ +rednotebook (2.29.6-1) UNRELEASED; urgency=low + + * New upstream release + * Restore all keyboard shorts (#690, Jendrik Seipp). + + -- Jendrik Seipp Fri, 28 Apr 2023 19:51:53 +0200 + rednotebook (2.29.5-1) UNRELEASED; urgency=low * New upstream release diff -ur rednotebook-2.29.5.orig/rednotebook/gui/menu.py rednotebook-2.29.6/rednotebook/gui/menu.py --- rednotebook-2.29.5.orig/rednotebook/gui/menu.py 2023-06-06 14:44:40.000000000 +0300 +++ rednotebook-2.29.6/rednotebook/gui/menu.py 2023-04-28 20:51:53.000000000 +0300 @@ -95,7 +95,7 @@ "New", None, _("New"), - "", + "n", _("Create a new journal. The old one will be saved"), self.on_new_journal_button_activate, ), @@ -103,16 +103,16 @@ "Open", None, _("Open"), - None, + "o", _("Load an existing journal. The old journal will be saved"), self.on_open_journal_button_activate, ), - ("Save", None, _("Save"), None, None, self.on_save_button_clicked), + ("Save", None, _("Save"), "s", None, self.on_save_button_clicked), ( "SaveAs", None, _("Save As"), - None, + "s", _( "Save journal at a new location. The old journal files will also be saved" ), @@ -148,7 +148,7 @@ "Quit", None, _("Quit"), - None, + "q", _("Shutdown RedNotebook. It will not be sent to the tray."), self.main_window.on_quit_activate, ), @@ -169,12 +169,19 @@ _("Redo text or tag edits"), self.on_redo, ), - ("Cut", None, _("Cut"), "", None, self.on_cut_menu_item_activate), + ( + "Cut", + None, + _("Cut"), + "x", + None, + self.on_cut_menu_item_activate, + ), ( "Copy", None, _("Copy"), - "", + "c", None, self.on_copy_menu_item_activate, ), @@ -182,7 +189,7 @@ "Paste", None, _("Paste"), - "", + "v", None, self.on_paste_menu_item_activate, ), @@ -198,7 +205,7 @@ "Find", None, _("Find"), - None, + "f", None, self.on_find_menuitem_activate, ), diff -ur rednotebook-2.29.5.orig/rednotebook/help.py rednotebook-2.29.6/rednotebook/help.py --- rednotebook-2.29.5.orig/rednotebook/help.py 2023-06-06 14:44:40.000000000 +0300 +++ rednotebook-2.29.6/rednotebook/help.py 2023-04-28 20:51:53.000000000 +0300 @@ -423,7 +423,7 @@ | Bold | + B | | Italic | + I | | Monospace | + M | -| Underline | + I | +| Underline | + U | | Strikethrough | + K | | Remove format | + R | diff -ur rednotebook-2.29.5.orig/rednotebook/info.py rednotebook-2.29.6/rednotebook/info.py --- rednotebook-2.29.5.orig/rednotebook/info.py 2023-06-06 14:44:40.000000000 +0300 +++ rednotebook-2.29.6/rednotebook/info.py 2023-04-28 20:51:53.000000000 +0300 @@ -28,7 +28,7 @@ program_name = "RedNotebook" tagline = _("A Desktop Journal") -version = "2.29.5" +version = "2.29.6" author = "Jendrik Seipp" author_mail = "jendrikseipp@gmail.com" copyright_ = "Copyright (c) 2008-2022 Jendrik Seipp"