bouquin 0.1.5__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bouquin might be problematic. Click here for more details.
- {bouquin-0.1.5 → bouquin-0.1.6}/PKG-INFO +2 -1
- {bouquin-0.1.5 → bouquin-0.1.6}/README.md +1 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/history_dialog.py +2 -2
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/main_window.py +2 -2
- {bouquin-0.1.5 → bouquin-0.1.6}/pyproject.toml +1 -1
- {bouquin-0.1.5 → bouquin-0.1.6}/LICENSE +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/__init__.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/__main__.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/db.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/editor.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/key_prompt.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/main.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/save_dialog.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/search.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/settings.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/settings_dialog.py +0 -0
- {bouquin-0.1.5 → bouquin-0.1.6}/bouquin/toolbar.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bouquin
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher.
|
|
5
5
|
Home-page: https://git.mig5.net/mig5/bouquin
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -42,6 +42,7 @@ There is deliberately no network connectivity or syncing intended.
|
|
|
42
42
|
* Data is encrypted at rest
|
|
43
43
|
* Encryption key is prompted for and never stored, unless user chooses to via Settings
|
|
44
44
|
* Every 'page' is linked to the calendar day
|
|
45
|
+
* All changes are version controlled, with ability to view/diff versions and revert
|
|
45
46
|
* Text is HTML with basic styling
|
|
46
47
|
* Search
|
|
47
48
|
* Automatic periodic saving (or explicitly save)
|
|
@@ -22,6 +22,7 @@ There is deliberately no network connectivity or syncing intended.
|
|
|
22
22
|
* Data is encrypted at rest
|
|
23
23
|
* Encryption key is prompted for and never stored, unless user chooses to via Settings
|
|
24
24
|
* Every 'page' is linked to the calendar day
|
|
25
|
+
* All changes are version controlled, with ability to view/diff versions and revert
|
|
25
26
|
* Text is HTML with basic styling
|
|
26
27
|
* Search
|
|
27
28
|
* Automatic periodic saving (or explicitly save)
|
|
@@ -77,14 +77,14 @@ class HistoryDialog(QDialog):
|
|
|
77
77
|
self.list.currentItemChanged.connect(self._on_select)
|
|
78
78
|
top.addWidget(self.list, 1)
|
|
79
79
|
|
|
80
|
-
# Right: tabs (Preview / Diff
|
|
80
|
+
# Right: tabs (Preview / Diff)
|
|
81
81
|
self.tabs = QTabWidget()
|
|
82
82
|
self.preview = QTextBrowser()
|
|
83
83
|
self.preview.setOpenExternalLinks(True)
|
|
84
84
|
self.diff = QTextBrowser()
|
|
85
85
|
self.diff.setOpenExternalLinks(False)
|
|
86
86
|
self.tabs.addTab(self.preview, "Preview")
|
|
87
|
-
self.tabs.addTab(self.diff, "Diff
|
|
87
|
+
self.tabs.addTab(self.diff, "Diff")
|
|
88
88
|
self.tabs.setMinimumSize(500, 650)
|
|
89
89
|
top.addWidget(self.tabs, 2)
|
|
90
90
|
|
|
@@ -210,14 +210,14 @@ class MainWindow(QMainWindow):
|
|
|
210
210
|
# Navigate menu with next/previous/today
|
|
211
211
|
nav_menu = mb.addMenu("&Navigate")
|
|
212
212
|
act_prev = QAction("Previous Day", self)
|
|
213
|
-
act_prev.setShortcut("Ctrl
|
|
213
|
+
act_prev.setShortcut("Ctrl+<")
|
|
214
214
|
act_prev.setShortcutContext(Qt.ApplicationShortcut)
|
|
215
215
|
act_prev.triggered.connect(lambda: self._adjust_day(-1))
|
|
216
216
|
nav_menu.addAction(act_prev)
|
|
217
217
|
self.addAction(act_prev)
|
|
218
218
|
|
|
219
219
|
act_next = QAction("Next Day", self)
|
|
220
|
-
act_next.setShortcut("Ctrl
|
|
220
|
+
act_next.setShortcut("Ctrl+>")
|
|
221
221
|
act_next.setShortcutContext(Qt.ApplicationShortcut)
|
|
222
222
|
act_next.triggered.connect(lambda: self._adjust_day(1))
|
|
223
223
|
nav_menu.addAction(act_next)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|