Hello community, here is the log from the commit of package kde-print-manager for openSUSE:Factory checked in at 2015-10-19 22:38:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kde-print-manager (Old) and /work/SRC/openSUSE:Factory/.kde-print-manager.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kde-print-manager" Changes: -------- --- /work/SRC/openSUSE:Factory/kde-print-manager/kde-print-manager.changes 2015-10-03 20:29:10.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kde-print-manager.new/kde-print-manager.changes 2015-10-19 22:38:35.000000000 +0200 @@ -1,0 +2,8 @@ +Sun Oct 11 13:20:46 UTC 2015 - [email protected] + +- Update to KDE Applications 15.08.2 + * KDE Applications 15.08.2 + * https://www.kde.org/announcements/announce-applications-15.08.2.php + + +------------------------------------------------------------------- Old: ---- print-manager-15.08.1.tar.xz New: ---- print-manager-15.08.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kde-print-manager.spec ++++++ --- /var/tmp/diff_new_pack.LkqiWG/_old 2015-10-19 22:38:36.000000000 +0200 +++ /var/tmp/diff_new_pack.LkqiWG/_new 2015-10-19 22:38:36.000000000 +0200 @@ -21,7 +21,7 @@ Summary: A new print manager for KDE License: GPL-2.0+ Group: System/GUI/KDE -Version: 15.08.1 +Version: 15.08.2 Release: 0 Source: print-manager-%{version}.tar.xz BuildRequires: cups ++++++ print-manager-15.08.1.tar.xz -> print-manager-15.08.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/print-manager-15.08.1/add-printer/org.kde.AddPrinter.desktop new/print-manager-15.08.2/add-printer/org.kde.AddPrinter.desktop --- old/print-manager-15.08.1/add-printer/org.kde.AddPrinter.desktop 2015-07-31 14:05:50.000000000 +0200 +++ new/print-manager-15.08.2/add-printer/org.kde.AddPrinter.desktop 2015-09-30 13:08:34.000000000 +0200 @@ -45,6 +45,7 @@ Comment[it]=Strumento per aggiungere nuove stampanti Comment[ko]=새 프린터 추가 도구 Comment[nl]=Hulpmiddel voor het toevoegen van nieuwe printers +Comment[nn]=Verktøy for å leggja til nye skrivarar Comment[pl]=Narzędzie do dodawania nowych drukarek Comment[pt]=Ferramenta para adicionar novas impressoras Comment[pt_BR]=Ferramenta para adicionar novas impressoras diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/print-manager-15.08.1/libkcups/KCupsConnection.cpp new/print-manager-15.08.2/libkcups/KCupsConnection.cpp --- old/print-manager-15.08.1/libkcups/KCupsConnection.cpp 2015-07-31 14:05:50.000000000 +0200 +++ new/print-manager-15.08.2/libkcups/KCupsConnection.cpp 2015-09-30 13:08:34.000000000 +0200 @@ -433,24 +433,38 @@ { QString event = eventForSignal(signal); if (!event.isNull()) { - m_connectedEvents << event; - QMetaObject::invokeMethod(m_subscriptionTimer, - "start", - Qt::QueuedConnection); + QMetaObject::invokeMethod(this, + "connectNotifyQueued", + Qt::QueuedConnection), + Q_ARG(QString, event); } } +void KCupsConnection::connectNotifyQueued(const QString& event) +{ + m_connectedEvents << event; + m_subscriptionTimer->start(); +} + + void KCupsConnection::disconnectNotify(const QMetaMethod & signal) { QString event = eventForSignal(signal); if (!event.isNull()) { - m_connectedEvents.removeOne(event); - QMetaObject::invokeMethod(m_subscriptionTimer, - "start", - Qt::QueuedConnection); + QMetaObject::invokeMethod(this, + "disconnectNotifyQueued", + Qt::QueuedConnection), + Q_ARG(QString, event); } } +void KCupsConnection::disconnectNotifyQueued(const QString& event) +{ + m_connectedEvents.removeOne(event); + m_subscriptionTimer->start(); +} + + QString KCupsConnection::eventForSignal(const QMetaMethod & signal) const { // Server signals diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/print-manager-15.08.1/libkcups/KCupsConnection.h new/print-manager-15.08.2/libkcups/KCupsConnection.h --- old/print-manager-15.08.1/libkcups/KCupsConnection.h 2015-07-31 14:05:50.000000000 +0200 +++ new/print-manager-15.08.2/libkcups/KCupsConnection.h 2015-09-30 13:08:34.000000000 +0200 @@ -371,6 +371,10 @@ void renewDBusSubscription(); void cancelDBusSubscription(); + void connectNotifyQueued(const QString& event); + void disconnectNotifyQueued(const QString &event); + + protected: virtual void connectNotify(const QMetaMethod & signal) Q_DECL_OVERRIDE; virtual void disconnectNotify(const QMetaMethod & signal) Q_DECL_OVERRIDE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/print-manager-15.08.1/plasmoid/package/metadata.desktop new/print-manager-15.08.2/plasmoid/package/metadata.desktop --- old/print-manager-15.08.1/plasmoid/package/metadata.desktop 2015-07-31 14:05:50.000000000 +0200 +++ new/print-manager-15.08.2/plasmoid/package/metadata.desktop 2015-09-30 13:08:34.000000000 +0200 @@ -29,6 +29,7 @@ Name[nb]=Skrivere Name[nds]=Druckers Name[nl]=Printers +Name[nn]=Skrivarar Name[oc]=Estampairas Name[pa]=ਪਰਿੰਟਰ Name[pl]=Drukarki diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/print-manager-15.08.1/printer-manager-kcm/PrinterDescription.cpp new/print-manager-15.08.2/printer-manager-kcm/PrinterDescription.cpp --- old/print-manager-15.08.1/printer-manager-kcm/PrinterDescription.cpp 2015-07-31 14:05:50.000000000 +0200 +++ new/print-manager-15.08.2/printer-manager-kcm/PrinterDescription.cpp 2015-09-30 13:08:34.000000000 +0200 @@ -40,6 +40,7 @@ QWidget(parent), ui(new Ui::PrinterDescription), m_isClass(false), + m_globalShared(false), m_markerChangeTime(0) { ui->setupUi(this); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/print-manager-15.08.1/printer-manager-kcm/kcm_printer_manager.desktop new/print-manager-15.08.2/printer-manager-kcm/kcm_printer_manager.desktop --- old/print-manager-15.08.1/printer-manager-kcm/kcm_printer_manager.desktop 2015-07-31 14:05:50.000000000 +0200 +++ new/print-manager-15.08.2/printer-manager-kcm/kcm_printer_manager.desktop 2015-09-30 13:08:34.000000000 +0200 @@ -40,6 +40,7 @@ Name[nb]=Skrivere Name[nds]=Druckers Name[nl]=Printers +Name[nn]=Skrivarar Name[oc]=Estampairas Name[pa]=ਪਰਿੰਟਰ Name[pl]=Drukarki @@ -90,6 +91,7 @@ Comment[nb]=Sett opp skrivere Comment[nds]=Dien Druckers inrichten Comment[nl]=Uw printers instellen +Comment[nn]=Set opp skrivarar Comment[pa]=ਆਪਣੇ ਪਰਿੰਟਰਾਂ ਦੀ ਸੰਰਚਨਾ ਕਰੋ Comment[pl]=Ustaw swoje drukarki Comment[pt]=Configurar as suas impressoras
