From d809244cf8362c2b0d44a943adb048c2107b4700 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Fri, 12 Dec 2025 14:36:27 +1100 Subject: [PATCH] Invoicing should not be enabled by default --- CHANGELOG.md | 1 + bouquin/settings.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e406ed..a27c654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ * Reduce the scope for toggling a checkbox on/off when not clicking precisely on it (must be to the left of the first letter) * Moving unchecked TODO items to the next weekday now brings across the header that was above it, if present + * Invoicing should not be enabled by default # 0.7.0 diff --git a/bouquin/settings.py b/bouquin/settings.py index 5a14c07..2aaf5de 100644 --- a/bouquin/settings.py +++ b/bouquin/settings.py @@ -46,7 +46,7 @@ def load_db_config() -> DBConfig: time_log = s.value("ui/time_log", True, type=bool) reminders = s.value("ui/reminders", True, type=bool) documents = s.value("ui/documents", True, type=bool) - invoicing = s.value("ui/invoicing", True, type=bool) + invoicing = s.value("ui/invoicing", False, type=bool) locale = s.value("ui/locale", "en", type=str) font_size = s.value("ui/font_size", 11, type=int) return DBConfig(