Hello community, here is the log from the commit of package eventviews for openSUSE:Factory checked in at 2019-10-22 16:42:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/eventviews (Old) and /work/SRC/openSUSE:Factory/.eventviews.new.2352 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "eventviews" Tue Oct 22 16:42:13 2019 rev:46 rq:739092 version:19.08.2 Changes: -------- --- /work/SRC/openSUSE:Factory/eventviews/eventviews.changes 2019-10-14 13:25:29.871900130 +0200 +++ /work/SRC/openSUSE:Factory/.eventviews.new.2352/eventviews.changes 2019-10-22 16:42:14.601651854 +0200 @@ -1,0 +2,6 @@ +Thu Oct 17 08:28:22 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Add 0001-month-monthscene.cpp-remove-comma-in-year-in-the-tit.patch + to fix a display bug in korganizer (kde#412833) + +------------------------------------------------------------------- New: ---- 0001-month-monthscene.cpp-remove-comma-in-year-in-the-tit.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ eventviews.spec ++++++ --- /var/tmp/diff_new_pack.Z4Xrku/_old 2019-10-22 16:42:15.061652344 +0200 +++ /var/tmp/diff_new_pack.Z4Xrku/_new 2019-10-22 16:42:15.065652348 +0200 @@ -32,6 +32,8 @@ Source1: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-UPSTREAM +Patch0: 0001-month-monthscene.cpp-remove-comma-in-year-in-the-tit.patch BuildRequires: akonadi-calendar-devel >= %{_kapp_version} BuildRequires: akonadi-server-devel BuildRequires: calendarsupport-devel @@ -68,7 +70,7 @@ %endif %prep -%setup -q +%autosetup -p1 %build %cmake_kf5 -d build ++++++ 0001-month-monthscene.cpp-remove-comma-in-year-in-the-tit.patch ++++++ >From a5c067fbc83c59d34166048a58fe12e5942f3e36 Mon Sep 17 00:00:00 2001 From: Allen Winter <[email protected]> Date: Tue, 15 Oct 2019 09:02:41 -0400 Subject: [PATCH] month/monthscene.cpp - remove comma in year (in the title) BUG: 412833 Differential Revision: https://phabricator.kde.org/D24638 --- src/month/monthscene.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/month/monthscene.cpp b/src/month/monthscene.cpp index f59444f..ad052c0 100644 --- a/src/month/monthscene.cpp +++ b/src/month/monthscene.cpp @@ -200,7 +200,7 @@ void MonthGraphicsView::drawBackground(QPainter *p, const QRectF &rect) Qt::AlignCenter, i18nc("monthname year", "%1 %2", QLocale::system().standaloneMonthName(mMonthView->averageDate().month()), - mMonthView->averageDate().year())); + QString::number(mMonthView->averageDate().year()))); font.setPointSize(dayLabelsHeight - 10); p->setFont(font); @@ -293,7 +293,7 @@ void MonthGraphicsView::drawBackground(QPainter *p, const QRectF &rect) } else { p->setBrush(color.lighter(140)); } - + bgGradient.setColorAt(1, color); p->setPen(Qt::NoPen); @@ -312,7 +312,7 @@ void MonthGraphicsView::drawBackground(QPainter *p, const QRectF &rect) } else { oldPen = palette().color(QPalette::WindowText).darker(150); } - + // Draw dates for (QDate d = mMonthView->actualStartDateTime().date(); -- 2.23.0
