commit qt6-charts for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6-charts for openSUSE:Factory checked in at 2024-10-03 18:01:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-charts (Old) and /work/SRC/openSUSE:Factory/.qt6-charts.new.19354 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "qt6-charts" Thu Oct 3 18:01:49 2024 rev:29 rq:1205119 version:6.7.3 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-charts/qt6-charts.changes 2024-06-24 20:49:36.448216646 +0200 +++ /work/SRC/openSUSE:Factory/.qt6-charts.new.19354/qt6-charts.changes 2024-10-03 18:01:49.757807411 +0200 @@ -1,0 +2,6 @@ +Sat Sep 28 08:22:55 UTC 2024 - Christophe Marin <christophe@krop.fr> + +- Update to 6.7.3 + * https://www.qt.io/blog/qt-6.7.3-released + +------------------------------------------------------------------- Old: ---- qtcharts-everywhere-src-6.7.2.tar.xz New: ---- qtcharts-everywhere-src-6.7.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-charts.spec ++++++ --- /var/tmp/diff_new_pack.HDwhWp/_old 2024-10-03 18:01:50.837852376 +0200 +++ /var/tmp/diff_new_pack.HDwhWp/_new 2024-10-03 18:01:50.841852543 +0200 @@ -16,7 +16,7 @@ # -%define real_version 6.7.2 +%define real_version 6.7.3 %define short_version 6.7 %define short_name qtcharts %define tar_name qtcharts-everywhere-src @@ -28,7 +28,7 @@ %endif # Name: qt6-charts%{?pkg_suffix} -Version: 6.7.2 +Version: 6.7.3 Release: 0 Summary: Qt 6 Charts library License: GPL-3.0-or-later ++++++ qtcharts-everywhere-src-6.7.2.tar.xz -> qtcharts-everywhere-src-6.7.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtcharts-everywhere-src-6.7.2/.cmake.conf new/qtcharts-everywhere-src-6.7.3/.cmake.conf --- old/qtcharts-everywhere-src-6.7.2/.cmake.conf 2024-06-08 04:17:06.000000000 +0200 +++ new/qtcharts-everywhere-src-6.7.3/.cmake.conf 2024-09-19 23:16:10.000000000 +0200 @@ -1,4 +1,4 @@ -set(QT_REPO_MODULE_VERSION "6.7.2") +set(QT_REPO_MODULE_VERSION "6.7.3") set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1") set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_AS_CONST=1") list(APPEND QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_FOREACH=1") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtcharts-everywhere-src-6.7.2/.tag new/qtcharts-everywhere-src-6.7.3/.tag --- old/qtcharts-everywhere-src-6.7.2/.tag 2024-06-08 04:17:06.000000000 +0200 +++ new/qtcharts-everywhere-src-6.7.3/.tag 2024-09-19 23:16:10.000000000 +0200 @@ -1 +1 @@ -f7d0fbc2a5cda51ccf6a182a2a1681165d06209b +018428f7b6dab8d87550c12f9812d8bf82eff9b2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtcharts-everywhere-src-6.7.2/dependencies.yaml new/qtcharts-everywhere-src-6.7.3/dependencies.yaml --- old/qtcharts-everywhere-src-6.7.2/dependencies.yaml 2024-06-08 04:17:06.000000000 +0200 +++ new/qtcharts-everywhere-src-6.7.3/dependencies.yaml 2024-09-19 23:16:10.000000000 +0200 @@ -1,10 +1,10 @@ dependencies: ../qtbase: - ref: b5fbe0923cfc566036b83c3d968f225b26117efc + ref: 92b685784960eea6eb353688cf0edeb94d69c6cd required: true ../qtdeclarative: - ref: 12533cc0bd83a2076efb4af0bc1832b0db9568fc + ref: 34ffe0c15a9564fefcf01a738eb0bde370399959 required: false ../qtmultimedia: - ref: a3f871eb133673ea5460425712cc68d7458bf0ef + ref: 18432b64c292b585f1bb1faf4570113d7162efdc required: false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtcharts-everywhere-src-6.7.2/src/charts/axis/horizontalaxis.cpp new/qtcharts-everywhere-src-6.7.3/src/charts/axis/horizontalaxis.cpp --- old/qtcharts-everywhere-src-6.7.2/src/charts/axis/horizontalaxis.cpp 2024-06-08 04:17:06.000000000 +0200 +++ new/qtcharts-everywhere-src-6.7.3/src/charts/axis/horizontalaxis.cpp 2024-09-19 23:16:10.000000000 +0200 @@ -24,6 +24,10 @@ { Q_UNUSED(constraint); QSizeF sh(0,0); + // Size hint from here is used as the base for label size hints; if labels are not + // visible, we need to increase the size or we end up showing "..." when + // the title should be visible + qreal labelPaddingFactor = labelsVisible() ? 1 : 2; if (axis()->titleText().isEmpty() || !titleItem()->isVisible()) return sh; @@ -32,13 +36,16 @@ case Qt::MinimumSize: { QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), QStringLiteral("...")); - sh = QSizeF(titleRect.width(), titleRect.height() + (titlePadding() * 2.0)); + sh = QSizeF(titleRect.width(), + labelPaddingFactor * (titleRect.height() + (titlePadding() * 2.0))); break; } case Qt::MaximumSize: case Qt::PreferredSize: { - QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), axis()->titleText()); - sh = QSizeF(titleRect.width(), titleRect.height() + (titlePadding() * 2.0)); + QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), + axis()->titleText()); + sh = QSizeF(titleRect.width(), + labelPaddingFactor * (titleRect.height() + (titlePadding() * 2.0))); break; } default: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtcharts-everywhere-src-6.7.2/src/charts/axis/verticalaxis.cpp new/qtcharts-everywhere-src-6.7.3/src/charts/axis/verticalaxis.cpp --- old/qtcharts-everywhere-src-6.7.2/src/charts/axis/verticalaxis.cpp 2024-06-08 04:17:06.000000000 +0200 +++ new/qtcharts-everywhere-src-6.7.3/src/charts/axis/verticalaxis.cpp 2024-09-19 23:16:10.000000000 +0200 @@ -24,6 +24,10 @@ { Q_UNUSED(constraint); QSizeF sh(0, 0); + // Size hint from here is used as the base for label size hints; if labels are not + // visible, we need to increase the size or we end up showing "..." when + // the title should be visible + qreal labelPaddingFactor = labelsVisible() ? 1 : 2; if (axis()->titleText().isEmpty() || !titleItem()->isVisible()) return sh; @@ -32,13 +36,16 @@ case Qt::MinimumSize: { QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), QStringLiteral("...")); - sh = QSizeF(titleRect.height() + (titlePadding() * 2.0), titleRect.width()); + sh = QSizeF(labelPaddingFactor * (titleRect.height() + (titlePadding() * 2.0)), + titleRect.width()); break; } case Qt::MaximumSize: case Qt::PreferredSize: { - QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), axis()->titleText()); - sh = QSizeF(titleRect.height() + (titlePadding() * 2.0), titleRect.width()); + QRectF titleRect = ChartPresenter::textBoundingRect(axis()->titleFont(), + axis()->titleText()); + sh = QSizeF(labelPaddingFactor * (titleRect.height() + (titlePadding() * 2.0)), + titleRect.width()); break; } default:
participants (1)
-
Source-Sync