From 86bc4ac606ed4377f793a4f53b5e7b130810b706 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Sat, 15 Aug 2020 08:57:26 -0700 Subject: [PATCH] Fix Welcome page calculcation of number of days since last import --- Htmldocs/release_notes.html | 1 + oscar/welcome.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index 81f1be2b..cabb8fdd 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -37,6 +37,7 @@
  • [fix] Popout graphs now limited to desktop height and multiple popout graphs work better.
  • [fix] Overview tooltips now list chart components in same order as displayed in chart.
  • [fix] Overview graphs now show last day on charts for timezones near GMT.
  • +
  • [fix] Welcome page calculation of days since last import fixed.
  • Changes and fixes in OSCAR v1.1.1 diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 93a5c2ee..1b165a90 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -179,7 +179,7 @@ QString Welcome::GenerateCPAPHTML() QString daystring; if (daysto == 1) daystring += tr("last night"); else if (daysto == 2) daystring += tr("1 day ago"); - else daystring += tr("%2 days ago").arg(date.daysTo(QDate::currentDate())); + else daystring += tr("%2 days ago").arg(daysto-1); html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "
    ";