Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package eventviews for openSUSE:Factory checked in at 2025-10-13 17:22:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/eventviews (Old) and /work/SRC/openSUSE:Factory/.eventviews.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "eventviews" Mon Oct 13 17:22:05 2025 rev:118 rq:1310071 version:25.08.2 Changes: -------- --- /work/SRC/openSUSE:Factory/eventviews/eventviews.changes 2025-09-11 14:40:27.506633176 +0200 +++ /work/SRC/openSUSE:Factory/.eventviews.new.18484/eventviews.changes 2025-10-13 17:23:15.573062117 +0200 @@ -1,0 +2,10 @@ +Tue Oct 7 18:48:42 UTC 2025 - Christophe Marin <[email protected]> + +- Update to 25.08.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/25.08.2/ +- Changes since 25.08.1: + * monthgraphicsitems.cpp - hard-set the icon height to 16 pixels (kde#509037) + +------------------------------------------------------------------- Old: ---- eventviews-25.08.1.tar.xz eventviews-25.08.1.tar.xz.sig New: ---- eventviews-25.08.2.tar.xz eventviews-25.08.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ eventviews.spec ++++++ --- /var/tmp/diff_new_pack.SHmmxj/_old 2025-10-13 17:23:16.777112578 +0200 +++ /var/tmp/diff_new_pack.SHmmxj/_new 2025-10-13 17:23:16.777112578 +0200 @@ -18,11 +18,11 @@ %define kf6_version 6.14.0 %define qt6_version 6.8.0 -%define kpim6_version 6.5.1 +%define kpim6_version 6.5.2 %bcond_without released Name: eventviews -Version: 25.08.1 +Version: 25.08.2 Release: 0 Summary: Eventviews Library License: GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ eventviews-25.08.1.tar.xz -> eventviews-25.08.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eventviews-25.08.1/CMakeLists.txt new/eventviews-25.08.2/CMakeLists.txt --- old/eventviews-25.08.1/CMakeLists.txt 2025-09-07 05:17:08.000000000 +0200 +++ new/eventviews-25.08.2/CMakeLists.txt 2025-10-06 14:17:41.000000000 +0200 @@ -1,7 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 # SPDX-FileCopyrightText: none cmake_minimum_required(VERSION 3.16 FATAL_ERROR) -set(PIM_VERSION "6.5.1") +set(PIM_VERSION "6.5.2") project(eventviews VERSION ${PIM_VERSION}) @@ -59,12 +59,12 @@ ) set(EVENTVIEW_LIB_VERSION ${PIM_VERSION}) -set(CALENDARUTILS_LIB_VERSION "6.5.1") -set(AKONADI_LIB_VERSION "6.5.1") -set(AKONADICALENDAR_LIB_VERSION "6.5.1") -set(KMIME_LIB_VERSION "6.5.1") -set(LIBKDEPIM_LIB_VERSION "6.5.1") -set(CALENDARSUPPORT_LIB_VERSION "6.5.1") +set(CALENDARUTILS_LIB_VERSION "6.5.2") +set(AKONADI_LIB_VERSION "6.5.2") +set(AKONADICALENDAR_LIB_VERSION "6.5.2") +set(KMIME_LIB_VERSION "6.5.2") +set(LIBKDEPIM_LIB_VERSION "6.5.2") +set(CALENDARSUPPORT_LIB_VERSION "6.5.2") find_package(KPim6Akonadi ${AKONADI_LIB_VERSION} CONFIG REQUIRED) find_package(Qt6 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eventviews-25.08.1/po/fi/libeventviews6.po new/eventviews-25.08.2/po/fi/libeventviews6.po --- old/eventviews-25.08.1/po/fi/libeventviews6.po 2025-09-07 05:17:08.000000000 +0200 +++ new/eventviews-25.08.2/po/fi/libeventviews6.po 2025-10-06 14:17:41.000000000 +0200 @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/eventviews-25.08.1/src/month/monthgraphicsitems.cpp new/eventviews-25.08.2/src/month/monthgraphicsitems.cpp --- old/eventviews-25.08.1/src/month/monthgraphicsitems.cpp 2025-09-07 05:17:08.000000000 +0200 +++ new/eventviews-25.08.2/src/month/monthgraphicsitems.cpp 2025-10-06 14:17:41.000000000 +0200 @@ -294,8 +294,8 @@ // update the rect, where the text will be displayed textRect.setLeft(curXPos + iconWidths); - // assume that all pixmaps have the same height - int const pixYPos = icons.isEmpty() ? 0 : (textRect.height() - icons.at(0).height()) / 2; + const int iconHeightMax = 16; // we always use 16x16 icons + int const pixYPos = icons.isEmpty() ? 0 : (textRect.height() - iconHeightMax) / 2; for (const QPixmap &icon : std::as_const(icons)) { p->drawPixmap(curXPos, pixYPos, icon); curXPos += icon.width();
