Hello community, here is the log from the commit of package okteta for openSUSE:Factory checked in at 2015-07-14 17:41:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/okteta (Old) and /work/SRC/openSUSE:Factory/.okteta.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "okteta" Changes: -------- --- /work/SRC/openSUSE:Factory/okteta/okteta.changes 2015-06-04 11:23:42.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.okteta.new/okteta.changes 2015-07-14 17:41:14.000000000 +0200 @@ -1,0 +2,8 @@ +Mon Jul 6 06:05:11 UTC 2015 - [email protected] + +- Update to KDE Applications 15.04.3 + * KDE Applications 15.04.3 + * https://www.kde.org/announcements/announce-applications-15.04.3.php + + +------------------------------------------------------------------- Old: ---- okteta-15.04.2.tar.xz New: ---- okteta-15.04.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ okteta.spec ++++++ --- /var/tmp/diff_new_pack.V7sRFJ/_old 2015-07-14 17:41:15.000000000 +0200 +++ /var/tmp/diff_new_pack.V7sRFJ/_new 2015-07-14 17:41:15.000000000 +0200 @@ -39,7 +39,7 @@ License: GPL-2.0 and GFDL-1.2 Group: Development/Tools/Other Url: http://www.kde.org/ -Version: 15.04.2 +Version: 15.04.3 Release: 0 Source0: okteta-%{version}.tar.xz Obsoletes: %{name}5 < %{version} ++++++ okteta-15.04.2.tar.xz -> okteta-15.04.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.04.2/gui/libcolumnsview/columnsview.cpp new/okteta-15.04.3/gui/libcolumnsview/columnsview.cpp --- old/okteta-15.04.2/gui/libcolumnsview/columnsview.cpp 2015-05-28 20:03:15.000000000 +0200 +++ new/okteta-15.04.3/gui/libcolumnsview/columnsview.cpp 2015-06-20 16:11:22.000000000 +0200 @@ -177,18 +177,26 @@ { QSize viewSize = maximumViewportSize(); - const bool needsVerticalBar = ( columnsHeight() > viewSize.height() ); - const bool needsHorizontalBar = ( columnsWidth() > viewSize.width() ); const int scrollBarWidth = style()->pixelMetric( QStyle::PM_ScrollBarExtent ); + const PixelY usedHeight = columnsHeight(); + const PixelX usedWidth = columnsWidth(); - if( needsVerticalBar ) + const bool needsVerticalBarDefinitely = ( usedHeight > viewSize.height() ); + const bool needsHorizontalBarDefinitely = ( usedWidth > viewSize.width() ); + + if( needsVerticalBarDefinitely ) + viewSize.rwidth() -= scrollBarWidth; + if( needsHorizontalBarDefinitely ) + viewSize.rheight() -= scrollBarWidth; + // check again if bars are not needed now + if( !needsVerticalBarDefinitely && usedHeight > viewSize.height() ) viewSize.rwidth() -= scrollBarWidth; - if( needsHorizontalBar ) + if( !needsHorizontalBarDefinitely && usedWidth > viewSize.width() ) viewSize.rheight() -= scrollBarWidth; - verticalScrollBar()->setRange( 0, columnsHeight()-viewSize.height() ); + verticalScrollBar()->setRange( 0, usedHeight-viewSize.height() ); verticalScrollBar()->setPageStep( viewSize.height() ); - horizontalScrollBar()->setRange( 0, columnsWidth()-viewSize.width() ); + horizontalScrollBar()->setRange( 0, usedWidth-viewSize.width() ); horizontalScrollBar()->setPageStep( viewSize.width() ); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.04.2/program/about.cpp new/okteta-15.04.3/program/about.cpp --- old/okteta-15.04.2/program/about.cpp 2015-05-28 20:03:15.000000000 +0200 +++ new/okteta-15.04.3/program/about.cpp 2015-06-20 16:11:22.000000000 +0200 @@ -29,7 +29,7 @@ OktetaAboutData::OktetaAboutData() : KAboutData( QStringLiteral("okteta"), i18n("Okteta"), // name - QStringLiteral("0.16.2"), + QStringLiteral("0.16.3"), i18n("Hex editor"), // description KAboutLicense::GPL_V2, i18n("Copyright 2006-2015 Friedrich W. H. Kossebau"), //copyright diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.04.2/program/org.kde.okteta.appdata.xml new/okteta-15.04.3/program/org.kde.okteta.appdata.xml --- old/okteta-15.04.2/program/org.kde.okteta.appdata.xml 2015-05-28 20:03:15.000000000 +0200 +++ new/okteta-15.04.3/program/org.kde.okteta.appdata.xml 2015-06-20 16:11:22.000000000 +0200 @@ -125,7 +125,7 @@ <p xml:lang="zh-TW">功能:</p> <ul> <li>Values and characters shown either in two columns (the traditional display in hex editors) or in rows with the value on top of the character</li> - <li xml:lang="ca">Els valors i el caràcters es mostren en dues columnes (la vista tradicional en els editors hexadecimals) o en files amb el valor a sobre del caràcter</li> + <li xml:lang="ca">Els valors i els caràcters es mostren en dues columnes (la vista tradicional en els editors hexadecimals) o en files amb el valor a sobre del caràcter</li> <li xml:lang="de">Werte und Zeichen können in zwei Spalten (die traditionelle Anzeige von Hexeditoren) oder in Reihen mit der Anzeige der Werte über den Zeichen dargestellt werden</li> <li xml:lang="en-GB">Values and characters shown either in two columns (the traditional display in hex editors) or in rows with the value on top of the character</li> <li xml:lang="es">Muestra valores y caracteres en dos columnas (la vista tradicional para editores hexadecimales) o en filas con los valores encima de los caracteres</li>
