Hello community,

here is the log from the commit of package analitza for openSUSE:Factory 
checked in at 2018-08-24 17:06:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/analitza (Old)
 and      /work/SRC/openSUSE:Factory/.analitza.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "analitza"

Fri Aug 24 17:06:01 2018 rev:82 rq:630180 version:18.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/analitza/analitza.changes        2018-07-19 
22:50:11.338916553 +0200
+++ /work/SRC/openSUSE:Factory/.analitza.new/analitza.changes   2018-08-24 
17:06:10.414218810 +0200
@@ -1,0 +2,21 @@
+Thu Aug 16 22:00:03 UTC 2018 - [email protected]
+
+- Update to 18.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.0.php
+- Changes since 18.07.80:
+  * Make the HelpTip widget a tooltip 
+
+-------------------------------------------------------------------
+Thu Jul 26 13:00:24 UTC 2018 - [email protected]
+
+- Update to 18.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.07.80.php
+- Changes since 18.04.3:
+  * Don't have two tests with the same name
+  * Fix comparison in some 32bit machines (kde#393487)
+
+-------------------------------------------------------------------

Old:
----
  analitza-18.04.3.tar.xz

New:
----
  analitza-18.08.0.tar.xz

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

Other differences:
------------------
++++++ analitza.spec ++++++
--- /var/tmp/diff_new_pack.IQaYym/_old  2018-08-24 17:06:10.938219432 +0200
+++ /var/tmp/diff_new_pack.IQaYym/_new  2018-08-24 17:06:10.942219437 +0200
@@ -19,11 +19,11 @@
 %bcond_without lang
 
 Name:           analitza
-Version:        18.04.3
+Version:        18.08.0
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
-%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
+%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Summary:        A library to add mathematical features to programs
 License:        LGPL-2.1+
 Group:          System/GUI/KDE

++++++ analitza-18.04.3.tar.xz -> analitza-18.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/analitza/commands/listcommands.cpp 
new/analitza-18.08.0/analitza/commands/listcommands.cpp
--- old/analitza-18.04.3/analitza/commands/listcommands.cpp     2018-01-05 
13:55:59.000000000 +0100
+++ new/analitza-18.08.0/analitza/commands/listcommands.cpp     2018-07-23 
18:59:13.000000000 +0200
@@ -69,8 +69,9 @@
     
     Analitza::List *seq = new Analitza::List;
         
-    for (double x = a; x <= b; x += h)
+    for (double x = a; x < b || qFuzzyCompare(x, b); x += h) {
         seq->appendBranch(new Analitza::Cn(x));
+    }
     
     ret.setTree(seq);
     
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/analitza/tests/commandstest.cpp 
new/analitza-18.08.0/analitza/tests/commandstest.cpp
--- old/analitza-18.04.3/analitza/tests/commandstest.cpp        2018-01-05 
13:55:59.000000000 +0100
+++ new/analitza-18.08.0/analitza/tests/commandstest.cpp        2018-07-23 
18:59:13.000000000 +0200
@@ -57,11 +57,11 @@
     
     script.clear();
     script << QStringLiteral("range(-1.5, 2)");
-    QTest::newRow("range(a,b)") << script << "list { -1.5, -0.5, 0.5, 1.5 }";
+    QTest::newRow("range(-1.5, 2)") << script << "list { -1.5, -0.5, 0.5, 1.5 
}";
     
     script.clear();
     script << QStringLiteral("range(0, 1, 0.2)");
-    QTest::newRow("range(a,b)") << script << "list { 0, 0.2, 0.4, 0.6, 0.8, 1 
}";
+    QTest::newRow("range(0, 1, 0.2)") << script << "list { 0, 0.2, 0.4, 0.6, 
0.8, 1 }";
     
     script.clear();
     script << QStringLiteral("vector(3, -2.3)");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/analitzawidgets/expressionedit.cpp 
