Hello community,

here is the log from the commit of package kactivities4 for openSUSE:Factory 
checked in at 2013-12-02 12:31:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivities4 (Old)
 and      /work/SRC/openSUSE:Factory/.kactivities4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kactivities4"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities4/kactivities4.changes        
2013-10-03 15:49:43.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kactivities4.new/kactivities4.changes   
2013-12-02 12:31:02.000000000 +0100
@@ -1,0 +2,21 @@
+Sat Nov 16 17:47:39 UTC 2013 - [email protected]
+
+- Update to 4.11.90
+   * KDE 4.12 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.12-beta2.php
+
+-------------------------------------------------------------------
+Sat Nov  9 22:48:10 UTC 2013 - [email protected]
+
+- Update to 4.11.80
+   * KDE 4.12 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.12-beta1.php
+
+-------------------------------------------------------------------
+Sat Nov  2 15:00:52 UTC 2013 - [email protected]
+
+- Update to 4.11.3
+   * KDE 4.11.3 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.3.php
+
+-------------------------------------------------------------------

Old:
----
  kactivities-4.11.2.tar.xz

New:
----
  kactivities-4.11.90.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kactivities4.spec ++++++
--- /var/tmp/diff_new_pack.sHrjFY/_old  2013-12-02 12:31:03.000000000 +0100
+++ /var/tmp/diff_new_pack.sHrjFY/_new  2013-12-02 12:31:03.000000000 +0100
@@ -18,7 +18,7 @@
 
 
 Name:           kactivities4
-Version:        4.11.2
+Version:        4.11.90
 Release:        0
 Summary:        KDE Plasma Activities support
 License:        GPL-2.0+ and LGPL-2.1+

++++++ kactivities-4.11.2.tar.xz -> kactivities-4.11.90.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-4.11.2/src/service/Activities.cpp 
new/kactivities-4.11.90/src/service/Activities.cpp
--- old/kactivities-4.11.2/src/service/Activities.cpp   2013-08-28 
18:57:16.000000000 +0200
+++ new/kactivities-4.11.90/src/service/Activities.cpp  2013-10-26 
18:46:08.000000000 +0200
@@ -125,8 +125,6 @@
     using namespace Jobs;
     using namespace Jobs::General;
 
-    DEFINE_ORDERED_SCHEDULER(setCurrentActivityJob);
-
     // If the activity is empty, this means we are entering a limbo state
     if (activity.isEmpty()) {
         currentActivity.clear();
@@ -143,13 +141,7 @@
     q->StartActivity(activity);
 
     //   - change the current activity and signal the change
-
-    setCurrentActivityJob
-
-    <<  // Change the activity
-        General::call(this, "emitCurrentActivityChanged", activity);
-
-    setCurrentActivityJob.start();
+    emitCurrentActivityChanged(activity);
 
     return true;
 }
@@ -213,26 +205,11 @@
 void Activities::RemoveActivity(const QString & activity)
 {
     // Sanity checks
-    if (!d->activities.contains(activity)) return;
-
-    DEFINE_ORDERED_SCHEDULER(removeActivityJob);
-
-    using namespace Jobs;
-    using namespace Jobs::General;
-
-    //   - stop
-    //   - if it was current, switch to a running activity
-    //   - remove from configs
-    //   - signal the event
-
-    removeActivityJob
-
-    <<  // Remove activity
-        // TODO: Leaving the operator->() call so that no one is able to
-        // miss out the fact that we are passing a raw pointer to d!
-        General::call(d.operator->(), "removeActivity", activity, true /* wait 
finished */);
+    if (!d->activities.contains(activity)) {
+        return;
+    }
 
-    removeActivityJob.start();
+    d->removeActivity(activity);
 }
 
 void Activities::Private::removeActivity(const QString & activity)
