Hello community, here is the log from the commit of package kig for openSUSE:Factory checked in at 2018-06-15 14:41:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kig (Old) and /work/SRC/openSUSE:Factory/.kig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kig" Fri Jun 15 14:41:40 2018 rev:91 rq:615537 version:18.04.2 Changes: -------- --- /work/SRC/openSUSE:Factory/kig/kig.changes 2018-05-16 18:40:14.866209908 +0200 +++ /work/SRC/openSUSE:Factory/.kig.new/kig.changes 2018-06-15 14:41:45.330261825 +0200 @@ -1,0 +2,11 @@ +Fri Jun 08 05:06:47 UTC 2018 - [email protected] + +- Update to 18.04.2 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-18.04.2.php +- Changes since 18.04.1: + * Fix bug 394676 + * Fix the value range of the rgb color pen in asymptote exporter + +------------------------------------------------------------------- Old: ---- kig-18.04.1.tar.xz New: ---- kig-18.04.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kig.spec ++++++ --- /var/tmp/diff_new_pack.68IdBz/_old 2018-06-15 14:41:46.414222175 +0200 +++ /var/tmp/diff_new_pack.68IdBz/_new 2018-06-15 14:41:46.418222028 +0200 @@ -19,7 +19,7 @@ %bcond_without lang Name: kig -Version: 18.04.1 +Version: 18.04.2 Release: 0 %define kf5_version 5.26.0 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) ++++++ kig-18.04.1.tar.xz -> kig-18.04.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-18.04.1/filters/asyexporterimpvisitor.cc new/kig-18.04.2/filters/asyexporterimpvisitor.cc --- old/kig-18.04.1/filters/asyexporterimpvisitor.cc 2018-03-06 15:38:41.000000000 +0100 +++ new/kig-18.04.2/filters/asyexporterimpvisitor.cc 2018-06-02 14:28:33.000000000 +0200 @@ -43,7 +43,7 @@ { QString pencolor(""); // Asymptote definition of pen color - pencolor = "rgb(" + QString::number(c.red()) + "," + QString::number(c.green()) + "," + QString::number(c.blue()) + ")"; + pencolor = "rgb(" + QString::number(c.red()/255.0) + "," + QString::number(c.green()/255.0) + "," + QString::number(c.blue()/255.0) + ")"; return pencolor; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-18.04.1/objects/line_imp.cc new/kig-18.04.2/objects/line_imp.cc --- old/kig-18.04.1/objects/line_imp.cc 2018-03-06 15:38:41.000000000 +0100 +++ new/kig-18.04.2/objects/line_imp.cc 2018-06-02 14:28:33.000000000 +0200 @@ -628,7 +628,39 @@ else if ( which == Parent::numberOfProperties() + pnum++ ) return false; else if ( which == Parent::numberOfProperties() + pnum++ ) + return false; + else assert( false ); + return false; +} + +bool SegmentImp::isPropertyDefinedOnOrThroughThisImp( int which ) const +{ + int pnum = 0; + + if ( which < Parent::numberOfProperties() ) + return Parent::isPropertyDefinedOnOrThroughThisImp( which ); + else if ( which == Parent::numberOfProperties() + pnum++ ) + return false; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) return true; + else assert( false ); + return false; +} + +bool RayImp::isPropertyDefinedOnOrThroughThisImp( int which ) const +{ + int pnum = 0; + + if ( which < Parent::numberOfProperties() ) + return Parent::isPropertyDefinedOnOrThroughThisImp( which ); else if ( which == Parent::numberOfProperties() + pnum++ ) return true; else if ( which == Parent::numberOfProperties() + pnum++ ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-18.04.1/objects/line_imp.h new/kig-18.04.2/objects/line_imp.h --- old/kig-18.04.1/objects/line_imp.h 2018-03-06 15:38:41.000000000 +0100 +++ new/kig-18.04.2/objects/line_imp.h 2018-06-02 14:28:33.000000000 +0200 @@ -113,6 +113,7 @@ ObjectImp* property( int which, const KigDocument& d ) const Q_DECL_OVERRIDE; const char* iconForProperty( int which ) const Q_DECL_OVERRIDE; const ObjectImpType* impRequirementForProperty( int which ) const Q_DECL_OVERRIDE; + bool isPropertyDefinedOnOrThroughThisImp( int which ) const Q_DECL_OVERRIDE; SegmentImp* copy() const Q_DECL_OVERRIDE; @@ -168,6 +169,7 @@ ObjectImp* property( int which, const KigDocument& d ) const Q_DECL_OVERRIDE; const char* iconForProperty( int which ) const Q_DECL_OVERRIDE; const ObjectImpType* impRequirementForProperty( int which ) const Q_DECL_OVERRIDE; + bool isPropertyDefinedOnOrThroughThisImp( int which ) const Q_DECL_OVERRIDE; RayImp* copy() const Q_DECL_OVERRIDE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-18.04.1/po/zh_CN/kfile_drgeo.po new/kig-18.04.2/po/zh_CN/kfile_drgeo.po --- old/kig-18.04.1/po/zh_CN/kfile_drgeo.po 2018-05-08 02:08:02.000000000 +0200 +++ new/kig-18.04.2/po/zh_CN/kfile_drgeo.po 2018-06-05 02:16:34.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:13+0100\n" -"PO-Revision-Date: 2018-04-26 06:11-0400\n" +"PO-Revision-Date: 2018-05-18 06:32-0400\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-18.04.1/po/zh_CN/kfile_kig.po new/kig-18.04.2/po/zh_CN/kfile_kig.po --- old/kig-18.04.1/po/zh_CN/kfile_kig.po 2018-05-08 02:08:02.000000000 +0200 +++ new/kig-18.04.2/po/zh_CN/kfile_kig.po 2018-06-05 02:16:34.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:13+0100\n" -"PO-Revision-Date: 2018-04-26 06:11-0400\n" +"PO-Revision-Date: 2018-05-18 06:32-0400\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-18.04.1/po/zh_CN/kig.po new/kig-18.04.2/po/zh_CN/kig.po --- old/kig-18.04.1/po/zh_CN/kig.po 2018-05-08 02:08:02.000000000 +0200 +++ new/kig-18.04.2/po/zh_CN/kig.po 2018-06-05 02:16:34.000000000 +0200 @@ -12,7 +12,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2018-03-07 03:24+0100\n" -"PO-Revision-Date: 2018-04-26 06:11-0400\n" +"PO-Revision-Date: 2018-05-18 06:32-0400\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -1082,7 +1082,7 @@ #: kig/kigpartui.rc:27 #, kde-format msgid "&View" -msgstr "查看(&V)" +msgstr "视图(&V)" #. i18n: ectx: Menu (objects) #: kig/kigpartui.rc:35 @@ -3286,7 +3286,7 @@ #: modes/typesdialog.cpp:486 #, kde-format msgid "All Files (*)" -msgstr "全部文件 (*)" +msgstr "所有文件 (*)" #: modes/typesdialog.cpp:487 #, kde-format
