Hello community,

here is the log from the commit of package konsole for openSUSE:Factory checked 
in at 2014-05-22 06:49:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/konsole (Old)
 and      /work/SRC/openSUSE:Factory/.konsole.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "konsole"

Changes:
--------
--- /work/SRC/openSUSE:Factory/konsole/konsole.changes  2014-04-18 
12:37:27.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.konsole.new/konsole.changes     2014-05-22 
06:49:22.000000000 +0200
@@ -1,0 +2,7 @@
+Fri May  9 16:41:13 UTC 2014 - tittiatc...@gmail.com
+
+- Update to 4.13.1
+   * KDE 4.13.1  bug fix release
+   * See http://www.kde.org/announcements/announce-4.13.1.php
+
+-------------------------------------------------------------------

Old:
----
  konsole-4.13.0.tar.xz

New:
----
  konsole-4.13.1.tar.xz

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

Other differences:
------------------
++++++ konsole.spec ++++++
--- /var/tmp/diff_new_pack.zrpUJK/_old  2014-05-22 06:49:23.000000000 +0200
+++ /var/tmp/diff_new_pack.zrpUJK/_new  2014-05-22 06:49:23.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           konsole
-Version:        4.13.0
+Version:        4.13.1
 Release:        0
 Summary:        KDE Terminal
 License:        GPL-2.0+

++++++ konsole-4.13.0.tar.xz -> konsole-4.13.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/History.cpp 
new/konsole-4.13.1/src/History.cpp
--- old/konsole-4.13.0/src/History.cpp  2014-03-31 06:33:41.000000000 +0200
+++ new/konsole-4.13.1/src/History.cpp  2014-05-07 15:44:07.000000000 +0200
@@ -373,7 +373,10 @@
 
 CompactHistoryLine::CompactHistoryLine(const TextLine& line, 
CompactHistoryBlockList& bList)
     : _blockListRef(bList),
