Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kquickcharts for openSUSE:Factory 
checked in at 2022-09-13 15:09:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kquickcharts (Old)
 and      /work/SRC/openSUSE:Factory/.kquickcharts.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kquickcharts"

Tue Sep 13 15:09:01 2022 rev:34 rq:1002851 version:5.98.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kquickcharts/kquickcharts.changes        
2022-08-15 19:59:41.345305854 +0200
+++ /work/SRC/openSUSE:Factory/.kquickcharts.new.2083/kquickcharts.changes      
2022-09-13 15:10:35.168844809 +0200
@@ -1,0 +2,11 @@
+Tue Sep  6 07:17:16 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.98.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.98.0
+- Changes since 5.97.0:
+  * Use backend-agnostic QSGGeometry attribute types
+  * PieChart: fix data normalization
+
+-------------------------------------------------------------------

Old:
----
  kquickcharts-5.97.0.tar.xz
  kquickcharts-5.97.0.tar.xz.sig

New:
----
  kquickcharts-5.98.0.tar.xz
  kquickcharts-5.98.0.tar.xz.sig

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

Other differences:
------------------
++++++ kquickcharts.spec ++++++
--- /var/tmp/diff_new_pack.pWA084/_old  2022-09-13 15:10:35.544845868 +0200
+++ /var/tmp/diff_new_pack.pWA084/_new  2022-09-13 15:10:35.548845879 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%define _tar_path 5.97
+%define _tar_path 5.98
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without released
 Name:           kquickcharts
-Version:        5.97.0
+Version:        5.98.0
 Release:        0
 Summary:        Set of charts for QtQuick applications
 License:        LGPL-2.1-or-later


++++++ kquickcharts-5.97.0.tar.xz -> kquickcharts-5.98.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-5.97.0/CMakeLists.txt 
new/kquickcharts-5.98.0/CMakeLists.txt
--- old/kquickcharts-5.97.0/CMakeLists.txt      2022-08-07 14:21:53.000000000 
+0200
+++ new/kquickcharts-5.98.0/CMakeLists.txt      2022-09-05 11:30:04.000000000 
+0200
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.97.0") # handled by release scripts
-set(KF_DEP_VERSION "5.97.0") # handled by release scripts
+set(KF_VERSION "5.98.0") # handled by release scripts
+set(KF_DEP_VERSION "5.98.0") # handled by release scripts
 
 project(KQuickCharts VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.97.0 NO_MODULE)
+find_package(ECM 5.98.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-5.97.0/src/PieChart.cpp 
new/kquickcharts-5.98.0/src/PieChart.cpp
--- old/kquickcharts-5.97.0/src/PieChart.cpp    2022-08-07 14:21:53.000000000 
+0200
+++ new/kquickcharts-5.98.0/src/PieChart.cpp    2022-09-05 11:30:04.000000000 
+0200
@@ -245,7 +245,7 @@
         }
 
         for (auto &value : sections) {
-            value = value / range.end;
+            value = value / range.distance;
         }
 
         m_sections << sections;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-5.97.0/src/scenegraph/BarChartNode.cpp 
