Hello community,

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

Package is "filelight"

Changes:
--------
--- /work/SRC/openSUSE:Factory/filelight/filelight.changes      2013-10-03 
15:47:11.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.filelight.new/filelight.changes 2013-12-02 
12:33:36.000000000 +0100
@@ -1,0 +2,21 @@
+Sat Nov 16 18:01:12 UTC 2013 - tittiatc...@gmail.com
+
+- 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 23:02:38 UTC 2013 - tittiatc...@gmail.com
+
+- 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:15:56 UTC 2013 - tittiatc...@gmail.com
+
+- Update to 4.11.3
+   * KDE 4.11.3 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.3.php
+
+-------------------------------------------------------------------

Old:
----
  filelight-4.11.2.tar.xz

New:
----
  filelight-4.11.90.tar.xz

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

Other differences:
------------------
++++++ filelight.spec ++++++
--- /var/tmp/diff_new_pack.t0BFbL/_old  2013-12-02 12:33:37.000000000 +0100
+++ /var/tmp/diff_new_pack.t0BFbL/_new  2013-12-02 12:33:37.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           filelight
-Version:        4.11.2
+Version:        4.11.90
 Release:        0
 Summary:        Graphical disk usage viewer
 License:        GPL-2.0 or GPL-3.0

++++++ filelight-4.11.2.tar.xz -> filelight-4.11.90.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/filelight-4.11.2/src/part/localLister.cpp 
new/filelight-4.11.90/src/part/localLister.cpp
--- old/filelight-4.11.2/src/part/localLister.cpp       2013-06-28 
19:38:33.000000000 +0200
+++ new/filelight-4.11.90/src/part/localLister.cpp      2013-11-02 
23:41:01.000000000 +0100
@@ -67,10 +67,11 @@
     if (!Config::scanAcrossMounts) list += s_localMounts;
     if (!Config::scanRemoteMounts) list += s_remoteMounts;
 
-    for (QStringList::ConstIterator it = list.constBegin(); it != 
list.constEnd(); ++it)
-        if ((*it).startsWith(path))
-            //prevent scanning of these directories
-            m_trees->append(new Folder((*it).toUtf8()));
+    foreach(const QString &ignorePath, list) {
+        if (ignorePath.startsWith(path)) {
+            m_trees->append(new Folder(ignorePath.toLocal8Bit()));
+        }
+    }
 }
 
 void
@@ -195,6 +196,7 @@
             Folder *d = 0;
             QByteArray new_dirname = ent->d_name;
             new_dirname += '/';
+            new_path += '/';
 
             //check to see if we've scanned this section already
 
@@ -210,10 +212,6 @@
                 }
             }
 
-            // do this after the m_trees check since the paths in there
-            // lack a trailing slash
-            new_path += '/';
-
             if (!d) //then scan
                 if ((d = scan(new_path, new_dirname))) //then scan was 
successful
                     cwd->append(d);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/filelight-4.11.2/src/part/progressBox.cpp 
new/filelight-4.11.90/src/part/progressBox.cpp
--- old/filelight-4.11.2/src/part/progressBox.cpp       2013-08-28 
19:08:23.000000000 +0200
+++ new/filelight-4.11.90/src/part/progressBox.cpp      2013-11-02 
23:41:01.000000000 +0100
@@ -25,6 +25,7 @@
 
 #include <KGlobal>
 #include <KGlobalSettings>
+#include <KColorScheme>
 #include <KIO/Job>
 #include <KLocale>
 
@@ -101,11 +102,13 @@
 
 void ProgressBox::paintEvent(QPaintEvent*)
 {
+    KColorScheme view = KColorScheme(QPalette::Active, KColorScheme::Tooltip);
+
     QPainter paint(this);
     paint.setRenderHint(QPainter::Antialiasing);
     static int tick = 0;
     tick+=16;
-    
+
     for (int i=0; i<pieces; i++) {
         const QRect rect(length[i]/2, length[i]/2, 200- length[i], 
200-length[i]);
         int angle = angleFactor[i] + tick*angleFactor[i];
@@ -116,8 +119,8 @@
         paint.setBrush(brush);
         paint.drawPie(QRect(rect), angle, aLength[i]);
     }
-    
-    paint.setBrush(QColor(255,255,255,200));
+
+    paint.setBrush(view.background(KColorScheme::ActiveBackground));
     paint.translate(0.5, 0.5);
     paint.drawRoundedRect(95-m_textWidth/2, 85, m_textWidth+10, 
m_textHeight+10, 5, 5);
     paint.translate(-0.5, -0.5);

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to