Hello community, here is the log from the commit of package okteta for openSUSE:Factory checked in at 2016-05-29 03:08:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2016-03-29 10:37:55.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.okteta.new/okteta.changes 2016-05-29 03:08:18.000000000 +0200 @@ -1,0 +2,24 @@ +Sat May 7 10:44:16 UTC 2016 - [email protected] + +- Update to KDE Applications 16.04.1 + * KDE Applications 16.04.1 + * https://www.kde.org/announcements/announce-applications-16.04.1.php + + +------------------------------------------------------------------- +Sun Apr 17 06:20:23 UTC 2016 - [email protected] + +- Update to KDE Applications 16.04.0 + * KDE Applications 16.04.0 + * https://www.kde.org/announcements/announce-applications-16.04.0.php + + +------------------------------------------------------------------- +Mon Apr 11 06:55:22 UTC 2016 - [email protected] + +- Update to KDE Applications 16.03.90 + * KDE Applications 16.04.0 RC + * https://www.kde.org/announcements/announce-applications-16.04-rc.php + + +------------------------------------------------------------------- Old: ---- okteta-15.12.3.tar.xz New: ---- okteta-16.04.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ okteta.spec ++++++ --- /var/tmp/diff_new_pack.MPIrKe/_old 2016-05-29 03:08:19.000000000 +0200 +++ /var/tmp/diff_new_pack.MPIrKe/_new 2016-05-29 03:08:19.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.12.3 +Version: 16.04.1 Release: 0 Source0: okteta-%{version}.tar.xz Obsoletes: %{name}5 < %{version} ++++++ okteta-15.12.3.tar.xz -> okteta-16.04.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/CMakeLists.txt new/okteta-16.04.1/CMakeLists.txt --- old/okteta-15.12.3/CMakeLists.txt 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/CMakeLists.txt 2016-05-05 15:31:03.000000000 +0200 @@ -96,7 +96,7 @@ set( OKTETALIBS_MAJOR_VERSION 0 ) set( OKTETALIBS_MINOR_VERSION 9 ) -set( OKTETALIBS_PATCHLEVEL_VERSION 0 ) +set( OKTETALIBS_PATCHLEVEL_VERSION 1 ) set( OKTETALIBS_VERSION "${OKTETALIBS_MAJOR_VERSION}.${OKTETALIBS_MINOR_VERSION}.${OKTETALIBS_PATCHLEVEL_VERSION}" ) set( OKTETALIBS_ABI_VERSION 2 ) set( OKTETALIBS_INCLUDE_INSTALL_DIR ${INCLUDE_INSTALL_DIR}/okteta ) #${OKTETALIBS_ABI_VERSION} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/gui/abstractbytearrayview.h new/okteta-16.04.1/gui/abstractbytearrayview.h --- old/okteta-15.12.3/gui/abstractbytearrayview.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/gui/abstractbytearrayview.h 2016-05-05 15:31:03.000000000 +0200 @@ -387,6 +387,8 @@ void undefinedCharChanged( QChar undefinedChar ); void noOfGroupedBytesChanged( int noOfGroupedBytes ); + void zoomLevelChanged( double level ); + protected: void finishByteEdit(); void emitSelectionSignals(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/gui/abstractbytearrayview_p.cpp new/okteta-16.04.1/gui/abstractbytearrayview_p.cpp --- old/okteta-15.12.3/gui/abstractbytearrayview_p.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/gui/abstractbytearrayview_p.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -275,6 +275,7 @@ && !mInZooming ) { mDefaultFontSize = q->font().pointSize(); + // TODO: why reset zoomlevel here? should this not rather recalculate the new applied font size? mZoomLevel = 1.0; } } @@ -297,6 +298,8 @@ mInZooming = true; q->setFont( newFont ); mInZooming = false; + + emit q->zoomLevelChanged( mZoomLevel ); } void AbstractByteArrayViewPrivate::zoomOut( int pointDecrement ) @@ -314,6 +317,8 @@ mInZooming = true; q->setFont( newFont ); mInZooming = false; + + emit q->zoomLevelChanged( mZoomLevel ); } @@ -336,6 +341,8 @@ mInZooming = true; q->setFont( newFont ); mInZooming = false; + + emit q->zoomLevelChanged( mZoomLevel ); } @@ -348,7 +355,6 @@ { Q_Q( AbstractByteArrayView ); - const int newPointSize = (int)(zoomLevel*mDefaultFontSize); const int currentPointSize = q->fontInfo().pointSize(); // TODO: here we catch any new zoomlevels which are out of bounds and the zoom already at that bound @@ -356,11 +362,26 @@ || (MaxFontPointSize <= currentPointSize && (double)MaxFontPointSize/mDefaultFontSize < zoomLevel) ) return; - zoomTo( newPointSize ); - // TODO: this hack overwrites the new zoomlevel calculated from the integers in zoomTo, - // to avoid getting trapped inside a small integer value, if the zoom tool operates relatively + int newPointSize = (int)(zoomLevel*mDefaultFontSize); + if( newPointSize < MinFontPointSize ) + newPointSize = MinFontPointSize; + else if( newPointSize > MaxFontPointSize ) + newPointSize = MaxFontPointSize; + + QFont newFont( q->font() ); + + // other than in zoomTo(), where the new zoomlevel is calculated from the integers, here + // use the passed zoomlevel value, to avoid getting trapped inside a small integer value, + // if the zoom tool operates relatively // think about, if this is the right approach mZoomLevel = zoomLevel; + newFont.setPointSize( newPointSize ); + + mInZooming = true; + q->setFont( newFont ); + mInZooming = false; + + emit q->zoomLevelChanged(mZoomLevel); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/gui/controller/zoomwheelcontroller.cpp new/okteta-16.04.1/gui/controller/zoomwheelcontroller.cpp --- old/okteta-15.12.3/gui/controller/zoomwheelcontroller.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/gui/controller/zoomwheelcontroller.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -45,9 +45,9 @@ { const int delta = wheelEvent->delta(); if( delta > 0 ) - mView->zoomOut(); - else if( delta < 0 ) mView->zoomIn(); + else if( delta < 0 ) + mView->zoomOut(); eventUsed = true; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/document/overwriteonly/overwriteonlycontroller.h new/okteta-16.04.1/kasten/controllers/document/overwriteonly/overwriteonlycontroller.h --- old/okteta-15.12.3/kasten/controllers/document/overwriteonly/overwriteonlycontroller.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/document/overwriteonly/overwriteonlycontroller.h 2016-05-05 15:31:03.000000000 +0200 @@ -43,7 +43,7 @@ Q_OBJECT public: - OverwriteOnlyController( KXMLGUIClient* guiClient ); + explicit OverwriteOnlyController( KXMLGUIClient* guiClient ); public: // AbstractXmlGuiController API virtual void setTargetModel( AbstractModel* model ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/test/basicdatainformationtest.cpp new/okteta-16.04.1/kasten/controllers/test/basicdatainformationtest.cpp --- old/okteta-15.12.3/kasten/controllers/test/basicdatainformationtest.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/test/basicdatainformationtest.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -34,7 +34,6 @@ #include "view/structures/datatypes/primitivefactory.h" #include "view/structures/datatypes/uniondatainformation.h" #include "view/structures/datatypes/structuredatainformation.h" -#include "view/structures/datatypes/structuredatainformation.h" struct ExpectedResults { ExpectedResults() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/test/primitivearraytest.cpp new/okteta-16.04.1/kasten/controllers/test/primitivearraytest.cpp --- old/okteta-15.12.3/kasten/controllers/test/primitivearraytest.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/test/primitivearraytest.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -19,7 +19,7 @@ */ #include <QTest> -#include <QtScript/QScriptEngine> +#include <QScriptEngine> #include <limits> #include <okteta/bytearraymodel.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/test/scriptclassestest.cpp new/okteta-16.04.1/kasten/controllers/test/scriptclassestest.cpp --- old/okteta-15.12.3/kasten/controllers/test/scriptclassestest.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/test/scriptclassestest.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -26,9 +26,6 @@ #include "view/structures/datatypes/primitive/primitivetemplateinfo.h" #include "view/structures/datatypes/primitive/primitivedatainformation.h" -#include "view/structures/datatypes/primitive/bitfield/signedbitfielddatainformation.h" -#include "view/structures/datatypes/primitive/bitfield/unsignedbitfielddatainformation.h" -#include "view/structures/datatypes/primitive/bitfield/boolbitfielddatainformation.h" #include "view/structures/datatypes/primitive/enumdatainformation.h" #include "view/structures/datatypes/primitive/flagdatainformation.h" #include "view/structures/datatypes/primitive/pointerdatainformation.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/libbytearraychecksum/algorithm/modsumbytearraychecksumparametersetedit.h new/okteta-16.04.1/kasten/controllers/view/libbytearraychecksum/algorithm/modsumbytearraychecksumparametersetedit.h --- old/okteta-15.12.3/kasten/controllers/view/libbytearraychecksum/algorithm/modsumbytearraychecksumparametersetedit.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/libbytearraychecksum/algorithm/modsumbytearraychecksumparametersetedit.h 2016-05-05 15:31:03.000000000 +0200 @@ -37,7 +37,7 @@ static const char Id[]; public: - ModSumByteArrayChecksumParameterSetEdit( QWidget* parent = 0 ); + explicit ModSumByteArrayChecksumParameterSetEdit( QWidget* parent = 0 ); virtual ~ModSumByteArrayChecksumParameterSetEdit(); public: // AbstractByteArrayFilterParameterSetEdit API diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/libbytearraychecksum/algorithm/template/template_bytearraychecksumparametersetedit.h new/okteta-16.04.1/kasten/controllers/view/libbytearraychecksum/algorithm/template/template_bytearraychecksumparametersetedit.h --- old/okteta-15.12.3/kasten/controllers/view/libbytearraychecksum/algorithm/template/template_bytearraychecksumparametersetedit.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/libbytearraychecksum/algorithm/template/template_bytearraychecksumparametersetedit.h 2016-05-05 15:31:03.000000000 +0200 @@ -34,7 +34,7 @@ static const char Id[]; public: - Template_ByteArrayChecksumParameterSetEdit( QWidget* parent = 0 ); + explicit Template_ByteArrayChecksumParameterSetEdit( QWidget* parent = 0 ); virtual ~Template_ByteArrayChecksumParameterSetEdit(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/libbytearrayfilter/filter/rotatebytearrayfilterparametersetedit.h new/okteta-16.04.1/kasten/controllers/view/libbytearrayfilter/filter/rotatebytearrayfilterparametersetedit.h --- old/okteta-15.12.3/kasten/controllers/view/libbytearrayfilter/filter/rotatebytearrayfilterparametersetedit.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/libbytearrayfilter/filter/rotatebytearrayfilterparametersetedit.h 2016-05-05 15:31:03.000000000 +0200 @@ -37,7 +37,7 @@ static const char Id[]; public: - RotateByteArrayFilterParameterSetEdit( QWidget* parent = 0 ); + explicit RotateByteArrayFilterParameterSetEdit( QWidget* parent = 0 ); virtual ~RotateByteArrayFilterParameterSetEdit(); public: // AbstractByteArrayFilterParameterSetEdit API diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/libbytearrayfilter/filter/template/template_bytearrayfilterparametersetedit.h new/okteta-16.04.1/kasten/controllers/view/libbytearrayfilter/filter/template/template_bytearrayfilterparametersetedit.h --- old/okteta-15.12.3/kasten/controllers/view/libbytearrayfilter/filter/template/template_bytearrayfilterparametersetedit.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/libbytearrayfilter/filter/template/template_bytearrayfilterparametersetedit.h 2016-05-05 15:31:03.000000000 +0200 @@ -34,7 +34,7 @@ static const char Id[]; public: - Template_ByteArrayFilterParameterSetEdit( QWidget* parent = 0 ); + explicit Template_ByteArrayFilterParameterSetEdit( QWidget* parent = 0 ); virtual ~Template_ByteArrayFilterParameterSetEdit(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/poddecoder/poddecodertool.cpp new/okteta-16.04.1/kasten/controllers/view/poddecoder/poddecodertool.cpp --- old/okteta-15.12.3/kasten/controllers/view/poddecoder/poddecodertool.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/poddecoder/poddecodertool.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -42,7 +42,6 @@ #include "abstractdifferentsizedialog.h" #include <kasten/okteta/bytearraydocument.h> #include <kasten/okteta/bytearrayview.h> -#include <okteta/abstractbytearraymodel.h> // Okteta core #include <okteta/charcodec.h> #include <okteta/abstractbytearraymodel.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/datatypes/dummydatainformation.h new/okteta-16.04.1/kasten/controllers/view/structures/datatypes/dummydatainformation.h --- old/okteta-15.12.3/kasten/controllers/view/structures/datatypes/dummydatainformation.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/datatypes/dummydatainformation.h 2016-05-05 15:31:03.000000000 +0200 @@ -31,7 +31,7 @@ { DATAINFORMATION_CLONE(DummyDataInformation, DataInformation), mIndex(d.mIndex) {} public: - DummyDataInformation(DataInformationBase* parent, const QString& name = QString()); + explicit DummyDataInformation(DataInformationBase* parent, const QString& name = QString()); virtual ~DummyDataInformation() {} virtual QScriptValue toScriptValue(QScriptEngine* engine, ScriptHandlerInfo* handlerInfo); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/datatypes/primitivedatatype.h new/okteta-16.04.1/kasten/controllers/view/structures/datatypes/primitivedatatype.h --- old/okteta-15.12.3/kasten/controllers/view/structures/datatypes/primitivedatatype.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/datatypes/primitivedatatype.h 2016-05-05 15:31:03.000000000 +0200 @@ -19,8 +19,8 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef PRIMTIVEDATATYPE_H_ -#define PRIMTIVEDATATYPE_H_ +#ifndef PRIMITIVEDATATYPE_H_ +#define PRIMITIVEDATATYPE_H_ class QDebug; class QString; @@ -82,4 +82,4 @@ QDebug operator<<(QDebug dbg, PrimitiveDataType type); -#endif /* PRIMTIVEDATATYPE_H_ */ +#endif /* PRIMITIVEDATATYPE_H_ */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/datatypes/taggeduniondatainformation.h new/okteta-16.04.1/kasten/controllers/view/structures/datatypes/taggeduniondatainformation.h --- old/okteta-15.12.3/kasten/controllers/view/structures/datatypes/taggeduniondatainformation.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/datatypes/taggeduniondatainformation.h 2016-05-05 15:31:03.000000000 +0200 @@ -47,7 +47,7 @@ QVector<DataInformation*> fields; }; - TaggedUnionDataInformation(const QString& name, DataInformation* parent = 0); + explicit TaggedUnionDataInformation(const QString& name, DataInformation* parent = 0); virtual ~TaggedUnionDataInformation(); virtual qint64 readData(Okteta::AbstractByteArrayModel *input, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop new/okteta-16.04.1/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop --- old/okteta-15.12.3/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/examples/okteta/structures/test/metadata.desktop 2016-05-05 15:31:03.000000000 +0200 @@ -74,7 +74,7 @@ Comment[pl]=Kilka struktur testowych Comment[pt]=Algumas estruturas de teste Comment[pt_BR]=Algumas estruturas de testes -Comment[ro]=Cîteva structuri de test +Comment[ro]=Câteva structuri de test Comment[ru]=Несколько примеров структур данных Comment[sk]=Niekoľko testovacích štruktúr Comment[sl]=Nekaj preizkusnih struktur diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/parsers/osdparser.cpp new/okteta-16.04.1/kasten/controllers/view/structures/parsers/osdparser.cpp --- old/okteta-15.12.3/kasten/controllers/view/structures/parsers/osdparser.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/parsers/osdparser.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -306,7 +306,7 @@ DataInformation* OsdParser::parseChildElement(const QDomElement& xmlElem, const OsdParserInfo& info, const QString& name) { OsdParserInfo newInfo(info); - //instanciate a dummy so that a propert chain up to the root element exists + //instantiate a dummy so that a propert chain up to the root element exists DummyDataInformation dummy(info.parent, info.name); newInfo.parent = &dummy; newInfo.name = name; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/parsers/osdparser.h new/okteta-16.04.1/kasten/controllers/view/structures/parsers/osdparser.h --- old/okteta-15.12.3/kasten/controllers/view/structures/parsers/osdparser.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/parsers/osdparser.h 2016-05-05 15:31:03.000000000 +0200 @@ -57,7 +57,7 @@ /** construct a parser which opens parses @p absolutePath */ OsdParser(const QString& pluginName, const QString& absolutePath); /** construct a parser from an in-memory string */ - OsdParser(const QString& xml); + explicit OsdParser(const QString& xml); virtual ~OsdParser(); virtual QStringList parseStructureNames() const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/settings/structviewpreferences.kcfg new/okteta-16.04.1/kasten/controllers/view/structures/settings/structviewpreferences.kcfg --- old/okteta-15.12.3/kasten/controllers/view/structures/settings/structviewpreferences.kcfg 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/settings/structviewpreferences.kcfg 2016-05-05 15:31:03.000000000 +0200 @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> <kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 http://www.kde.org/standards/kcfg/1.0/kcfg.xsd"> - <kcfgfile name="oktetastructuresrc" /> <include>QSysInfo</include> <include>view/structures/datatypes/datainformationbase.h</include> + <kcfgfile name="oktetastructuresrc" /> <group name="ValueDisplay"> <entry name="UnsignedDisplayBase" type="Int"> <tooltip context="@info:tooltip">The base to use when converting unsigned numbers to a string.</tooltip> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/structuredefinitionfile.h new/okteta-16.04.1/kasten/controllers/view/structures/structuredefinitionfile.h --- old/okteta-15.12.3/kasten/controllers/view/structures/structuredefinitionfile.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/structuredefinitionfile.h 2016-05-05 15:31:03.000000000 +0200 @@ -49,8 +49,7 @@ * @param info the information about this structure definition * (passed by value so nothing bad can happen) */ - StructureDefinitionFile(KPluginInfo info); - StructureDefinitionFile(StructureDefinitionFile& f); + explicit StructureDefinitionFile(KPluginInfo info); virtual ~StructureDefinitionFile(); QVector<TopLevelDataInformation*> structures() const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/structuresmanager.cpp new/okteta-16.04.1/kasten/controllers/view/structures/structuresmanager.cpp --- old/okteta-15.12.3/kasten/controllers/view/structures/structuresmanager.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/structuresmanager.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -21,9 +21,9 @@ */ #include "structuresmanager.h" -#include "structviewpreferences.h" -#include "structlogging.h" + // tool +#include "structviewpreferences.h" #include "structuredefinitionfile.h" #include "structlogging.h" // Qt diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/controllers/view/structures/structviewitemdelegate.h new/okteta-16.04.1/kasten/controllers/view/structures/structviewitemdelegate.h --- old/okteta-15.12.3/kasten/controllers/view/structures/structviewitemdelegate.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/controllers/view/structures/structviewitemdelegate.h 2016-05-05 15:31:03.000000000 +0200 @@ -28,7 +28,7 @@ class StructViewItemDelegate: public QStyledItemDelegate { public: - StructViewItemDelegate(QObject * parent = 0); + explicit StructViewItemDelegate(QObject * parent = 0); virtual ~StructViewItemDelegate(); virtual void setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/core/io/filesystem/bytearrayrawfilereloadjob.h new/okteta-16.04.1/kasten/core/io/filesystem/bytearrayrawfilereloadjob.h --- old/okteta-15.12.3/kasten/core/io/filesystem/bytearrayrawfilereloadjob.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/core/io/filesystem/bytearrayrawfilereloadjob.h 2016-05-05 15:31:03.000000000 +0200 @@ -38,7 +38,7 @@ Q_OBJECT public: - ByteArrayRawFileReloadJob( ByteArrayRawFileSynchronizer *synchronizer ); + explicit ByteArrayRawFileReloadJob( ByteArrayRawFileSynchronizer *synchronizer ); virtual ~ByteArrayRawFileReloadJob(); protected: // AbstractFileSystemSyncFromRemoteJob API diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/core/io/filesystem/bytearrayrawfilewritejob.h new/okteta-16.04.1/kasten/core/io/filesystem/bytearrayrawfilewritejob.h --- old/okteta-15.12.3/kasten/core/io/filesystem/bytearrayrawfilewritejob.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/core/io/filesystem/bytearrayrawfilewritejob.h 2016-05-05 15:31:03.000000000 +0200 @@ -38,7 +38,7 @@ Q_OBJECT public: - ByteArrayRawFileWriteJob( ByteArrayRawFileSynchronizer *synchronizer ); + explicit ByteArrayRawFileWriteJob( ByteArrayRawFileSynchronizer *synchronizer ); virtual ~ByteArrayRawFileWriteJob(); protected: // AbstractFileSystemSyncToRemoteJob API diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/gui/io/generator/randomdata/bytearrayrandomdatagenerator.cpp new/okteta-16.04.1/kasten/gui/io/generator/randomdata/bytearrayrandomdatagenerator.cpp --- old/okteta-15.12.3/kasten/gui/io/generator/randomdata/bytearrayrandomdatagenerator.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/gui/io/generator/randomdata/bytearrayrandomdatagenerator.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -30,7 +30,6 @@ #include <QMimeData> #include <QByteArray> // C++ -#include <stdlib.h> #include <time.h> @@ -60,13 +59,13 @@ // TODO: use different RNG, with multiple characteristics and offer them in the config QMimeData* ByteArrayRandomDataGenerator::generateData() { - srand( (unsigned int)time(0) ); + qsrand( (unsigned int)time(0) ); const int insertDataSize = mSettings.size; QByteArray insertData( insertDataSize, '\0' ); for( int i=0; i < insertDataSize; ++i ) - insertData[i] = rand() % 256; // TODO: modulo is expensive, even if easy to use + insertData[i] = qrand() % 256; // TODO: modulo is expensive, even if easy to use QMimeData* mimeData = new QMimeData; mimeData->setData( mimeType(), insertData ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/gui/view/bytearrayjanusview.cpp new/okteta-16.04.1/kasten/gui/view/bytearrayjanusview.cpp --- old/okteta-15.12.3/kasten/gui/view/bytearrayjanusview.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/gui/view/bytearrayjanusview.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -114,6 +114,7 @@ connect( mView, &AbstractByteArrayView::substituteCharChanged, this, &ByteArrayJanusView::substituteCharChanged ); connect( mView, &AbstractByteArrayView::undefinedCharChanged, this, &ByteArrayJanusView::undefinedCharChanged ); connect( mView, &AbstractByteArrayView::noOfGroupedBytesChanged, this, &ByteArrayJanusView::noOfGroupedBytesChanged ); + connect( mView, &AbstractByteArrayView::zoomLevelChanged, this, &ByteArrayJanusView::zoomLevelChanged ); emit viewModusChanged( mViewModus ); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/gui/view/bytearrayjanusview.h new/okteta-16.04.1/kasten/gui/view/bytearrayjanusview.h --- old/okteta-15.12.3/kasten/gui/view/bytearrayjanusview.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/gui/view/bytearrayjanusview.h 2016-05-05 15:31:03.000000000 +0200 @@ -151,6 +151,7 @@ void substituteCharChanged( QChar substituteChar ); void undefinedCharChanged( QChar undefinedChar ); void noOfGroupedBytesChanged( int noOfGroupedBytes ); + void zoomLevelChanged( double level ); void viewModusChanged( int viewModus ); private: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/kasten/gui/view/bytearrayview.cpp new/okteta-16.04.1/kasten/gui/view/bytearrayview.cpp --- old/okteta-15.12.3/kasten/gui/view/bytearrayview.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/kasten/gui/view/bytearrayview.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -139,6 +139,7 @@ connect( mWidget, &ByteArrayJanusView::substituteCharChanged, this, &ByteArrayView::substituteCharChanged ); connect( mWidget, &ByteArrayJanusView::undefinedCharChanged, this, &ByteArrayView::undefinedCharChanged ); connect( mWidget, &ByteArrayJanusView::noOfGroupedBytesChanged, this, &ByteArrayView::noOfGroupedBytesChanged ); + connect( mWidget, &ByteArrayJanusView::zoomLevelChanged, this, &ByteArrayView::zoomLevelChanged ); connect( mWidget, &ByteArrayJanusView::viewModusChanged, this, &ByteArrayView::viewModusChanged ); } @@ -164,7 +165,6 @@ void ByteArrayView::setZoomLevel( double Level ) { mWidget->setZoomLevel( Level ); - emit zoomLevelChanged( mWidget->zoomLevel() ); } double ByteArrayView::zoomLevel() const diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/libs/kasten/controllers/shellwindow/fullscreen/fullscreencontroller.h new/okteta-16.04.1/libs/kasten/controllers/shellwindow/fullscreen/fullscreencontroller.h --- old/okteta-15.12.3/libs/kasten/controllers/shellwindow/fullscreen/fullscreencontroller.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/libs/kasten/controllers/shellwindow/fullscreen/fullscreencontroller.h 2016-05-05 15:31:03.000000000 +0200 @@ -39,7 +39,7 @@ Q_OBJECT public: - FullScreenController( KXmlGuiWindow *window ); + explicit FullScreenController( KXmlGuiWindow *window ); public: // AbstractXmlGuiController API virtual void setTargetModel( AbstractModel* model ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/libs/kasten/controllers/view/version/versioncontroller.h new/okteta-16.04.1/libs/kasten/controllers/view/version/versioncontroller.h --- old/okteta-15.12.3/libs/kasten/controllers/view/version/versioncontroller.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/libs/kasten/controllers/view/version/versioncontroller.h 2016-05-05 15:31:03.000000000 +0200 @@ -46,7 +46,7 @@ Q_OBJECT public: - VersionController( KXMLGUIClient* guiClient ); + explicit VersionController( KXMLGUIClient* guiClient ); public: // AbstractXmlGuiController API virtual void setTargetModel( AbstractModel* model ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/libs/kasten/controllers/view/zoom/zoomcontroller.h new/okteta-16.04.1/libs/kasten/controllers/view/zoom/zoomcontroller.h --- old/okteta-15.12.3/libs/kasten/controllers/view/zoom/zoomcontroller.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/libs/kasten/controllers/view/zoom/zoomcontroller.h 2016-05-05 15:31:03.000000000 +0200 @@ -45,7 +45,7 @@ Q_OBJECT public: - ZoomController( KXMLGUIClient* guiClient ); + explicit ZoomController( KXMLGUIClient* guiClient ); public: // AbstractXmlGuiController API virtual void setTargetModel( AbstractModel* model ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/libs/kasten/core/io/filesystem/abstractfilesystemsyncfromremotejob.h new/okteta-16.04.1/libs/kasten/core/io/filesystem/abstractfilesystemsyncfromremotejob.h --- old/okteta-15.12.3/libs/kasten/core/io/filesystem/abstractfilesystemsyncfromremotejob.h 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/libs/kasten/core/io/filesystem/abstractfilesystemsyncfromremotejob.h 2016-05-05 15:31:03.000000000 +0200 @@ -42,7 +42,7 @@ Q_OBJECT public: - AbstractFileSystemSyncFromRemoteJob( AbstractModelFileSystemSynchronizer* synchronizer ); + explicit AbstractFileSystemSyncFromRemoteJob( AbstractModelFileSystemSynchronizer* synchronizer ); virtual ~AbstractFileSystemSyncFromRemoteJob(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/program/about.cpp new/okteta-16.04.1/program/about.cpp --- old/okteta-15.12.3/program/about.cpp 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/program/about.cpp 2016-05-05 15:31:03.000000000 +0200 @@ -29,12 +29,12 @@ OktetaAboutData::OktetaAboutData() : KAboutData( QStringLiteral("okteta"), i18n("Okteta"), // name - QStringLiteral("0.18.2"), + QStringLiteral("0.19.1"), i18n("Hex editor"), // description KAboutLicense::GPL_V2, - i18n("Copyright 2006-2015 Friedrich W. H. Kossebau"), //copyright + i18n("Copyright 2006-2016 Friedrich W. H. Kossebau"), //copyright i18n("Edit the raw data of files"), // comment - QStringLiteral("http://userbase.kde.org/Okteta") ) + QStringLiteral("https://userbase.kde.org/Okteta") ) { addLicense(KAboutLicense::GPL_V3); setOrganizationDomain( "kde.org" ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/program/org.kde.okteta.appdata.xml new/okteta-16.04.1/program/org.kde.okteta.appdata.xml --- old/okteta-15.12.3/program/org.kde.okteta.appdata.xml 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/program/org.kde.okteta.appdata.xml 2016-05-05 15:31:03.000000000 +0200 @@ -14,7 +14,6 @@ <name xml:lang="de">Okteta</name> <name xml:lang="en-GB">Okteta</name> <name xml:lang="es">Okteta</name> - <name xml:lang="et">Okteta</name> <name xml:lang="fi">Okteta</name> <name xml:lang="fr">Okteta</name> <name xml:lang="gl">Okteta</name> @@ -47,7 +46,6 @@ <summary xml:lang="de">Hex-Editor</summary> <summary xml:lang="en-GB">Hex editor</summary> <summary xml:lang="es">Editor hexadecimal</summary> - <summary xml:lang="et">Binaarfailide redaktor</summary> <summary xml:lang="fi">Heksaeditori</summary> <summary xml:lang="fr">Éditeur hexadécimal</summary> <summary xml:lang="gl">Editor de bytes</summary> @@ -79,7 +77,6 @@ <p xml:lang="de">Okteta ist ein einfacher Editor für die Rohdaten von Dateien.</p> <p xml:lang="en-GB">Okteta is a simple editor for the raw data of files.</p> <p xml:lang="es">Okteta es un sencillo editor de archivos de datos en bruto.</p> - <p xml:lang="et">Okteta on lihtne failide toorandmete redaktor.</p> <p xml:lang="fi">Okteta on yksinkertainen editori tiedostojen raakadatalle.</p> <p xml:lang="fr">Okteta est un simple éditeur pour les données brutes des fichiers.</p> <p xml:lang="gl">Okteta é un editor sinxelo para os datos en bruto de ficheiros.</p> @@ -111,7 +108,6 @@ <p xml:lang="de">Funktionen:</p> <p xml:lang="en-GB">Features:</p> <p xml:lang="es">Funcionalidades:</p> - <p xml:lang="et">Omadused:</p> <p xml:lang="fi">Ominaisuudet:</p> <p xml:lang="fr">Fonctionnalités :</p> <p xml:lang="gl">Funcionalidades:</p> @@ -143,7 +139,6 @@ <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> - <li xml:lang="et">Väärtusi ja märke võib lasta näidata kahes veerus (niisuguste redaktorite tavapärane kuvamisviis) või ridades, kus väärtus on märgi peal</li> <li xml:lang="fi">Arvot ja merkit näytetään joko kahdessa sarakkeessa (niin kuin perinteisesti heksaeditoreissa) tai riveittäin arvo merkin yläpuolella</li> <li xml:lang="fr">Les valeurs et les caractères sont affichés soit en deux colonnes (affichage traditionnel des éditeurs hexadécimaux) soit en rangées avec la valeur au-dessus du caractère</li> <li xml:lang="gl">Os valores e caracteres poden mostrarse tanto en dúas columnas (a vista tradicional de editores de bytes) como en filas cos valores sobre os caracteres.</li> @@ -172,7 +167,6 @@ <li xml:lang="de">Bearbeiten und navigieren ähnlich wie in einem Texteditor</li> <li xml:lang="en-GB">Editing and navigating similar to a text editor</li> <li xml:lang="es">Edición y navegación similar a la de los editores de texto</li> - <li xml:lang="et">Redigeerimine ja liikumine nagu tavalises tekstiredaktoris</li> <li xml:lang="fi">Muokkaus ja siirtyminen kuin tekstieditorissa</li> <li xml:lang="fr">Édition et navigation similaires à un éditeur de texte</li> <li xml:lang="gl">Permite editar e examinar de maneira similar a un editor de texto simple.</li> @@ -201,7 +195,6 @@ <li xml:lang="de">Benutzerdefinierte Datenansichten mit Profilen, die gespeichert und geladen werden können.</li> <li xml:lang="en-GB">Customisable data views, with loadable and storable profiles</li> <li xml:lang="es">Vistas personalizadas de datos, con perfiles que se pueden guardar y cargar</li> - <li xml:lang="et">Kohandatavad andmevaated laaditavate ja salvestatavate profiilidega</li> <li xml:lang="fi">Muokattavissa olevat datanäkymät; ladattavat ja tallennettavat profiilit</li> <li xml:lang="fr">Vues de données personnalisables ; il est possible de charger et d'enregistrer des profils</li> <li xml:lang="gl">As vistas de datos poden personalizarse, e poden cargarse e almacenarse perfís.</li> @@ -230,7 +223,6 @@ <li xml:lang="de">Werkzeuge können an allen Seiten verankert oder freischwebend benutzt werden</li> <li xml:lang="en-GB">Tools dockable on all sides or floating</li> <li xml:lang="es">Cajas de herramientas empotrables o flotantes</li> - <li xml:lang="et">Tööriistad, mida saab dokkida igale küljele või muuta hõljuvaks</li> <li xml:lang="fi">Työkalut, jotka voi telakoida mihin tahansa laitaan tai antaa kellua vapaasti</li> <li xml:lang="fr">Les outils peuvent être disposés de chaque côté ou flottants</li> <li xml:lang="gl">As ferramentas poden acoplarse por toda a interface ou quedar flotando sobre ela.</li> @@ -259,7 +251,6 @@ <li xml:lang="de">Zahlenkodierung: Hexadezimal, Dezimal, Oktal und Binär</li> <li xml:lang="en-GB">Numerical encodings: Hexadecimal, Decimal, Octal, Binary</li> <li xml:lang="es">Codificaciones numéricas (hexadecimal, decimal, octal, binaria)</li> - <li xml:lang="et">Arvukodeeringud: kuueteistkümnend-, kümnend-, kaheksand- ja kahendsüsteemis</li> <li xml:lang="fi">Lukujen koodaukset: heksa, desimaali, oktaali, binaari</li> <li xml:lang="fr">Codage des valeurs : hexadécimal, décimal, octal, binaire</li> <li xml:lang="gl">Pode mostrar os valores numéricos en notacións hexadecimal, decimal, octal e binaria.</li> @@ -288,7 +279,6 @@ <li xml:lang="de">Zeichenkodierungen: Alle Kodierungen, die von Qt und EBCDIC unterstützt werden</li> <li xml:lang="en-GB">Character encodings: All 8-bit encodings as supplied by Qt, EBCDIC</li> <li xml:lang="es">Codificaciones de caracteres (todas las codificaciones de 8 bits que proporciona Qt, EBCDIC)</li> - <li xml:lang="et">Märgikodeeringud: kõik 8-bitised kodeeringud, mida toetab Qt, EBCDIC</li> <li xml:lang="fi">Merkkikoodaukset: Kaikki Qt:n tarjoamat 8-bittiset koodaukset sekä EBCDIC</li> <li xml:lang="fr">Codage des caractères : tout les codages 8 bits fournis par Qt, EBCDIC</li> <li xml:lang="gl">Pode mostrar os caracteres en todas as codificacións baseadas en 8 bits que fornece Qt, así como en EBCDIC.</li> @@ -317,7 +307,6 @@ <li xml:lang="de">Schnelles Rendern der Daten auf dem Bildschirm</li> <li xml:lang="en-GB">Fast data rendering on screen</li> <li xml:lang="es">Visualización rápida de datos en la pantalla</li> - <li xml:lang="et">Andmete kiire renderdamine ekraanil</li> <li xml:lang="fi">Datan nopea näyttäminen</li> <li xml:lang="fr">Rendu rapide des données à l'écran</li> <li xml:lang="gl">Os datos móstranse rapidamente na pantalla.</li> @@ -347,7 +336,6 @@ <li xml:lang="de">Mehrere geöffnete Dateien</li> <li xml:lang="en-GB">Multiple open files</li> <li xml:lang="es">Permite abrir varios archivos a la vez</li> - <li xml:lang="et">Paljude failide korraga avamise võimalus</li> <li xml:lang="fi">Useat avoimet tiedostot</li> <li xml:lang="fr">Ouverture de fichiers multiples</li> <li xml:lang="gl">Poden abrirse varios ficheiros de maneira simultánea.</li> @@ -377,7 +365,6 @@ <li xml:lang="de">Unterstützung für Zurücknehmen und Wiederherstellen</li> <li xml:lang="en-GB">Undo/redo support</li> <li xml:lang="es">Permite deshacer y rehacer acciones</li> - <li xml:lang="et">Tagasivõtmiste ja uuestitegemiste toetus</li> <li xml:lang="fi">Tuki muutosten kumoamiselle ja tekemiselle uudelleen</li> <li xml:lang="fr">Prise en charge de « annuler » et « refaire »</li> <li xml:lang="gl">Permite desfacer e refacer operacións.</li> @@ -406,7 +393,6 @@ <li xml:lang="de">Strukturen-Werkzeug für die Untersuchung und Bearbeitung auf der Basis von benutzerdefinierten Strukturdefinitionen</li> <li xml:lang="en-GB">Structures tool for analysing and editing based on user-creatable structure definitions</li> <li xml:lang="es">Herramientas de estructuras para analizar y editar basándose en definiciones de estructuras creadas por el usuario</li> - <li xml:lang="et">Struktuuride tööriist analüüsimiseks ja muutmiseks vastavalt kasutaja loodud struktuuridefinitsioonidele</li> <li xml:lang="fi">Rakennetyökalu datan analysointiin ja muokkaamiseen; perustuu rakennemääritelmiin, joita käyttäjät voivat luoda</li> <li xml:lang="fr">Outil de structures pour l'analyse et l'édition basé des définitions de structures créées par l'utilisateur</li> <li xml:lang="gl">Conta cunha ferramenta de estruturas para analizar e editar baseándose en definicións de estruturas creadas polo usuario.</li> @@ -437,7 +423,6 @@ <li xml:lang="de">Und noch mehr ...</li> <li xml:lang="en-GB">And more...</li> <li xml:lang="es">Y más...</li> - <li xml:lang="et">Ja veel palju muud...</li> <li xml:lang="fi">Ja muuta…</li> <li xml:lang="fr">Et plus…</li> <li xml:lang="gl">E máis…</li> @@ -463,12 +448,12 @@ <li xml:lang="zh-TW">還有更多...</li> </ul> </description> - <url type="homepage">http://userbase.kde.org/Okteta/</url> + <url type="homepage">https://userbase.kde.org/Okteta/</url> <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&product=okteta</url> - <url type="help">http://docs.kde.org/stable/en/kdesdk/okteta/index.html</url> + <url type="help">https://docs.kde.org/stable/en/kdesdk/okteta/index.html</url> <screenshots> <screenshot type="default"> - <image>http://kde.org/images/screenshots/okteta.png</image> + <image>https://kde.org/images/screenshots/okteta.png</image> </screenshot> </screenshots> <updatecontact>[email protected]</updatecontact> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/okteta-15.12.3/program/org.kde.okteta.desktop new/okteta-16.04.1/program/org.kde.okteta.desktop --- old/okteta-15.12.3/program/org.kde.okteta.desktop 2016-01-20 10:56:30.000000000 +0100 +++ new/okteta-16.04.1/program/org.kde.okteta.desktop 2016-05-05 15:31:03.000000000 +0200 @@ -1,5 +1,6 @@ [Desktop Entry] Name=Okteta +Name[ast]=Okteta Name[bs]=Okteta Name[ca]=Okteta Name[ca@valencia]=Okteta
