Hello community,

here is the log from the commit of package konsole for openSUSE:Factory checked 
in at 2011-11-14 14:25:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/konsole (Old)
 and      /work/SRC/openSUSE:Factory/.konsole.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

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

Changes:
--------
--- /work/SRC/openSUSE:Factory/konsole/konsole.changes  2011-10-06 
16:41:34.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.konsole.new/konsole.changes     2011-11-14 
14:25:42.000000000 +0100
@@ -1,0 +2,6 @@
+Wed Nov  2 20:28:32 CET 2011 - [email protected]
+
+- update to 4.7.3
+  * see http://kde.org/announcements/changelogs/changelog4_7_2to4_7_3.php for 
details
+
+-------------------------------------------------------------------

Old:
----
  konsole-4.7.2.tar.bz2

New:
----
  konsole-4.7.3.tar.bz2

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

Other differences:
------------------
++++++ konsole.spec ++++++
--- /var/tmp/diff_new_pack.nSJqFf/_old  2011-11-14 14:25:43.000000000 +0100
+++ /var/tmp/diff_new_pack.nSJqFf/_new  2011-11-14 14:25:43.000000000 +0100
@@ -18,7 +18,7 @@
 
 
 Name:           konsole
-Version:        4.7.2
+Version:        4.7.3
 Release:        1
 License:        GPLv2+
 Summary:        KDE Terminal

++++++ konsole-4.7.2.tar.bz2 -> konsole-4.7.3.tar.bz2 ++++++
Files old/konsole-4.7.2/doc/manual/index.cache.bz2 and 
new/konsole-4.7.3/doc/manual/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.7.2/src/TerminalDisplay.cpp 
new/konsole-4.7.3/src/TerminalDisplay.cpp
--- old/konsole-4.7.2/src/TerminalDisplay.cpp   2011-10-02 14:49:41.000000000 
+0200
+++ new/konsole-4.7.3/src/TerminalDisplay.cpp   2011-10-28 09:44:03.000000000 
+0200
@@ -263,6 +263,9 @@
     // Disabling kerning saves some computation when rendering text. 
     font.setKerning(false);
 
+    // Konsole cannot handle non-integer font metrics
+    font.setStyleStrategy(QFont::StyleStrategy(font.styleStrategy() | 
QFont::ForceIntegerMetrics));
+
     QWidget::setFont(font);
     fontChange(font);
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.7.2/src/ViewManager.cpp 
new/konsole-4.7.3/src/ViewManager.cpp
--- old/konsole-4.7.2/src/ViewManager.cpp       2011-05-21 01:08:13.000000000 
+0200
+++ new/konsole-4.7.3/src/ViewManager.cpp       2011-10-28 09:44:03.000000000 
+0200
@@ -1040,6 +1040,10 @@
 
 int ViewManager::newSession(QString profile, QString directory)
 {
+    // ensure all profiles are usable.
+    // FIXME: this explict calling smells bad.
+    SessionManager::instance()->loadAllProfiles();
+
     QList<Profile::Ptr> profilelist = 
SessionManager::instance()->loadedProfiles();
     QList<Profile::Ptr>::iterator i = profilelist.begin();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.7.2/src/konsoleprofile 
new/konsole-4.7.3/src/konsoleprofile
--- old/konsole-4.7.2/src/konsoleprofile        2011-05-21 01:08:13.000000000 
+0200
+++ new/konsole-4.7.3/src/konsoleprofile        2011-10-28 09:44:03.000000000 
+0200
@@ -1,3 +1,39 @@
 #!/bin/sh
+#
+#  This file is in the public domain.
+
+#  A command-line tool to change the current tab's profile options.
+#
+#  Usage: konsoleprofile option=value
+#
+#  Example: 'konsoleprofile ColorScheme=WhiteOnBlack' will change the
+#  colorscheme used in current tab into WhiteOnBlack on the fly.
+#
+#  NOTE: This script MUST run within a konsole tab to take effect. The change
+#  is applied only to current tab. Other tabs using the same profile will not
+#  be influenced.  Any changes won't be saved to to disk.
+#
+#  For the full list of supported options and values:
+#   1. konsole --list-profile-properties
+#   2. refer to konsole/src/Profile.h
+#   3. visit the online reference:
+#       
http://api.kde.org/4.7-api/kde-baseapps-apidocs/konsole/html/namespaceKonsole.html
+#       
http://api.kde.org/4.7-api/kde-baseapps-apidocs/konsole/html/classKonsole_1_1Profile.html
+#
+#  All of the logic is in konsole. This script is provided for convenience.
+
+if [ ! $# -eq 1 ]
+    then
+    echo ""
+    echo "Usage: $0 option=value"
+    echo ""
+    echo "For more documentation view this file $0"
+    echo ""
+    echo "The complete list of profile options can be displayed using:"
+    echo " konsole --list-profile-properties"
+    echo ""
+    exit 0
+fi
 
 /bin/echo -e "\033]50;$1\a"
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/konsole-4.7.2/src/main.cpp 
new/konsole-4.7.3/src/main.cpp
--- old/konsole-4.7.2/src/main.cpp      2011-10-02 14:49:41.000000000 +0200
+++ new/konsole-4.7.3/src/main.cpp      2011-10-28 09:44:03.000000000 +0200
@@ -30,7 +30,7 @@
 #include <KCmdLineArgs>
 #include <KLocale>
 
-#define KONSOLE_VERSION "2.7.2"
+#define KONSOLE_VERSION "2.7.3"
 
 using namespace Konsole;
 







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

Reply via email to