View | Details | Raw Unified | Return to bug 46404
Collapse All | Expand All

(-)rednotebook-2.29.5.orig/CHANGELOG.md (+3 lines)
Lines 1-3 Link Here
1
# 2.29.6 (2023-04-28)
2
* Restore all keyboard shorts (#690, Jendrik Seipp).
3
*
1
# 2.29.5 (2023-04-13)
4
# 2.29.5 (2023-04-13)
2
* Fix: Don't try to print WebKit2 version on Windows (#686, Jendrik Seipp).
5
* Fix: Don't try to print WebKit2 version on Windows (#686, Jendrik Seipp).
3
6
(-)rednotebook-2.29.5.orig/debian/changelog (+7 lines)
Lines 1-3 Link Here
1
rednotebook (2.29.6-1) UNRELEASED; urgency=low
2
3
  * New upstream release
4
  * Restore all keyboard shorts (#690, Jendrik Seipp).
5
6
 -- Jendrik Seipp <jendrikseipp@web.de>  Fri, 28 Apr 2023 19:51:53 +0200
7
1
rednotebook (2.29.5-1) UNRELEASED; urgency=low
8
rednotebook (2.29.5-1) UNRELEASED; urgency=low
2
9
3
  * New upstream release
10
  * New upstream release
(-)rednotebook-2.29.5.orig/rednotebook/gui/menu.py (-9 / +16 lines)
Lines 95-101 Link Here
95
                    "New",
95
                    "New",
96
                    None,
96
                    None,
97
                    _("New"),
97
                    _("New"),
98
                    "",
98
                    "<Ctrl>n",
99
                    _("Create a new journal. The old one will be saved"),
99
                    _("Create a new journal. The old one will be saved"),
100
                    self.on_new_journal_button_activate,
100
                    self.on_new_journal_button_activate,
101
                ),
101
                ),
Lines 103-118 Link Here
103
                    "Open",
103
                    "Open",
104
                    None,
104
                    None,
105
                    _("Open"),
105
                    _("Open"),
106
                    None,
106
                    "<Ctrl>o",
107
                    _("Load an existing journal. The old journal will be saved"),
107
                    _("Load an existing journal. The old journal will be saved"),
108
                    self.on_open_journal_button_activate,
108
                    self.on_open_journal_button_activate,
109
                ),
109
                ),
110
                ("Save", None, _("Save"), None, None, self.on_save_button_clicked),
110
                ("Save", None, _("Save"), "<Ctrl>s", None, self.on_save_button_clicked),
111
                (
111
                (
112
                    "SaveAs",
112
                    "SaveAs",
113
                    None,
113
                    None,
114
                    _("Save As"),
114
                    _("Save As"),
115
                    None,
115
                    "<Ctrl><Shift>s",
116
                    _(
116
                    _(
117
                        "Save journal at a new location. The old journal files will also be saved"
117
                        "Save journal at a new location. The old journal files will also be saved"
118
                    ),
118
                    ),
Lines 148-154 Link Here
148
                    "Quit",
148
                    "Quit",
149
                    None,
149
                    None,
150
                    _("Quit"),
150
                    _("Quit"),
151
                    None,
151
                    "<Ctrl>q",
152
                    _("Shutdown RedNotebook. It will not be sent to the tray."),
152
                    _("Shutdown RedNotebook. It will not be sent to the tray."),
153
                    self.main_window.on_quit_activate,
153
                    self.main_window.on_quit_activate,
154
                ),
154
                ),
Lines 169-180 Link Here
169
                    _("Redo text or tag edits"),
169
                    _("Redo text or tag edits"),
170
                    self.on_redo,
170
                    self.on_redo,
171
                ),
171
                ),
172
                ("Cut", None, _("Cut"), "", None, self.on_cut_menu_item_activate),
172
                (
173
                    "Cut",
174
                    None,
175
                    _("Cut"),
176
                    "<Ctrl>x",
177
                    None,
178
                    self.on_cut_menu_item_activate,
179
                ),
173
                (
180
                (
174
                    "Copy",
181
                    "Copy",
175
                    None,
182
                    None,
176
                    _("Copy"),
183
                    _("Copy"),
177
                    "",
184
                    "<Ctrl>c",
178
                    None,
185
                    None,
179
                    self.on_copy_menu_item_activate,
186
                    self.on_copy_menu_item_activate,
180
                ),
187
                ),
Lines 182-188 Link Here
182
                    "Paste",
189
                    "Paste",
183
                    None,
190
                    None,
184
                    _("Paste"),
191
                    _("Paste"),
185
                    "",
192
                    "<Ctrl>v",
186
                    None,
193
                    None,
187
                    self.on_paste_menu_item_activate,
194
                    self.on_paste_menu_item_activate,
188
                ),
195
                ),
Lines 198-204 Link Here
198
                    "Find",
205
                    "Find",
199
                    None,
206
                    None,
200
                    _("Find"),
207
                    _("Find"),
201
                    None,
208
                    "<Ctrl>f",
202
                    None,
209
                    None,
203
                    self.on_find_menuitem_activate,
210
                    self.on_find_menuitem_activate,
204
                ),
211
                ),
(-)rednotebook-2.29.5.orig/rednotebook/help.py (-1 / +1 lines)
Lines 423-429 Link Here
423
| Bold                  | <Ctrl> + B             |
423
| Bold                  | <Ctrl> + B             |
424
| Italic                | <Ctrl> + I             |
424
| Italic                | <Ctrl> + I             |
425
| Monospace             | <Ctrl> + M             |
425
| Monospace             | <Ctrl> + M             |
426
| Underline             | <Ctrl> + I             |
426
| Underline             | <Ctrl> + U             |
427
| Strikethrough         | <Ctrl> + K             |
427
| Strikethrough         | <Ctrl> + K             |
428
| Remove format         | <Ctrl> + R             |
428
| Remove format         | <Ctrl> + R             |
429
429
(-)rednotebook-2.29.5.orig/rednotebook/info.py (-1 / +1 lines)
Lines 28-34 Link Here
28
28
29
program_name = "RedNotebook"
29
program_name = "RedNotebook"
30
tagline = _("A Desktop Journal")
30
tagline = _("A Desktop Journal")
31
version = "2.29.5"
31
version = "2.29.6"
32
author = "Jendrik Seipp"
32
author = "Jendrik Seipp"
33
author_mail = "jendrikseipp@gmail.com"
33
author_mail = "jendrikseipp@gmail.com"
34
copyright_ = "Copyright (c) 2008-2022 Jendrik Seipp"
34
copyright_ = "Copyright (c) 2008-2022 Jendrik Seipp"

Return to bug 46404