new/kquickcharts-5.98.0/src/scenegraph/BarChartNode.cpp
--- old/kquickcharts-5.97.0/src/scenegraph/BarChartNode.cpp     2022-08-07 
14:21:53.000000000 +0200
+++ new/kquickcharts-5.98.0/src/scenegraph/BarChartNode.cpp     2022-09-05 
11:30:04.000000000 +0200
@@ -41,10 +41,10 @@
 
 /* clang-format off */
 QSGGeometry::Attribute BarAttributes[] = {
-    QSGGeometry::Attribute::create(0, 2, GL_FLOAT, true),
-    QSGGeometry::Attribute::create(1, 2, GL_FLOAT, false),
-    QSGGeometry::Attribute::create(2, 4, GL_FLOAT, false),
-    QSGGeometry::Attribute::create(3, 1, GL_FLOAT, false)
+    QSGGeometry::Attribute::create(0, 2, QSGGeometry::FloatType, true),
+    QSGGeometry::Attribute::create(1, 2, QSGGeometry::FloatType, false),
+    QSGGeometry::Attribute::create(2, 4, QSGGeometry::FloatType, false),
+    QSGGeometry::Attribute::create(3, 1, QSGGeometry::FloatType, false)
 };
 /* clang-format on */
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kquickcharts-5.97.0/src/scenegraph/LineSegmentNode.cpp 
new/kquickcharts-5.98.0/src/scenegraph/LineSegmentNode.cpp
--- old/kquickcharts-5.97.0/src/scenegraph/LineSegmentNode.cpp  2022-08-07 
14:21:53.000000000 +0200
+++ new/kquickcharts-5.98.0/src/scenegraph/LineSegmentNode.cpp  2022-09-05 
11:30:04.000000000 +0200
@@ -74,25 +74,25 @@
 
 /* clang-format off */
 QSGGeometry::Attribute LineAttributes[] = {
-    QSGGeometry::Attribute::create(0, 2, GL_FLOAT, true), // in_position
-    QSGGeometry::Attribute::create(1, 2, GL_FLOAT, false), // in_uv
+    QSGGeometry::Attribute::create(0, 2, QSGGeometry::FloatType, true), // 
in_position
+    QSGGeometry::Attribute::create(1, 2, QSGGeometry::FloatType, false), // 
in_uv
 
-    QSGGeometry::Attribute::create(2, 4, GL_FLOAT, false), // in_lineColor
-    QSGGeometry::Attribute::create(3, 4, GL_FLOAT, false), // in_fillColor
+    QSGGeometry::Attribute::create(2, 4, QSGGeometry::FloatType, false), // 
in_lineColor
+    QSGGeometry::Attribute::create(3, 4, QSGGeometry::FloatType, false), // 
in_fillColor
 
-    QSGGeometry::Attribute::create(4, 2, GL_FLOAT, false), // in_bounds
+    QSGGeometry::Attribute::create(4, 2, QSGGeometry::FloatType, false), // 
in_bounds
 
-    QSGGeometry::Attribute::create(5, 1, GL_FLOAT, false), // in_count
-
-    QSGGeometry::Attribute::create(6, 4, GL_FLOAT, false), // in_points_0
-    QSGGeometry::Attribute::create(7, 4, GL_FLOAT, false), // in_points_1
-    QSGGeometry::Attribute::create(8, 4, GL_FLOAT, false), // in_points_2
-    QSGGeometry::Attribute::create(9, 4, GL_FLOAT, false), // in_points_3
-    QSGGeometry::Attribute::create(10, 4, GL_FLOAT, false), // in_points_4
-    QSGGeometry::Attribute::create(11, 4, GL_FLOAT, false), // in_points_5
-    QSGGeometry::Attribute::create(12, 4, GL_FLOAT, false), // in_points_6
-    QSGGeometry::Attribute::create(13, 4, GL_FLOAT, false), // in_points_7
-    QSGGeometry::Attribute::create(14, 4, GL_FLOAT, false), // in_points_8
+    QSGGeometry::Attribute::create(5, 1, QSGGeometry::FloatType, false), // 
in_count
+
+    QSGGeometry::Attribute::create(6, 4, QSGGeometry::FloatType, false), // 
in_points_0
+    QSGGeometry::Attribute::create(7, 4, QSGGeometry::FloatType, false), // 
in_points_1
+    QSGGeometry::Attribute::create(8, 4, QSGGeometry::FloatType, false), // 
in_points_2
+    QSGGeometry::Attribute::create(9, 4, QSGGeometry::FloatType, false), // 
in_points_3
+    QSGGeometry::Attribute::create(10, 4, QSGGeometry::FloatType, false), // 
in_points_4
+    QSGGeometry::Attribute::create(11, 4, QSGGeometry::FloatType, false), // 
in_points_5
+    QSGGeometry::Attribute::create(12, 4, QSGGeometry::FloatType, false), // 
in_points_6
+    QSGGeometry::Attribute::create(13, 4, QSGGeometry::FloatType, false), // 
in_points_7
+    QSGGeometry::Attribute::create(14, 4, QSGGeometry::FloatType, false), // 
in_points_8
 };
 /* clang-format on */
 

Reply via email to