Improve size of checkboxes. Convert bullet '-' to actual unicode bullets
All checks were successful
CI / test (push) Successful in 3m30s
Lint / test (push) Successful in 27s
Trivy / test (push) Successful in 20s

This commit is contained in:
Miguel Jacq 2025-11-18 18:21:09 +11:00
parent a375be629c
commit 63cf561bfe
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
6 changed files with 431 additions and 11 deletions

View file

@ -30,7 +30,7 @@ def load_db_config() -> DBConfig:
legacy = s.value("db/path", "", type=str)
if legacy:
path_str = legacy
# Optional: migrate and clean up the old key
# migrate and clean up the old key
s.setValue("db/default_db", legacy)
s.remove("db/path")
path = Path(path_str) if path_str else _default_db_location()