Hello community,

here is the log from the commit of package kolourpaint for openSUSE:Factory 
checked in at 2011-12-08 12:11:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kolourpaint (Old)
 and      /work/SRC/openSUSE:Factory/.kolourpaint.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kolourpaint", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kolourpaint/kolourpaint.changes  2011-11-14 
14:24:56.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kolourpaint.new/kolourpaint.changes     
2011-12-08 12:11:30.000000000 +0100
@@ -1,0 +2,11 @@
+Wed Dec  7 11:31:32 UTC 2011 - [email protected]
+
+- fix license to be in spdx.org format
+
+-------------------------------------------------------------------
+Fri Dec  2 02:00:28 CET 2011 - [email protected]
+
+- update to 4.7.4
+  * see http://kde.org/announcements/changelogs/changelog4_7_3to4_7_4.php for 
details
+
+-------------------------------------------------------------------

Old:
----
  kolourpaint-4.7.3.tar.bz2

New:
----
  kolourpaint-4.7.4.tar.bz2

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

Other differences:
------------------
++++++ kolourpaint.spec ++++++
--- /var/tmp/diff_new_pack.j5ysl8/_old  2011-12-08 12:11:32.000000000 +0100
+++ /var/tmp/diff_new_pack.j5ysl8/_new  2011-12-08 12:11:32.000000000 +0100
@@ -15,16 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:           kolourpaint
-Version:        4.7.3
-Release:        1
+Version:        4.7.4
+Release:        0
 # See bnc#717722 for license details
-License:        BSD-2-Clause and LGPL-2.1+ and FDL-1.2+
 Summary:        Paint Program
-Url:            http://www.kde.org
+License:        BSD-2-Clause and LGPL-2.1+ and SUSE-GFDL-1.2+
 Group:          Productivity/Graphics/Bitmap Editors
+Url:            http://www.kde.org
 Source0:        %{name}-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  libkde4-devel

++++++ kolourpaint-4.7.3.tar.bz2 -> kolourpaint-4.7.4.tar.bz2 ++++++
Files old/kolourpaint-4.7.3/doc/index.cache.bz2 and 
new/kolourpaint-4.7.4/doc/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kolourpaint-4.7.3/layers/selections/image/kpAbstractImageSelection.cpp 
new/kolourpaint-4.7.4/layers/selections/image/kpAbstractImageSelection.cpp
--- old/kolourpaint-4.7.3/layers/selections/image/kpAbstractImageSelection.cpp  
2011-05-20 22:36:21.000000000 +0200
+++ new/kolourpaint-4.7.4/layers/selections/image/kpAbstractImageSelection.cpp  
2011-12-02 00:26:43.000000000 +0100
@@ -456,12 +456,12 @@
                 pixelCol.isSimilarTo (d->transparency.transparentColor (),
                                       d->transparency.processedColorSimilarity 
()))
             {
-                transparencyMaskPainter.setPen (Qt::color0/*transparent*/);
+                transparencyMaskPainter.setPen (Qt::color1/*transparent*/);
                 hasTransparent = true;
             }
             else
             {
-                transparencyMaskPainter.setPen (Qt::color1/*opaque*/);
+                transparencyMaskPainter.setPen (Qt::color0/*opaque*/);
             }
 
             transparencyMaskPainter.drawPoint (x, y);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kolourpaint-4.7.3/layers/selections/text/kpTextSelection_Paint.cpp 
new/kolourpaint-4.7.4/layers/selections/text/kpTextSelection_Paint.cpp
--- old/kolourpaint-4.7.3/layers/selections/text/kpTextSelection_Paint.cpp      
2011-05-20 22:36:21.000000000 +0200
+++ new/kolourpaint-4.7.4/layers/selections/text/kpTextSelection_Paint.cpp      
2011-12-02 00:26:43.000000000 +0100
@@ -158,11 +158,13 @@
                << endl;
 #endif
 
-    const kpColor backColor = theTextStyle.backgroundColor ();
-
     QPainter painter(&floatImage);
-    // Fill in the background.
-    painter.fillRect (theWholeAreaRect, backColor.toQColor());
+
+    // Fill in the background using the transparent/opaque tool setting
+    if ( theTextStyle.isBackgroundTransparent() )
+      painter.fillRect(theWholeAreaRect, Qt::transparent);
+    else
+      painter.fillRect(theWholeAreaRect, 
theTextStyle.backgroundColor().toQColor());
 
     painter.setClipRect(theWholeAreaRect);
     painter.setPen(theTextStyle.foregroundColor().toQColor());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kolourpaint-4.7.3/widgets/toolbars/kpColorToolBar.cpp 
new/kolourpaint-4.7.4/widgets/toolbars/kpColorToolBar.cpp
--- old/kolourpaint-4.7.3/widgets/toolbars/kpColorToolBar.cpp   2011-05-20 
22:36:21.000000000 +0200
+++ new/kolourpaint-4.7.4/widgets/toolbars/kpColorToolBar.cpp   2011-12-02 
00:26:43.000000000 +0100
@@ -53,6 +53,9 @@
 {
     setWindowTitle (label);
 
+    // not closable, as it's not a KDE toolbar yet and can not be made shown 
easily again
+    setFeatures(QDockWidget::DockWidgetMovable | 
QDockWidget::DockWidgetFloatable);
+
     setAcceptDrops (true);
 
     QWidget *base = new QWidget (this);

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

Reply via email to