Compare commits

..

No commits in common. "535a3806169ff3beda05db69d079d7f8f8dcbb44" and "7d58acfc7d266fd6c3ee7dd579245069d7f4987d" have entirely different histories.

3 changed files with 1 additions and 6 deletions

View file

@ -3,7 +3,6 @@
* Add + button to time log widget in side bar to have a simplified log entry dialog (without summary or report option)
* Allow click-and-drag mouse select on lines with checkbox, to capture the checkbox as well as the text.
* Allow changing the date when logging time (rather than having to go to that date before clicking on adding time log/opening time log manager)
* Ensure time log reports have an extension
# 0.5.4

View file

@ -1076,8 +1076,6 @@ class TimeReportDialog(QDialog):
)
if not filename:
return
if not filename.endswith(".csv"):
filename = f"{filename}.csv"
try:
with open(filename, "w", newline="", encoding="utf-8") as f:
@ -1126,8 +1124,6 @@ class TimeReportDialog(QDialog):
)
if not filename:
return
if not filename.endswith(".pdf"):
filename = f"{filename}.pdf"
# ---------- Build chart image (hours per period) ----------
per_period_minutes: dict[str, int] = defaultdict(int)

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "bouquin"
version = "0.5.5"
version = "0.5.4"
description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher."
authors = ["Miguel Jacq <mig@mig5.net>"]
readme = "README.md"