Hello community, here is the log from the commit of package kguiaddons for openSUSE:Factory checked in at 2020-10-12 13:54:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kguiaddons (Old) and /work/SRC/openSUSE:Factory/.kguiaddons.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kguiaddons" Mon Oct 12 13:54:50 2020 rev:83 rq:840820 version:5.75.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kguiaddons/kguiaddons.changes 2020-09-18 14:40:51.803973587 +0200 +++ /work/SRC/openSUSE:Factory/.kguiaddons.new.3486/kguiaddons.changes 2020-10-12 13:56:26.278144131 +0200 @@ -1,0 +2,11 @@ +Mon Oct 5 08:33:12 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 5.75.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/kde-frameworks-5.75.0 +- Changes since 5.74.0: + * typo-- + * Const'ify pointer + initialize variable in header + +------------------------------------------------------------------- Old: ---- kguiaddons-5.74.0.tar.xz kguiaddons-5.74.0.tar.xz.sig New: ---- kguiaddons-5.75.0.tar.xz kguiaddons-5.75.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kguiaddons.spec ++++++ --- /var/tmp/diff_new_pack.da9C4a/_old 2020-10-12 13:56:27.102144475 +0200 +++ /var/tmp/diff_new_pack.da9C4a/_new 2020-10-12 13:56:27.102144475 +0200 @@ -17,7 +17,7 @@ %define lname libKF5GuiAddons5 -%define _tar_path 5.74 +%define _tar_path 5.75 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -25,7 +25,7 @@ # Only needed for the package signature condition %bcond_without lang Name: kguiaddons -Version: 5.74.0 +Version: 5.75.0 Release: 0 Summary: Utilities for graphical user interfaces License: LGPL-2.1-or-later ++++++ kguiaddons-5.74.0.tar.xz -> kguiaddons-5.75.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/CMakeLists.txt new/kguiaddons-5.75.0/CMakeLists.txt --- old/kguiaddons-5.74.0/CMakeLists.txt 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/CMakeLists.txt 2020-10-04 11:51:36.000000000 +0200 @@ -1,10 +1,10 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.74.0") # handled by release scripts +set(KF5_VERSION "5.75.0") # handled by release scripts project(KGuiAddons VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.74.0 NO_MODULE) +find_package(ECM 5.75.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/src/colors/kcolorcollection.h new/kguiaddons-5.75.0/src/colors/kcolorcollection.h --- old/kguiaddons-5.74.0/src/colors/kcolorcollection.h 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/src/colors/kcolorcollection.h 2020-10-04 11:51:36.000000000 +0200 @@ -26,7 +26,7 @@ * This class uses the "GIMP" palette file format. * * @author Waldo Bastian ([email protected]) - **/ + */ class KGUIADDONS_EXPORT KColorCollection { public: @@ -41,53 +41,53 @@ * KColorCollection constructor. Creates a KColorCollection from a file * the filename is derived from the name. * @param name The name of collection as returned by installedCollections() - **/ + */ explicit KColorCollection(const QString &name = QString()); /** * KColorCollection copy constructor. - **/ + */ KColorCollection(const KColorCollection &); /** * KColorCollection destructor. - **/ + */ ~KColorCollection(); /** * KColorCollection assignment operator - **/ + */ KColorCollection &operator=(const KColorCollection &); /** * Save the collection * * @return 'true' if successful - **/ + */ bool save(); /** * Get the description of the collection. * @return the description of the collection. - **/ + */ QString description() const; /** * Set the description of the collection. * @param desc the new description - **/ + */ void setDescription(const QString &desc); /** * Get the name of the collection. * @return the name of the collection - **/ + */ QString name() const; /** * Set the name of the collection. * @param name the name of the collection - **/ + */ void setName(const QString &name); /** @@ -103,26 +103,26 @@ /** * Returns whether the collection may be edited. * @return the state of the collection - **/ + */ Editable editable() const; /** * Change whether the collection may be edited. * @param editable the state of the collection - **/ + */ void setEditable(Editable editable); /** * Return the number of colors in the collection. * @return the number of colors - **/ + */ int count() const; /** * Find color by index. * @param index the index of the desired color * @return The @p index -th color of the collection, null if not found. - **/ + */ QColor color(int index) const; /** @@ -130,7 +130,7 @@ * @param color the color to find * @return The index of the color in the collection or -1 if the * color is not found. - **/ + */ int findColor(const QColor &color) const; /** @@ -139,7 +139,7 @@ * @return The name of the @p index -th color. * Note that not all collections have named the colors. Null is * returned if the color does not exist or has no name. - **/ + */ QString name(int index) const; /** @@ -148,7 +148,7 @@ * Note that not all collections have named the colors. * Note also that each collection can give the same color * a different name. - **/ + */ QString name(const QColor &color) const; /** @@ -157,7 +157,7 @@ * @param newColorName The name of the color, null to remove * the name. * @return The index of the added color. - **/ + */ int addColor(const QColor &newColor, const QString &newColorName = QString()); @@ -169,7 +169,7 @@ * the name. * @return The index of the new color or -1 if the color couldn't * be changed. - **/ + */ int changeColor(int index, const QColor &newColor, const QString &newColorName = QString()); @@ -182,7 +182,7 @@ * the name. * @return The index of the new color or -1 if the color couldn't * be changed. - **/ + */ int changeColor(const QColor &oldColor, const QColor &newColor, const QString &newColorName = QString()); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/src/text/kdatevalidator.cpp new/kguiaddons-5.75.0/src/text/kdatevalidator.cpp --- old/kguiaddons-5.74.0/src/text/kdatevalidator.cpp 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/src/text/kdatevalidator.cpp 2020-10-04 11:51:36.000000000 +0200 @@ -23,7 +23,7 @@ { } - KDateValidator *q; + KDateValidator *const q; }; KDateValidator::KDateValidator(QObject *parent) : QValidator(parent), d(nullptr) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/src/util/kcursorsaver.h new/kguiaddons-5.75.0/src/util/kcursorsaver.h --- old/kguiaddons-5.74.0/src/util/kcursorsaver.h 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/src/util/kcursorsaver.h 2020-10-04 11:51:36.000000000 +0200 @@ -10,19 +10,22 @@ #include <QCursor> +class KCursorSaverPrivate; + /** * @class KCursorSaver kcursorsaver.h KCursorSaver - * @short sets a cursor and makes sure it's restored on destruction + * + * @short Class to temporarily set a mouse cursor and restore the previous one on destruction + * * Create a KCursorSaver object when you want to set the cursor. * As soon as it gets out of scope, it will restore the original * cursor. * @code - KCursorSaver saver(KCursorSaver::busy()); + KCursorSaver saver(Qt::WaitCursor); ... long-running operation here ... @endcode * @since 5.73 */ -class KCursorSaverPrivate; class KGUIADDONS_EXPORT KCursorSaver { public: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/src/util/klocalimagecacheimpl.cpp new/kguiaddons-5.75.0/src/util/klocalimagecacheimpl.cpp --- old/kguiaddons-5.74.0/src/util/klocalimagecacheimpl.cpp 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/src/util/klocalimagecacheimpl.cpp 2020-10-04 11:51:36.000000000 +0200 @@ -26,7 +26,6 @@ KLocalImageCacheImplementationPrivate(QObject *parent = nullptr) : QObject(parent) , timestamp(QDateTime::currentDateTime()) - , enablePixmapCaching(true) { QObject::connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, this, &KLocalImageCacheImplementationPrivate::clearPixmaps); @@ -63,7 +62,7 @@ */ QCache<QString, QPixmap> pixmapCache; - bool enablePixmapCaching; + bool enablePixmapCaching = true; }; KLocalImageCacheImplementation::KLocalImageCacheImplementation(unsigned defaultCacheSize) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/src/util/kmodifierkeyinfo.h new/kguiaddons-5.75.0/src/util/kmodifierkeyinfo.h --- old/kguiaddons-5.74.0/src/util/kmodifierkeyinfo.h 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/src/util/kmodifierkeyinfo.h 2020-10-04 11:51:36.000000000 +0200 @@ -24,13 +24,13 @@ * state as well. * * It recognizes two states a key can be in: - * <ul><li><i>locked</i>: eg. caps-locked (aka toggled)</li> - * <li><i>latched</i>: the key is temporarily locked but will be unlocked upon - * the next keypress.</li></ul> + * @li @em locked: eg. caps-locked (a.k.a. toggled) + * @li @em latched the key is temporarily locked but will be unlocked upon + * the next keypress. * - * An application can either query the states synchronously (@see isKeyLatched, - * @see isKeyLocked) or connect to KModifierKeyInfo's signals to be notified about - * changes (@see keyLatched, @see keyLocked). + * An application can either query the states synchronously (isKeyLatched(), + * isKeyLocked()) or connect to KModifierKeyInfo's signals to be notified about + * changes (keyLatched(), keyLocked()). */ class KGUIADDONS_EXPORT KModifierKeyInfo : public QObject { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kguiaddons-5.74.0/src/util/urlhandler.cpp new/kguiaddons-5.75.0/src/util/urlhandler.cpp --- old/kguiaddons-5.74.0/src/util/urlhandler.cpp 2020-09-06 11:18:52.000000000 +0200 +++ new/kguiaddons-5.75.0/src/util/urlhandler.cpp 2020-10-04 11:51:36.000000000 +0200 @@ -42,7 +42,7 @@ QString docPath; if (appName == QLatin1String("systemsettings") && path.startsWith(QLatin1String("/kcontrol"))) { // special case for kcm modules - // e.g. "help:/kcontrol/fonts/index.html" >>> "&application=kcontorl/fonts" + // e.g. "help:/kcontrol/fonts/index.html" >>> "&application=kcontrol/fonts" docPath = path.remove(0, 1).remove(QLatin1String("/index.html")); } else { //e.g. "help:/okular", "help:/systemsettings" docPath = appName + QStringLiteral("&path=") + path;