-      _formatLength(0)
+      _formatArray(0),
+      _text(0),
+      _formatLength(0),
+      _wrapped(false)
 {
     _length = line.size();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/Part.cpp 
new/konsole-4.13.1/src/Part.cpp
--- old/konsole-4.13.0/src/Part.cpp     2014-03-31 06:33:41.000000000 +0200
+++ new/konsole-4.13.1/src/Part.cpp     2014-05-07 15:44:07.000000000 +0200
@@ -337,9 +337,12 @@
 
     if (aUrl.isLocalFile() /*&& b_openUrls*/) {
         KDE_struct_stat buff;
-        KDE::stat(QFile::encodeName(aUrl.path()), &buff);
-        QString text = (S_ISDIR(buff.st_mode) ? aUrl.path() : 
aUrl.directory());
-        showShellInDir(text);
+        if (KDE::stat(QFile::encodeName(aUrl.path()), &buff) == 0) {
+            QString text = (S_ISDIR(buff.st_mode) ? aUrl.path() : 
aUrl.directory());
+            showShellInDir(text);
+        } else {
+            showShellInDir(QDir::homePath());
+        }
     } else {
         showShellInDir(QDir::homePath());
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/ProcessInfo.cpp 
new/konsole-4.13.1/src/ProcessInfo.cpp
--- old/konsole-4.13.0/src/ProcessInfo.cpp      2014-03-31 06:33:41.000000000 
+0200
+++ new/konsole-4.13.1/src/ProcessInfo.cpp      2014-05-07 15:44:07.000000000 
+0200
@@ -333,14 +333,14 @@
 void ProcessInfo::setFileError(QFile::FileError error)
 {
     switch (error) {
-    case PermissionsError:
-        setError(PermissionsError);
+    case QFile::PermissionsError:
+        setError(ProcessInfo::PermissionsError);
         break;
-    case NoError:
-        setError(NoError);
+    case QFile::NoError:
+        setError(ProcessInfo::NoError);
         break;
     default:
-        setError(UnknownError);
+        setError(ProcessInfo::UnknownError);
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/Pty.cpp 
new/konsole-4.13.1/src/Pty.cpp
--- old/konsole-4.13.0/src/Pty.cpp      2014-03-31 06:33:41.000000000 +0200
+++ new/konsole-4.13.1/src/Pty.cpp      2014-05-07 15:44:07.000000000 +0200
@@ -261,11 +261,17 @@
 void Pty::setWriteable(bool writeable)
 {
     KDE_struct_stat sbuf;
-    KDE::stat(pty()->ttyName(), &sbuf);
-    if (writeable)
-        KDE::chmod(pty()->ttyName(), sbuf.st_mode | S_IWGRP);
-    else
-        KDE::chmod(pty()->ttyName(), sbuf.st_mode & ~(S_IWGRP | S_IWOTH));
+    if (KDE::stat(pty()->ttyName(), &sbuf) == 0) {
+        if (writeable) {
+            if (KDE::chmod(pty()->ttyName(), sbuf.st_mode | S_IWGRP) < 0) {
+                kWarning() << "Could not set writeable on "<<pty()->ttyName();
+            }
+        } else {
+            if (KDE::chmod(pty()->ttyName(), sbuf.st_mode & ~(S_IWGRP | 
S_IWOTH)) < 0) {
+                kWarning() << "Could not unset writeable on 
"<<pty()->ttyName();
+            }
+        }
+    }
 }
 
 void Pty::closePty()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/TerminalCharacterDecoder.cpp 
new/konsole-4.13.1/src/TerminalCharacterDecoder.cpp
--- old/konsole-4.13.0/src/TerminalCharacterDecoder.cpp 2014-03-31 
06:33:41.000000000 +0200
+++ new/konsole-4.13.1/src/TerminalCharacterDecoder.cpp 2014-05-07 
15:44:07.000000000 +0200
@@ -210,20 +210,21 @@
             QString style;
 
             bool useBold;
-            ColorEntry::FontWeight weight = 
characters[i].fontWeight(_colorTable);
-            if (weight == ColorEntry::UseCurrentFormat)
-                useBold = _lastRendition & RE_BOLD;
-            else
-                useBold = weight == ColorEntry::Bold;
-
-            if (useBold)
-                style.append("font-weight:bold;");
-
-            if (_lastRendition & RE_UNDERLINE)
-                style.append("font-decoration:underline;");
 
             //colors - a color table must have been defined first
             if (_colorTable) {
+                ColorEntry::FontWeight weight = 
characters[i].fontWeight(_colorTable);
+                if (weight == ColorEntry::UseCurrentFormat)
+                    useBold = _lastRendition & RE_BOLD;
+                else
+                    useBold = weight == ColorEntry::Bold;
+
+                if (useBold)
+                    style.append("font-weight:bold;");
+
+                if (_lastRendition & RE_UNDERLINE)
+                    style.append("font-decoration:underline;");
+
                 
style.append(QString("color:%1;").arg(_lastForeColor.color(_colorTable).name()));
 
                 
style.append(QString("background-color:%1;").arg(_lastBackColor.color(_colorTable).name()));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/TerminalDisplay.cpp 
new/konsole-4.13.1/src/TerminalDisplay.cpp
--- old/konsole-4.13.0/src/TerminalDisplay.cpp  2014-03-31 06:33:41.000000000 
+0200
+++ new/konsole-4.13.1/src/TerminalDisplay.cpp  2014-05-07 15:44:07.000000000 
+0200
@@ -2901,6 +2901,7 @@
         _outputSuspendedLabel->setBackgroundRole(QPalette::Base);
         
_outputSuspendedLabel->setFont(KGlobalSettings::smallestReadableFont());
         _outputSuspendedLabel->setContentsMargins(5, 5, 5, 5);
+        _outputSuspendedLabel->setWordWrap(true);
 
         //enable activation of "Xon/Xoff" link in label
         
_outputSuspendedLabel->setTextInteractionFlags(Qt::LinksAccessibleByMouse |
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/konsole_wcwidth.cpp 
new/konsole-4.13.1/src/konsole_wcwidth.cpp
--- old/konsole-4.13.0/src/konsole_wcwidth.cpp  2014-03-31 06:33:41.000000000 
+0200
+++ new/konsole-4.13.1/src/konsole_wcwidth.cpp  2014-05-07 15:44:07.000000000 
+0200
@@ -201,7 +201,7 @@
            (ucs >= 0x1100 &&
             (ucs <= 0x115f ||                    /* Hangul Jamo init. 
consonants */
              ucs == 0x2329 || ucs == 0x232a ||
-             (ucs >= 0x2e80 && ucs <= 0xa4cf && (ucs & ~0x0011) != 0x300a &&
+             (ucs >= 0x2e80 && ucs <= 0xa4cf &&
               ucs != 0x303f) ||                  /* CJK ... Yi */
              (ucs >= 0xac00 && ucs <= 0xd7a3) || /* Hangul Syllables */
              (ucs >= 0xf900 && ucs <= 0xfaff) || /* CJK Compatibility 
Ideographs */
@@ -209,7 +209,6 @@
              (ucs >= 0xfe30 && ucs <= 0xfe6f) || /* CJK Compatibility Forms */
              (ucs >= 0xff00 && ucs <= 0xff60) || /* Fullwidth Forms */
              (ucs >= 0xffe0 && ucs <= 0xffe6) ||
-             (ucs >= 0x300a && ucs <= 0x300b) || /* Special character 《 and 
》(Unicode Standard Annex #11) */
              (ucs >= 0x20000 && ucs <= 0x2fffd) ||
              (ucs >= 0x30000 && ucs <= 0x3fffd)));
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/main.cpp 
new/konsole-4.13.1/src/main.cpp
--- old/konsole-4.13.0/src/main.cpp     2014-03-31 06:33:41.000000000 +0200
+++ new/konsole-4.13.1/src/main.cpp     2014-05-07 15:44:07.000000000 +0200
@@ -29,7 +29,7 @@
 #include <KCmdLineArgs>
 #include <KLocale>
 
-#define KONSOLE_VERSION "2.13"
+#define KONSOLE_VERSION "2.13.1"
 
 using Konsole::Application;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/tests/DBusTest.cpp 
new/konsole-4.13.1/src/tests/DBusTest.cpp
--- old/konsole-4.13.0/src/tests/DBusTest.cpp   2014-03-31 06:33:41.000000000 
+0200
+++ new/konsole-4.13.1/src/tests/DBusTest.cpp   2014-05-07 15:44:07.000000000 
+0200
@@ -78,21 +78,16 @@
     }
     //kDebug()<< "Using service: " + _interfaceName.toLatin1();
 
-    _iface = new QDBusInterface(_interfaceName,
-                                QLatin1String("/Konsole"),
-                                QLatin1String("org.kde.konsole.Konsole"),
-                                QDBusConnection::sessionBus(), this);
-    QVERIFY(_iface);
-    QVERIFY(_iface->isValid());
+    QDBusInterface iface(_interfaceName,
+                         QLatin1String("/Konsole"),
+                         QLatin1String("org.kde.konsole.Konsole"));
+    QVERIFY(iface.isValid());
 }
 
 /* Close the Konsole window that was opened to test the DBus interface
  */
 void DBusTest::cleanupTestCase()
 {
-    QVERIFY(_iface);
-    QVERIFY(_iface->isValid());
-
     // Need to take care of when user has CloseAllTabs=False otherwise
     // they will get a popup dialog when we try to close this.
 
@@ -119,9 +114,6 @@
     QDBusReply<QString> stringReply;
     QDBusReply<QStringList> listReply;
 
-    QVERIFY(_iface);
-    QVERIFY(_iface->isValid());
-
     QDBusInterface iface(_interfaceName,
                          QLatin1String("/Sessions/1"),
                          QLatin1String("org.kde.konsole.Session"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.13.0/src/tests/DBusTest.h 
new/konsole-4.13.1/src/tests/DBusTest.h
--- old/konsole-4.13.0/src/tests/DBusTest.h     2014-03-31 06:33:41.000000000 
+0200
+++ new/konsole-4.13.1/src/tests/DBusTest.h     2014-05-07 15:44:07.000000000 
+0200
@@ -48,7 +48,6 @@
 
 private:
     QString _interfaceName;
-    QDBusInterface* _iface;
 };
 
 }







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

Reply via email to