new/analitza-18.08.0/analitzawidgets/expressionedit.cpp
--- old/analitza-18.04.3/analitzawidgets/expressionedit.cpp     2018-01-05 
13:55:59.000000000 +0100
+++ new/analitza-18.08.0/analitzawidgets/expressionedit.cpp     2018-07-23 
18:59:13.000000000 +0200
@@ -41,7 +41,7 @@
 {
     public:
         HelpTip(QWidget* parent)
-            : QLabel(parent, Qt::WindowStaysOnTopHint | 
Qt::FramelessWindowHint | Qt::Tool | Qt::X11BypassWindowManagerHint)
+            : QLabel(parent, Qt::WindowStaysOnTopHint | 
Qt::FramelessWindowHint | Qt::ToolTip | Qt::X11BypassWindowManagerHint)
         {
             setFrameShape(QFrame::Box);
             setFocusPolicy(Qt::NoFocus);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/poqm/ca@valencia/analitza_qt.po 
new/analitza-18.08.0/poqm/ca@valencia/analitza_qt.po
--- old/analitza-18.04.3/poqm/ca@valencia/analitza_qt.po        2018-07-10 
02:04:06.000000000 +0200
+++ new/analitza-18.08.0/poqm/ca@valencia/analitza_qt.po        2018-08-10 
02:03:28.000000000 +0200
@@ -1238,3 +1238,61 @@
 msgctxt "QCoreApplication|"
 msgid "Selected viewport too small"
 msgstr "La finestra de visualització seleccionada és massa petita"
+
+#~ msgctxt "QObject|"
+#~ msgid "PNG File (*.png)"
+#~ msgstr "Fitxer PNG (*.png)"
+
+#~ msgctxt "NAME OF TRANSLATORS"
+#~ msgid "Your names"
+#~ msgstr "Orestes Mas Casals"
+
+#~ msgctxt "EMAIL OF TRANSLATORS"
+#~ msgid "Your emails"
+#~ msgstr "[email protected]"
+
+#~ msgctxt "Parameter in function prototype"
+#~ msgid "par%1"
+#~ msgstr "par%1"
+
+#~ msgctxt "Function parameter separator"
+#~ msgid ", "
+#~ msgstr ", "
+
+#, fuzzy
+#~| msgid "Hyperbolic secant"
+#~ msgctxt "dictionary"
+#~ msgid "Hiperbola"
+#~ msgstr "Secant hiperbòlica"
+
+#~ msgid "Function type not correct for functions depending on %1"
+#~ msgstr "El tipus de funció no és correcte per funcions que depenen de %1"
+
+#~ msgctxt ""
+#~ "This function can't be represented as a curve. To draw implicit curve, "
+#~ "the function has to satisfy the implicit function theorem."
+#~ msgid "Implicit function undefined in the plane"
+#~ msgstr "la funció implícita no està definida en el pla"
+
+#~ msgid "center"
+#~ msgstr "centre"
+
+#~ msgctxt "@title:column"
+#~ msgid "Function"
+#~ msgstr "Funció"
+
+#~ msgid "%1 function added"
+#~ msgstr "S'ha afegit la funció %1"
+
+#~ msgid "Hide '%1'"
+#~ msgstr "Oculta «%1»"
+
+#~ msgid "Show '%1'"
+#~ msgstr "Mostra «%1»"
+
+#~ msgid "Remove '%1'"
+#~ msgstr "Elimina «%1»"
+
+#~ msgctxt "Error message"
+#~ msgid "Unknown token %1"
+#~ msgstr "Token desconegut: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/poqm/fr/analitza_qt.po 
new/analitza-18.08.0/poqm/fr/analitza_qt.po
--- old/analitza-18.04.3/poqm/fr/analitza_qt.po 2018-07-10 02:04:06.000000000 
+0200
+++ new/analitza-18.08.0/poqm/fr/analitza_qt.po 2018-08-10 02:03:28.000000000 
+0200
@@ -3,6 +3,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-02-16 03:26+0000\n"
 "PO-Revision-Date: 2018-01-08 16:53+0800\n"
 "Last-Translator: Simon Depiets <[email protected]>\n"
@@ -16,7 +17,6 @@
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: qtrich\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "X-Qt-Contexts: true\n"
 
 msgctxt "QObject|dictionary"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/poqm/gl/analitza_qt.po 
new/analitza-18.08.0/poqm/gl/analitza_qt.po
--- old/analitza-18.04.3/poqm/gl/analitza_qt.po 2018-07-10 02:04:07.000000000 
+0200
+++ new/analitza-18.08.0/poqm/gl/analitza_qt.po 2018-08-10 02:03:28.000000000 
+0200
@@ -4,14 +4,14 @@
 # Xosé <[email protected]>, 2011, 2012.
 # Marce Villarino <[email protected]>, 2012, 2013, 2014.
 # Adrián Chaves Fernández <[email protected]>, 2015.
-# Adrián Chaves (Gallaecio) <[email protected]>, 2017.
+# Adrián Chaves (Gallaecio) <[email protected]>, 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-02-16 03:26+0000\n"
-"PO-Revision-Date: 2017-10-15 17:07+0100\n"
-"Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
+"PO-Revision-Date: 2018-03-30 17:22+0100\n"
+"Last-Translator: Adrian Chaves <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -161,7 +161,7 @@
 #, qt-format
 msgctxt "QCoreApplication|"
 msgid "To use '%1' command the input matrix must be square"
-msgstr "Para usar a orde «%1» a matriz de entrada ten que ser cadrada."
+msgstr "Para usar a orde «%1» a matriz de entrada ten que cadrarse."
 
 #: analitza/commands/eigencommands.cpp:68
 #: analitza/commands/eigencommands.cpp:74
@@ -311,7 +311,7 @@
 #, qt-format
 msgctxt "there was an element that was not a conditional inside a condition|"
 msgid "%1 is not a proper condition inside the piecewise"
-msgstr "%1 non é unha condición apropiada dentro do conxunto de pezas"
+msgstr "%1 non é unha condición axeitada dentro do conxunto de pezas"
 
 #: analitza/expression.cpp:273
 msgctxt "QCoreApplication|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/analitza-18.04.3/poqm/zh_CN/analitza_qt.po 
new/analitza-18.08.0/poqm/zh_CN/analitza_qt.po
--- old/analitza-18.04.3/poqm/zh_CN/analitza_qt.po      2018-07-10 
02:04:07.000000000 +0200
+++ new/analitza-18.08.0/poqm/zh_CN/analitza_qt.po      2018-08-10 
02:03:28.000000000 +0200
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2018-07-03 17:42\n"
+"PO-Revision-Date: 2018-07-24 08:48\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/analitza-18.04.3/poqm/zh_TW/analitza_qt.po 
new/analitza-18.08.0/poqm/zh_TW/analitza_qt.po
--- old/analitza-18.04.3/poqm/zh_TW/analitza_qt.po      2018-07-10 
02:04:07.000000000 +0200
+++ new/analitza-18.08.0/poqm/zh_TW/analitza_qt.po      2018-08-10 
02:03:28.000000000 +0200
@@ -1215,57 +1215,3 @@
 msgctxt "QCoreApplication|"
 msgid "Selected viewport too small"
 msgstr "選取的檢視埠太小"
-
-#~ msgctxt "NAME OF TRANSLATORS"
-#~ msgid "Your names"
-#~ msgstr "Frank Weng (a.k.a. Franklin)"
-
-#~ msgctxt "EMAIL OF TRANSLATORS"
-#~ msgid "Your emails"
-#~ msgstr "[email protected]"
-
-#~ msgctxt "Parameter in function prototype"
-#~ msgid "par%1"
-#~ msgstr "par%1"
-
-#~ msgctxt "Function parameter separator"
-#~ msgid ", "
-#~ msgstr ", "
-
-#, fuzzy
-#~| msgid "Hyperbolic secant"
-#~ msgctxt "dictionary"
-#~ msgid "Hiperbola"
-#~ msgstr "雙曲正割"
-
-#~ msgid "Function type not correct for functions depending on %1"
-#~ msgstr "相依於 %1 的函式的型態不正確"
-
-#~ msgctxt ""
-#~ "This function can't be represented as a curve. To draw implicit curve, "
-#~ "the function has to satisfy the implicit function theorem."
-#~ msgid "Implicit function undefined in the plane"
-#~ msgstr "隱式函式(Implicit function)在平面中未定義"
-
-#~ msgid "center"
-#~ msgstr "圓心"
-
-#~ msgctxt "@title:column"
-#~ msgid "Function"
-#~ msgstr "函數"
-
-#~ msgid "%1 function added"
-#~ msgstr "已新增 %1 函數"
-
-#~ msgid "Hide '%1'"
-#~ msgstr "隱藏 '%1'"
-
-#~ msgid "Show '%1'"
-#~ msgstr "顯示 '%1'"
-
-#~ msgid "Remove '%1'"
-#~ msgstr "移除 '%1'"
-
-#~ msgctxt "Error message"
-#~ msgid "Unknown token %1"
-#~ msgstr "未知的標記 %1"


Reply via email to