@@ -288,28 +265,23 @@
 
 void Activities::Private::scheduleConfigSync(const bool soon)
 {
-    static val shortInterval = 5 * 1000;
-    static val longInterval  = 2 * 60 * 1000;
+    static const auto shortInterval = 1000;
+    static const auto longInterval = 2 * 60 * 1000;
 
-    // short interval has priority to the long one
-    if (soon) {
-        if (configSyncTimer.interval() != shortInterval) {
-            // always change to shortInterval if the current one is 
longInterval.
-            configSyncTimer.stop();
-            configSyncTimer.setInterval(shortInterval);
-        }
-    } else if (configSyncTimer.interval() != longInterval && 
!configSyncTimer.isActive()) {
-        configSyncTimer.setInterval(longInterval);
-    }
-
-    if (!configSyncTimer.isActive()) {
-        configSyncTimer.start();
+    // If the timer is not running, or has a longer interval than we need,
+    // start it
+    if ((soon && configSyncTimer.interval() > shortInterval)
+            || !configSyncTimer.isActive()) {
+
+        QMetaObject::invokeMethod(
+            &configSyncTimer, "start", Qt::QueuedConnection,
+            Q_ARG(int, soon ? shortInterval : longInterval));
     }
 }
 
 void Activities::Private::configSync()
 {
-    configSyncTimer.stop();
+    QMetaObject::invokeMethod(&configSyncTimer, "stop", Qt::QueuedConnection);
     config.sync();
 }
 
@@ -362,7 +334,7 @@
 
     d->activitiesConfig().writeEntry(activity, name);
 
-    d->scheduleConfigSync();
+    d->scheduleConfigSync(true);
 
     emit ActivityNameChanged(activity, name);
     emit ActivityChanged(activity);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/files/activitymanager-plugin.desktop 
new/kactivities-4.11.90/src/service/files/activitymanager-plugin.desktop
--- old/kactivities-4.11.2/src/service/files/activitymanager-plugin.desktop     
2013-08-28 18:57:16.000000000 +0200
+++ new/kactivities-4.11.90/src/service/files/activitymanager-plugin.desktop    
2013-10-26 18:46:08.000000000 +0200
@@ -45,6 +45,7 @@
 Comment[sr@latin]=Priključak menadžera aktivnosti
 Comment[sv]=Insticksprogram för aktivitetshantering
 Comment[tr]=Etkinlik yöneticisi eklentisi
+Comment[ug]=پائالىيەت باشقۇرغۇچ قىستۇرمىسى
 Comment[uk]=Додаток керування просторами дій
 Comment[x-test]=xxActivity manager pluginxx
 Comment[zh_CN]=活动管理器插件
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/plugins/activityranking/activitymanager-plugin-activityranking.desktop
 
new/kactivities-4.11.90/src/service/plugins/activityranking/activitymanager-plugin-activityranking.desktop
--- 
old/kactivities-4.11.2/src/service/plugins/activityranking/activitymanager-plugin-activityranking.desktop
   2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/service/plugins/activityranking/activitymanager-plugin-activityranking.desktop
  2013-10-26 18:46:08.000000000 +0200
@@ -38,6 +38,7 @@
 Name[sr@latin]=Rangiranje aktivnosti
 Name[sv]=Aktivitetsrankning
 Name[tr]=Etkinlik sıralaması
+Name[ug]=پائالىيەت قاتارى
 Name[uk]=Оцінювання просторів дій
 Name[x-test]=xxActivity rankingxx
 Name[zh_CN]=活动评分
@@ -80,6 +81,7 @@
 Comment[sr@latin]=Priključak za rangiranje aktivnosti na osnovu upotrebe
 Comment[sv]=Insticksprogram för rankning av aktiviteter baserat på användning
 Comment[tr]=Etkinlikleri kullanımlarına göre sıralama eklentisi
+Comment[ug]=پائالىيەت قاتارى ئاساسىدا ئىشلىتىدىغان قىستۇرما
 Comment[uk]=Додаток для оцінювання просторів дій на основі даних щодо 
використання
 Comment[x-test]=xxPlugin to rank activities based on usagexx
 Comment[zh_CN]=根据使用情况对活动评分的插件
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/plugins/globalshortcuts/activitymanager-plugin-globalshortcuts.desktop
 
new/kactivities-4.11.90/src/service/plugins/globalshortcuts/activitymanager-plugin-globalshortcuts.desktop
--- 
old/kactivities-4.11.2/src/service/plugins/globalshortcuts/activitymanager-plugin-globalshortcuts.desktop
   2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/service/plugins/globalshortcuts/activitymanager-plugin-globalshortcuts.desktop
  2013-10-26 18:46:08.000000000 +0200
@@ -39,6 +39,7 @@
 Name[sr@latin]=Globalne prečice
 Name[sv]=Globala genvägar
 Name[tr]=Genel Kısayollar
+Name[ug]=ئومۇمىيەت تېزلەتمە
 Name[uk]=Загальні клавіатурні скорочення
 Name[x-test]=xxGlobal Shortcutsxx
 Name[zh_CN]=全局快捷键
@@ -81,6 +82,7 @@
 Comment[sr@latin]=Dodaje globalne prečice sa tastature za menjanje aktivnosti
 Comment[sv]=Lägger till globala snabbtangenter för aktivitetsbyte
 Comment[tr]=Etkinlik geçişi için genel klavye kısayolları ekler
+Comment[ug]=پائالىيەت ئالماشتۇرۇش ئۈچۈن ئومۇمىيەت ھەرپتاختا قىسقا يوللىرىنى 
قوشىدۇ
 Comment[uk]=Додає загальні клавіатурні скорочення для перемикання просторів дій
 Comment[x-test]=xxAdds global keyboard shortcuts for activity switchingxx
 Comment[zh_CN]=为活动切换添加全局键盘快捷键
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
 
new/kactivities-4.11.90/src/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
--- 
old/kactivities-4.11.2/src/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
   2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/service/plugins/nepomuk/activitymanager-plugin-nepomuk.desktop
  2013-10-26 18:46:08.000000000 +0200
@@ -2,6 +2,7 @@
 Name=Nepomuk Feeder
 Name[bs]=Nepomuk Feeder
 Name[ca]=Alimentador del Nepomuk
+Name[ca@valencia]=Alimentador del Nepomuk
 Name[da]=Nepomuk-feeder
 Name[de]=Nepomuk Feeder
 Name[el]=Τροφοδότης του Nepomuk
@@ -33,6 +34,7 @@
 Name[sr@latin]=Nepomukov uvodnik
 Name[sv]=Nepomuk-inmatning
 Name[tr]=Nepomuk Besleyici
+Name[ug]=Nepomuk Feeder
 Name[uk]=Додаток передавання даних Nepomuk
 Name[x-test]=xxNepomuk Feederxx
 Name[zh_CN]=Nepomuk 采集器
@@ -40,6 +42,7 @@
 Comment=Plugin to synchronize data with Nepomuk
 Comment[bs]=Dodatak za sinhronizaciju podataka s Nepomuk-om
 Comment[ca]=Connector per sincronitzar dades amb el Nepomuk
+Comment[ca@valencia]=Connector per sincronitzar dades amb el Nepomuk
 Comment[cs]=Modul pro synchronizaci dat s Nepomukem
 Comment[da]=Plugin til at synkronisere data med Nepomuk
 Comment[de]=Modul zum Abgleichen von Daten in Nepomuk
@@ -71,6 +74,7 @@
 Comment[sr@latin]=Priključak za sinhronizovanje podataka sa Nepomukom
 Comment[sv]=Insticksprogram för att synkronisera data med Nepomuk
 Comment[tr]=Nepomuk'ta veri eşzamanlaması için eklenti
+Comment[ug]=Nepomuk بىلەن سانلىق مەلۇماتلارنى قەدەمداشلايدىغان قىستۇرما
 Comment[uk]=Додаток для синхронізації даних з Nepomuk
 Comment[x-test]=xxPlugin to synchronize data with Nepomukxx
 Comment[zh_CN]=同步数据到 Nepomuk 的插件
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/plugins/slc/activitymanager-plugin-slc.desktop
 
new/kactivities-4.11.90/src/service/plugins/slc/activitymanager-plugin-slc.desktop
--- 
old/kactivities-4.11.2/src/service/plugins/slc/activitymanager-plugin-slc.desktop
   2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/service/plugins/slc/activitymanager-plugin-slc.desktop
  2013-10-26 18:46:08.000000000 +0200
@@ -37,6 +37,7 @@
 Name[sr@latin]=Podeli-oceni-poveži (SLC)
 Name[sv]=Share-Like-Connect
 Name[tr]=Paylaş-Beğen-Bağlan
+Name[ug]=Share-Like-Connect
 Name[uk]=Оприлюднти-Уподобати-З’єднати
 Name[x-test]=xxShare-Like-Connectxx
 Name[zh_CN]=分享-喜爱-连接
@@ -78,6 +79,7 @@
 Comment[sr@latin]=Pruža podatke apletu podeli-oceni-poveži (SLC)
 Comment[sv]=Tillhandahåller data för Share-Like-Connect miniprogram
 Comment[tr]=Paylaş-Beğen-Bağlan uygulamacığına veri sağlar
+Comment[ug]=Share-Like-Connect ئەپچە ئۈچۈن سانلىق مەلۇمات تەمىنلەيدۇ
 Comment[uk]=Надає дані аплетові Оприлюднити-Уподобати-З’єднати
 Comment[x-test]=xxProvides data to Share-Like-Connect appletxx
 Comment[zh_CN]=为分享-喜爱-连接小程序提供数据
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/plugins/sqlite/activitymanager-plugin-sqlite.desktop
 
new/kactivities-4.11.90/src/service/plugins/sqlite/activitymanager-plugin-sqlite.desktop
--- 
old/kactivities-4.11.2/src/service/plugins/sqlite/activitymanager-plugin-sqlite.desktop
     2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/service/plugins/sqlite/activitymanager-plugin-sqlite.desktop
    2013-10-26 18:46:08.000000000 +0200
@@ -38,6 +38,7 @@
 Name[sr@latin]=SQLiteov uvodnik
 Name[sv]=SQLite-inmatning
 Name[tr]=Sqlite Besleyicisi
+Name[ug]=Sqlite Feeder
 Name[uk]=Передавання даних Sqlite
 Name[x-test]=xxSqlite Feederxx
 Name[zh_CN]=Sqlite 采集器
@@ -82,6 +83,7 @@
 Comment[sr@latin]=Priključak za skladištenje i ocenjivanje događaja u SQLiteu
 Comment[sv]=Insticksprogram för att lagra och betygsätta händelser i SQLite
 Comment[tr]=Sqlite içerisinde olayları derecelendirme ve saklama eklentisi
+Comment[ug]=Sqlite تىكى ئېرىشكەن نومۇر ۋە ساقلاش ھادىسىسىنىڭ قىستۇرمىسى
 Comment[uk]=Додаток для зберігання і оцінки подій у Sqlite
 Comment[x-test]=xxPlugin to store and score events in Sqlitexx
 Comment[zh_CN]=将事件在 Sqlite 中存储并打分的插件
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/service/plugins/virtualdesktopswitch/activitymanager-plugin-virtualdesktopswitch.desktop
 
new/kactivities-4.11.90/src/service/plugins/virtualdesktopswitch/activitymanager-plugin-virtualdesktopswitch.desktop
--- 
old/kactivities-4.11.2/src/service/plugins/virtualdesktopswitch/activitymanager-plugin-virtualdesktopswitch.desktop
 2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/service/plugins/virtualdesktopswitch/activitymanager-plugin-virtualdesktopswitch.desktop
        2013-10-26 18:46:08.000000000 +0200
@@ -38,6 +38,7 @@
 Name[sr@latin]=Menjač virtuelnih površi
 Name[sv]=Byte av virtuellt skrivbord
 Name[tr]=Sanal masaüstü değiştirici
+Name[ug]=مەۋھۇم ئۈستەلئۈستى ئالماشتۇرغۇچ
 Name[uk]=Перемикач віртуальних стільниць
 Name[x-test]=xxVirtual desktop switcherxx
 Name[zh_CN]=虚拟桌面切换器
@@ -79,6 +80,7 @@
 Comment[sr@latin]=Pri prebacivanju na aktivnost, otvara virtuelnu površ koja 
je poslednja korišćena u toj aktivnosti
 Comment[sv]=Vid byte till en aktivitet, öppnar det virtuella skrivbord som 
senast användes med den aktiviteten
 Comment[tr]=Bir etkinliğe geçiş yaparken, o etkinliği kullanmış son sanal 
masaüstünü açar
+Comment[ug]=پائالىيەتكە ئالماشقاندا، ئاخىرقى قېتىم ئىشلەتكەن مەۋھۇم 
ئۈستەلئۈستى ۋە پائالىيەتنى ئاچىدۇ
 Comment[uk]=Під час перемикання на простір дій відкриває віртуальну стільницю, 
яку було використано у цьому просторі останньою
 Comment[x-test]=xxWhen switching to an activity, opens the virtual desktop 
last used with that activityxx
 Comment[zh_CN]=切换活动时打开上次一同使用的虚拟桌面
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/workspace/fileitemplugin/kactivitymanagerd_fileitem_linking_plugin.desktop
 
new/kactivities-4.11.90/src/workspace/fileitemplugin/kactivitymanagerd_fileitem_linking_plugin.desktop
--- 
old/kactivities-4.11.2/src/workspace/fileitemplugin/kactivitymanagerd_fileitem_linking_plugin.desktop
       2013-08-28 18:57:16.000000000 +0200
+++ 
new/kactivities-4.11.90/src/workspace/fileitemplugin/kactivitymanagerd_fileitem_linking_plugin.desktop
      2013-10-26 18:46:08.000000000 +0200
@@ -39,6 +39,7 @@
 Name[sr@latin]=Fajl ka priključku povezivanja aktivnosti
 Name[sv]=Länkinsticksprogram från fil till aktivitet
 Name[tr]=Etkinliğe dosya bağlama eklentisi
+Name[ug]=پائالىيەت ئۇلانما قىستۇرما ھۆججىتى
 Name[uk]=Додаток прив’язування файлів до просторів дій
 Name[x-test]=xxFile to activity linking pluginxx
 Name[zh_CN]=文件关联活动插件
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kactivities-4.11.2/src/workspace/settings/kcm_activities.desktop 
new/kactivities-4.11.90/src/workspace/settings/kcm_activities.desktop
--- old/kactivities-4.11.2/src/workspace/settings/kcm_activities.desktop        
2013-08-28 18:57:16.000000000 +0200
+++ new/kactivities-4.11.90/src/workspace/settings/kcm_activities.desktop       
2013-10-26 18:46:08.000000000 +0200
@@ -50,6 +50,7 @@
 Name[sr@latin]=Aktivnosti
 Name[sv]=Aktiviteter
 Name[tr]=Etkinlikler
+Name[ug]=پائالىيەتلەر
 Name[uk]=Простори дій
 Name[x-test]=xxActivitiesxx
 Name[zh_CN]=活动
@@ -92,6 +93,7 @@
 Comment[sr@latin]=Podesite sistem aktivnosti
 Comment[sv]=Anpassa aktivitetssystemet
 Comment[tr]=Etkinlikler sistemini yapılandır
+Comment[ug]=پائالىيەت سىستېمىسىنى سەپلەيدۇ
 Comment[uk]=Налаштування системи просторів дій
 Comment[x-test]=xxConfigure the activities systemxx
 Comment[zh_CN]=配置活动系统

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to