i9c-beta
changed/i9c-beta/qt5-qtquickcontrols2-5.15.9-1.el9
commit
2b997f012f
@ -0,0 +1 @@
|
|||||||
|
SOURCES/qtquickcontrols2-everywhere-opensource-src-5.15.9.tar.xz
|
@ -0,0 +1 @@
|
|||||||
|
721b51082e26673ab5baba00c3e20b167c37ee30 SOURCES/qtquickcontrols2-everywhere-opensource-src-5.15.9.tar.xz
|
@ -0,0 +1,182 @@
|
|||||||
|
From 4fd68622be6c6b2b16f8d976b640b79d26dcc075 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Redondo <qt@david-redondo.de>
|
||||||
|
Date: Mon, 19 Jul 2021 10:06:17 +0200
|
||||||
|
Subject: [PATCH 1/5] Unset mouseGrabberPopup if it's removed from children
|
||||||
|
|
||||||
|
The mouseGrabberPopup is supposed to be unset in handleRelease, however
|
||||||
|
when the exit transition of the mouseGrabberPopup (that closed itself on
|
||||||
|
button press) finishes before the release event is delivered, it
|
||||||
|
unparents itself from the overlay (see
|
||||||
|
QQuickPopupPrivate::finalizeExitTransition) and the overlay sets itself
|
||||||
|
invisible if there is nothing else visible in it. Because the overlay
|
||||||
|
is not visible it handles no events anymore and the release is missed
|
||||||
|
and the grabber is never unset. When opening another non-modal popup
|
||||||
|
the overlay then will continue forwarding the events to now invisible
|
||||||
|
popup.
|
||||||
|
So when the overlay loses the currently grabbing popup as a child we need
|
||||||
|
to reset mouseGrabberPopup.
|
||||||
|
|
||||||
|
Fixes: QTBUG-95259
|
||||||
|
Change-Id: I3c832d47f3cee216b81ef1b5cb7dd77bf4149991
|
||||||
|
Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
|
||||||
|
(adapted from commit d07ee1345acd8100fa5cbb7f05c0aaf5f87f4cae)
|
||||||
|
|
||||||
|
(cherry picked from commit 1a59ef4218658ffc476909ef4fca13d6cf86d04b)
|
||||||
|
---
|
||||||
|
src/quicktemplates2/qquickoverlay.cpp | 5 +-
|
||||||
|
.../data/releaseAfterExitTransition.qml | 78 +++++++++++++++++++
|
||||||
|
tests/auto/qquickpopup/tst_qquickpopup.cpp | 29 +++++++
|
||||||
|
3 files changed, 111 insertions(+), 1 deletion(-)
|
||||||
|
create mode 100644 tests/auto/qquickpopup/data/releaseAfterExitTransition.qml
|
||||||
|
|
||||||
|
diff --git a/src/quicktemplates2/qquickoverlay.cpp b/src/quicktemplates2/qquickoverlay.cpp
|
||||||
|
index 91bd59184..0ce518f84 100644
|
||||||
|
--- a/src/quicktemplates2/qquickoverlay.cpp
|
||||||
|
+++ b/src/quicktemplates2/qquickoverlay.cpp
|
||||||
|
@@ -399,8 +399,11 @@ void QQuickOverlay::itemChange(ItemChange change, const ItemChangeData &data)
|
||||||
|
Q_D(QQuickOverlay);
|
||||||
|
QQuickItem::itemChange(change, data);
|
||||||
|
|
||||||
|
- if (change == ItemChildAddedChange || change == ItemChildRemovedChange)
|
||||||
|
+ if (change == ItemChildAddedChange || change == ItemChildRemovedChange) {
|
||||||
|
setVisible(!d->allDrawers.isEmpty() || !childItems().isEmpty());
|
||||||
|
+ if (data.item->parent() == d->mouseGrabberPopup)
|
||||||
|
+ d->setMouseGrabberPopup(nullptr);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
|
||||||
|
void QQuickOverlay::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry)
|
||||||
|
diff --git a/tests/auto/qquickpopup/data/releaseAfterExitTransition.qml b/tests/auto/qquickpopup/data/releaseAfterExitTransition.qml
|
||||||
|
new file mode 100644
|
||||||
|
index 000000000..9e4598b9f
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/tests/auto/qquickpopup/data/releaseAfterExitTransition.qml
|
||||||
|
@@ -0,0 +1,78 @@
|
||||||
|
+/****************************************************************************
|
||||||
|
+**
|
||||||
|
+** Copyright (C) 2021 The Qt Company Ltd.
|
||||||
|
+** Contact: https://www.qt.io/licensing/
|
||||||
|
+**
|
||||||
|
+** This file is part of the test suite of the Qt Toolkit.
|
||||||
|
+**
|
||||||
|
+** $QT_BEGIN_LICENSE:BSD$
|
||||||
|
+** Commercial License Usage
|
||||||
|
+** Licensees holding valid commercial Qt licenses may use this file in
|
||||||
|
+** accordance with the commercial license agreement provided with the
|
||||||
|
+** Software or, alternatively, in accordance with the terms contained in
|
||||||
|
+** a written agreement between you and The Qt Company. For licensing terms
|
||||||
|
+** and conditions see https://www.qt.io/terms-conditions. For further
|
||||||
|
+** information use the contact form at https://www.qt.io/contact-us.
|
||||||
|
+**
|
||||||
|
+** BSD License Usage
|
||||||
|
+** Alternatively, you may use this file under the terms of the BSD license
|
||||||
|
+** as follows:
|
||||||
|
+**
|
||||||
|
+** "Redistribution and use in source and binary forms, with or without
|
||||||
|
+** modification, are permitted provided that the following conditions are
|
||||||
|
+** met:
|
||||||
|
+** * Redistributions of source code must retain the above copyright
|
||||||
|
+** notice, this list of conditions and the following disclaimer.
|
||||||
|
+** * Redistributions in binary form must reproduce the above copyright
|
||||||
|
+** notice, this list of conditions and the following disclaimer in
|
||||||
|
+** the documentation and/or other materials provided with the
|
||||||
|
+** distribution.
|
||||||
|
+** * Neither the name of The Qt Company Ltd nor the names of its
|
||||||
|
+** contributors may be used to endorse or promote products derived
|
||||||
|
+** from this software without specific prior written permission.
|
||||||
|
+**
|
||||||
|
+**
|
||||||
|
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||||
|
+**
|
||||||
|
+** $QT_END_LICENSE$
|
||||||
|
+**
|
||||||
|
+****************************************************************************/
|
||||||
|
+
|
||||||
|
+import QtQuick 2.15
|
||||||
|
+import QtQuick.Controls 2.15
|
||||||
|
+
|
||||||
|
+ApplicationWindow {
|
||||||
|
+ id: window
|
||||||
|
+ width: 400
|
||||||
|
+ height: 400
|
||||||
|
+ title: "releaseAfterExitTransition"
|
||||||
|
+
|
||||||
|
+ property alias popup: popup
|
||||||
|
+ property alias modalPopup: modalPopup
|
||||||
|
+
|
||||||
|
+ Popup {
|
||||||
|
+ id: popup
|
||||||
|
+ y: parent.height - height
|
||||||
|
+ width: 50
|
||||||
|
+ height: 50
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ Popup {
|
||||||
|
+ id: modalPopup
|
||||||
|
+ modal: true
|
||||||
|
+ y: parent.height - height
|
||||||
|
+ width: 50
|
||||||
|
+ height: 50
|
||||||
|
+ exit: Transition { PauseAnimation { duration: 100 } }
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/tests/auto/qquickpopup/tst_qquickpopup.cpp b/tests/auto/qquickpopup/tst_qquickpopup.cpp
|
||||||
|
index 54952d128..3d50e2dd4 100644
|
||||||
|
--- a/tests/auto/qquickpopup/tst_qquickpopup.cpp
|
||||||
|
+++ b/tests/auto/qquickpopup/tst_qquickpopup.cpp
|
||||||
|
@@ -100,6 +100,7 @@ private slots:
|
||||||
|
void invisibleToolTipOpen();
|
||||||
|
void centerInOverlayWithinStackViewItem();
|
||||||
|
void destroyDuringExitTransition();
|
||||||
|
+ void releaseAfterExitTransition();
|
||||||
|
};
|
||||||
|
|
||||||
|
void tst_QQuickPopup::initTestCase()
|
||||||
|
@@ -1575,6 +1576,34 @@ void tst_QQuickPopup::destroyDuringExitTransition()
|
||||||
|
QVERIFY(!button->isDown());
|
||||||
|
}
|
||||||
|
|
||||||
|
+void tst_QQuickPopup::releaseAfterExitTransition()
|
||||||
|
+{
|
||||||
|
+ QQuickApplicationHelper helper(this, "releaseAfterExitTransition.qml");
|
||||||
|
+ QVERIFY2(helper.ready, helper.failureMessage());
|
||||||
|
+
|
||||||
|
+ QQuickWindow *window = helper.window;
|
||||||
|
+ window->show();
|
||||||
|
+ QVERIFY(QTest::qWaitForWindowActive(window));
|
||||||
|
+
|
||||||
|
+ QQuickOverlay *overlay = QQuickOverlay::overlay(window);
|
||||||
|
+ QQuickPopup *modalPopup = window->property("modalPopup").value<QQuickPopup *>();
|
||||||
|
+ QQuickPopup *popup = window->property("popup").value<QQuickPopup *>();
|
||||||
|
+
|
||||||
|
+ modalPopup->open();
|
||||||
|
+ QTRY_VERIFY(modalPopup->isOpened());
|
||||||
|
+
|
||||||
|
+ QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(1, 1));
|
||||||
|
+ // wait until the transition is finished and the overlay hides itself
|
||||||
|
+ QTRY_VERIFY(!overlay->isVisible());
|
||||||
|
+ QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(1, 1));
|
||||||
|
+
|
||||||
|
+ popup->open();
|
||||||
|
+ QTRY_VERIFY(popup->isOpened());
|
||||||
|
+ QTest::mouseClick(window, Qt::LeftButton, Qt::NoModifier, QPoint(1, 1));
|
||||||
|
+ QTRY_VERIFY(!popup->isOpened());
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+
|
||||||
|
QTEST_QUICKCONTROLS_MAIN(tst_QQuickPopup)
|
||||||
|
|
||||||
|
#include "tst_qquickpopup.moc"
|
||||||
|
--
|
||||||
|
2.40.0
|
||||||
|
|
@ -0,0 +1,83 @@
|
|||||||
|
From 774cc9a0d8c177b4363b11b80f88296318967385 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Aleix Pol <aleixpol@kde.org>
|
||||||
|
Date: Tue, 4 Jan 2022 16:34:16 +0100
|
||||||
|
Subject: [PATCH 2/5] Ensure we don't crash when changing sizes after cleanup
|
||||||
|
|
||||||
|
This addresses the problems I've seen during destruction. Only
|
||||||
|
encountered it when using complex layouts on a DialogButtonBox.
|
||||||
|
|
||||||
|
Pick-to: 6.2 6.3
|
||||||
|
Change-Id: I54528c8a2b57b4798d90f7e2021e3127f8404762
|
||||||
|
(cherry picked from commit 8b24d2bf1655e8491bdd74013579e09cd009e8fc in
|
||||||
|
qtdeclarative)
|
||||||
|
---
|
||||||
|
src/quicktemplates2/qquickcontainer.cpp | 5 +++--
|
||||||
|
src/quicktemplates2/qquickdialogbuttonbox.cpp | 8 +++++++-
|
||||||
|
2 files changed, 10 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/quicktemplates2/qquickcontainer.cpp b/src/quicktemplates2/qquickcontainer.cpp
|
||||||
|
index f38c2b09c..6eed2a024 100644
|
||||||
|
--- a/src/quicktemplates2/qquickcontainer.cpp
|
||||||
|
+++ b/src/quicktemplates2/qquickcontainer.cpp
|
||||||
|
@@ -225,6 +225,7 @@ void QQuickContainerPrivate::cleanup()
|
||||||
|
QObject::disconnect(contentModel, &QQmlObjectModel::countChanged, q, &QQuickContainer::countChanged);
|
||||||
|
QObject::disconnect(contentModel, &QQmlObjectModel::childrenChanged, q, &QQuickContainer::contentChildrenChanged);
|
||||||
|
delete contentModel;
|
||||||
|
+ contentModel = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
QQuickItem *QQuickContainerPrivate::itemAt(int index) const
|
||||||
|
@@ -436,7 +437,7 @@ void QQuickContainerPrivate::contentChildren_clear(QQmlListProperty<QQuickItem>
|
||||||
|
void QQuickContainerPrivate::updateContentWidth()
|
||||||
|
{
|
||||||
|
Q_Q(QQuickContainer);
|
||||||
|
- if (hasContentWidth || qFuzzyCompare(contentWidth, implicitContentWidth))
|
||||||
|
+ if (hasContentWidth || qFuzzyCompare(contentWidth, implicitContentWidth) || !contentModel)
|
||||||
|
return;
|
||||||
|
|
||||||
|
contentWidth = implicitContentWidth;
|
||||||
|
@@ -446,7 +447,7 @@ void QQuickContainerPrivate::updateContentWidth()
|
||||||
|
void QQuickContainerPrivate::updateContentHeight()
|
||||||
|
{
|
||||||
|
Q_Q(QQuickContainer);
|
||||||
|
- if (hasContentHeight || qFuzzyCompare(contentHeight, implicitContentHeight))
|
||||||
|
+ if (hasContentHeight || qFuzzyCompare(contentHeight, implicitContentHeight) || !contentModel)
|
||||||
|
return;
|
||||||
|
|
||||||
|
contentHeight = implicitContentHeight;
|
||||||
|
diff --git a/src/quicktemplates2/qquickdialogbuttonbox.cpp b/src/quicktemplates2/qquickdialogbuttonbox.cpp
|
||||||
|
index e6db14eb5..6197d1547 100644
|
||||||
|
--- a/src/quicktemplates2/qquickdialogbuttonbox.cpp
|
||||||
|
+++ b/src/quicktemplates2/qquickdialogbuttonbox.cpp
|
||||||
|
@@ -237,7 +237,7 @@ static QRectF alignedRect(Qt::LayoutDirection direction, Qt::Alignment alignment
|
||||||
|
void QQuickDialogButtonBoxPrivate::resizeContent()
|
||||||
|
{
|
||||||
|
Q_Q(QQuickDialogButtonBox);
|
||||||
|
- if (!contentItem)
|
||||||
|
+ if (!contentItem || !contentModel)
|
||||||
|
return;
|
||||||
|
|
||||||
|
QRectF geometry = q->boundingRect().adjusted(q->leftPadding(), q->topPadding(), -q->rightPadding(), -q->bottomPadding());
|
||||||
|
@@ -322,6 +322,9 @@ void QQuickDialogButtonBoxPrivate::updateLayout()
|
||||||
|
qreal QQuickDialogButtonBoxPrivate::getContentWidth() const
|
||||||
|
{
|
||||||
|
Q_Q(const QQuickDialogButtonBox);
|
||||||
|
+ if (!contentModel)
|
||||||
|
+ return 0;
|
||||||
|
+
|
||||||
|
const int count = contentModel->count();
|
||||||
|
const qreal totalSpacing = qMax(0, count - 1) * spacing;
|
||||||
|
qreal totalWidth = totalSpacing;
|
||||||
|
@@ -341,6 +344,9 @@ qreal QQuickDialogButtonBoxPrivate::getContentWidth() const
|
||||||
|
qreal QQuickDialogButtonBoxPrivate::getContentHeight() const
|
||||||
|
{
|
||||||
|
Q_Q(const QQuickDialogButtonBox);
|
||||||
|
+ if (!contentModel)
|
||||||
|
+ return 0;
|
||||||
|
+
|
||||||
|
const int count = contentModel->count();
|
||||||
|
qreal maxHeight = 0;
|
||||||
|
for (int i = 0; i < count; ++i) {
|
||||||
|
--
|
||||||
|
2.40.0
|
||||||
|
|
@ -0,0 +1,179 @@
|
|||||||
|
From 7145c2589193b0ca0eafbb35085bc5cb5613b055 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mitch Curtis <mitch.curtis@qt.io>
|
||||||
|
Date: Mon, 18 Jul 2022 15:21:49 +0800
|
||||||
|
Subject: [PATCH 3/5] Fix scroll bars not showing up when binding to standalone
|
||||||
|
contentItem
|
||||||
|
|
||||||
|
908aa77d16e00f2bccc0ddae0f8b61955c56a6a1 hid old scroll bars, but
|
||||||
|
didn't account for the situation where the old scroll bars would be put
|
||||||
|
back into place, and so they never showed up.
|
||||||
|
|
||||||
|
In the case of the linked bug report, since there was a binding to the
|
||||||
|
ScrollView's contentItem, a default Flickable would be created. After
|
||||||
|
that binding was evaluated, the contentItem was set, causing the scroll
|
||||||
|
bars to be hidden (as part of the process of disconnecting from the old
|
||||||
|
flickable). To fix the issue, we now do the reverse of hideOldItem when
|
||||||
|
a new contentItem is set.
|
||||||
|
|
||||||
|
Fixes: QTBUG-104983
|
||||||
|
Pick-to: 6.2 6.3 6.4
|
||||||
|
Change-Id: I910259cc3e8f6a6231ae6c87c7d4f0f652bd0545
|
||||||
|
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
|
||||||
|
Reviewed-by: Nate Graham
|
||||||
|
|
||||||
|
(cherry picked from qtdeclarative 58bae53237417f28eac6d772fa6ecab657f8a73f)
|
||||||
|
---
|
||||||
|
src/quicktemplates2/qquickcontrol.cpp | 30 +++++++++++++
|
||||||
|
src/quicktemplates2/qquickcontrol_p_p.h | 1 +
|
||||||
|
src/quicktemplates2/qquickscrollbar.cpp | 11 +++++
|
||||||
|
tests/auto/controls/data/tst_scrollview.qml | 47 +++++++++++++++++++++
|
||||||
|
4 files changed, 89 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/quicktemplates2/qquickcontrol.cpp b/src/quicktemplates2/qquickcontrol.cpp
|
||||||
|
index bbbd0e622..1f4b47343 100644
|
||||||
|
--- a/src/quicktemplates2/qquickcontrol.cpp
|
||||||
|
+++ b/src/quicktemplates2/qquickcontrol.cpp
|
||||||
|
@@ -845,6 +845,13 @@ void QQuickControlPrivate::executeBackground(bool complete)
|
||||||
|
quickCompleteDeferred(q, backgroundName(), background);
|
||||||
|
}
|
||||||
|
|
||||||
|
+/*
|
||||||
|
+ \internal
|
||||||
|
+
|
||||||
|
+ Hides an item that was replaced by a newer one, rather than
|
||||||
|
+ deleting it, as the item is typically created in QML and hence
|
||||||
|
+ we don't own it.
|
||||||
|
+*/
|
||||||
|
void QQuickControlPrivate::hideOldItem(QQuickItem *item)
|
||||||
|
{
|
||||||
|
if (!item)
|
||||||
|
@@ -863,6 +870,29 @@ void QQuickControlPrivate::hideOldItem(QQuickItem *item)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
+/*
|
||||||
|
+ \internal
|
||||||
|
+
|
||||||
|
+ Named "unhide" because it's used for cases where an item
|
||||||
|
+ that was previously hidden by \l hideOldItem() wants to be
|
||||||
|
+ shown by a control again, such as a ScrollBar in ScrollView.
|
||||||
|
+*/
|
||||||
|
+void QQuickControlPrivate::unhideOldItem(QQuickControl *control, QQuickItem *item)
|
||||||
|
+{
|
||||||
|
+ Q_ASSERT(item);
|
||||||
|
+ qCDebug(lcItemManagement) << "unhiding old item" << item;
|
||||||
|
+
|
||||||
|
+ item->setVisible(true);
|
||||||
|
+ item->setParentItem(control);
|
||||||
|
+
|
||||||
|
+#if QT_CONFIG(accessibility)
|
||||||
|
+ // Add the item back in to the accessibility tree.
|
||||||
|
+ QQuickAccessibleAttached *accessible = accessibleAttached(item);
|
||||||
|
+ if (accessible)
|
||||||
|
+ accessible->setIgnored(false);
|
||||||
|
+#endif
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void QQuickControlPrivate::updateBaselineOffset()
|
||||||
|
{
|
||||||
|
Q_Q(QQuickControl);
|
||||||
|
diff --git a/src/quicktemplates2/qquickcontrol_p_p.h b/src/quicktemplates2/qquickcontrol_p_p.h
|
||||||
|
index 8e979079e..a6e624c91 100644
|
||||||
|
--- a/src/quicktemplates2/qquickcontrol_p_p.h
|
||||||
|
+++ b/src/quicktemplates2/qquickcontrol_p_p.h
|
||||||
|
@@ -173,6 +173,7 @@ public:
|
||||||
|
virtual void executeBackground(bool complete = false);
|
||||||
|
|
||||||
|
static void hideOldItem(QQuickItem *item);
|
||||||
|
+ static void unhideOldItem(QQuickControl *control, QQuickItem *item);
|
||||||
|
|
||||||
|
void updateBaselineOffset();
|
||||||
|
|
||||||
|
diff --git a/src/quicktemplates2/qquickscrollbar.cpp b/src/quicktemplates2/qquickscrollbar.cpp
|
||||||
|
index 4e2f509db..1c4b308cd 100644
|
||||||
|
--- a/src/quicktemplates2/qquickscrollbar.cpp
|
||||||
|
+++ b/src/quicktemplates2/qquickscrollbar.cpp
|
||||||
|
@@ -797,6 +797,14 @@ void QQuickScrollBarAttachedPrivate::initHorizontal()
|
||||||
|
if (parent && parent == flickable->parentItem())
|
||||||
|
horizontal->stackAfter(flickable);
|
||||||
|
|
||||||
|
+ // If a scroll bar was previously hidden (due to e.g. setting a new contentItem
|
||||||
|
+ // on a ScrollView), we need to make sure that we un-hide it.
|
||||||
|
+ // We don't bother checking if the item is actually the old one, because
|
||||||
|
+ // if it's not, all of the things the function does (setting parent, visibility, etc.)
|
||||||
|
+ // should be no-ops anyway.
|
||||||
|
+ if (auto control = qobject_cast<QQuickControl*>(q_ptr->parent()))
|
||||||
|
+ QQuickControlPrivate::unhideOldItem(control, horizontal);
|
||||||
|
+
|
||||||
|
layoutHorizontal();
|
||||||
|
horizontal->setSize(area->property("widthRatio").toReal());
|
||||||
|
horizontal->setPosition(area->property("xPosition").toReal());
|
||||||
|
@@ -818,6 +826,9 @@ void QQuickScrollBarAttachedPrivate::initVertical()
|
||||||
|
if (parent && parent == flickable->parentItem())
|
||||||
|
vertical->stackAfter(flickable);
|
||||||
|
|
||||||
|
+ if (auto control = qobject_cast<QQuickControl*>(q_ptr->parent()))
|
||||||
|
+ QQuickControlPrivate::unhideOldItem(control, vertical);
|
||||||
|
+
|
||||||
|
layoutVertical();
|
||||||
|
vertical->setSize(area->property("heightRatio").toReal());
|
||||||
|
vertical->setPosition(area->property("yPosition").toReal());
|
||||||
|
diff --git a/tests/auto/controls/data/tst_scrollview.qml b/tests/auto/controls/data/tst_scrollview.qml
|
||||||
|
index 0e8b08352..cd4931184 100644
|
||||||
|
--- a/tests/auto/controls/data/tst_scrollview.qml
|
||||||
|
+++ b/tests/auto/controls/data/tst_scrollview.qml
|
||||||
|
@@ -576,4 +576,51 @@ TestCase {
|
||||||
|
verify(newHorizontalScrollBar.visible)
|
||||||
|
verify(!oldHorizontalScrollBar.visible)
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ Component {
|
||||||
|
+ id: bindingToContentItemAndStandaloneFlickable
|
||||||
|
+
|
||||||
|
+ Item {
|
||||||
|
+ width: 200
|
||||||
|
+ height: 200
|
||||||
|
+
|
||||||
|
+ property alias scrollView: scrollView
|
||||||
|
+
|
||||||
|
+ ScrollView {
|
||||||
|
+ id: scrollView
|
||||||
|
+ anchors.fill: parent
|
||||||
|
+ contentItem: listView
|
||||||
|
+
|
||||||
|
+ property Item someBinding: contentItem
|
||||||
|
+ }
|
||||||
|
+ ListView {
|
||||||
|
+ id: listView
|
||||||
|
+ model: 10
|
||||||
|
+ delegate: ItemDelegate {
|
||||||
|
+ text: modelData
|
||||||
|
+ width: listView.width
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ // Tests that scroll bars show up for a ScrollView where
|
||||||
|
+ // - its contentItem is declared as a standalone, separate item
|
||||||
|
+ // - there is a binding to contentItem (which causes a default Flickable to be created)
|
||||||
|
+ function test_bindingToContentItemAndStandaloneFlickable() {
|
||||||
|
+ let root = createTemporaryObject(bindingToContentItemAndStandaloneFlickable, testCase)
|
||||||
|
+ verify(root)
|
||||||
|
+
|
||||||
|
+ let control = root.scrollView
|
||||||
|
+ let verticalScrollBar = control.ScrollBar.vertical
|
||||||
|
+ let horizontalScrollBar = control.ScrollBar.horizontal
|
||||||
|
+ compare(verticalScrollBar.parent, control)
|
||||||
|
+ compare(horizontalScrollBar.parent, control)
|
||||||
|
+ verify(verticalScrollBar.visible)
|
||||||
|
+ verify(horizontalScrollBar.visible)
|
||||||
|
+
|
||||||
|
+ mouseDrag(verticalScrollBar, verticalScrollBar.width / 2, verticalScrollBar.height / 2, 0, 50)
|
||||||
|
+ verify(verticalScrollBar.active)
|
||||||
|
+ verify(horizontalScrollBar.active)
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.40.0
|
||||||
|
|
@ -0,0 +1,55 @@
|
|||||||
|
From 29c60b84e92c83c28211bc349eb00e6c93eeed80 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Harald Sitter <sitter@kde.org>
|
||||||
|
Date: Wed, 2 Nov 2022 12:39:11 +0100
|
||||||
|
Subject: [PATCH 4/5] implement a11y pressing of qquickabstractbutton
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
this adds a pressAction default implementation that simply calls trigger
|
||||||
|
(which in turn either triggers the action or emits a click), allowing
|
||||||
|
accessibility tools to issue a button press via a11y api.
|
||||||
|
|
||||||
|
Change-Id: I75b4fb8680835093b1135fdbf4329aaa85dc3243
|
||||||
|
Reviewed-by: Arjen Hiemstra <ahiemstra@heimr.nl>
|
||||||
|
Reviewed-by: Aleix Pol Gonzalez <aleixpol@kde.org>
|
||||||
|
Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
|
||||||
|
(cherry picked from commit 705659eaaf47af72eeb5f5c742e18a5c665a76eb in
|
||||||
|
qtdeclarative)
|
||||||
|
---
|
||||||
|
src/quicktemplates2/qquickabstractbutton.cpp | 6 ++++++
|
||||||
|
src/quicktemplates2/qquickabstractbutton_p.h | 1 +
|
||||||
|
2 files changed, 7 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/quicktemplates2/qquickabstractbutton.cpp b/src/quicktemplates2/qquickabstractbutton.cpp
|
||||||
|
index 20cf59c1a..43af47a94 100644
|
||||||
|
--- a/src/quicktemplates2/qquickabstractbutton.cpp
|
||||||
|
+++ b/src/quicktemplates2/qquickabstractbutton.cpp
|
||||||
|
@@ -1201,6 +1201,12 @@ QAccessible::Role QQuickAbstractButton::accessibleRole() const
|
||||||
|
}
|
||||||
|
return QAccessible::Button;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+void QQuickAbstractButton::accessiblePressAction()
|
||||||
|
+{
|
||||||
|
+ Q_D(QQuickAbstractButton);
|
||||||
|
+ d->trigger();
|
||||||
|
+}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
QT_END_NAMESPACE
|
||||||
|
diff --git a/src/quicktemplates2/qquickabstractbutton_p.h b/src/quicktemplates2/qquickabstractbutton_p.h
|
||||||
|
index 0fa48980e..ab66220d0 100644
|
||||||
|
--- a/src/quicktemplates2/qquickabstractbutton_p.h
|
||||||
|
+++ b/src/quicktemplates2/qquickabstractbutton_p.h
|
||||||
|
@@ -209,6 +209,7 @@ protected:
|
||||||
|
#if QT_CONFIG(accessibility)
|
||||||
|
void accessibilityActiveChanged(bool active) override;
|
||||||
|
QAccessible::Role accessibleRole() const override;
|
||||||
|
+ Q_INVOKABLE void accessiblePressAction();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
private:
|
||||||
|
--
|
||||||
|
2.40.0
|
||||||
|
|
@ -0,0 +1,45 @@
|
|||||||
|
From 86a84eaa74c4071e5750f23b6e9911762880d391 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Inho Lee <inho.lee@qt.io>
|
||||||
|
Date: Mon, 22 Aug 2022 21:05:00 +0800
|
||||||
|
Subject: [PATCH 5/5] Fix the popup position of a Menu
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
QPA code should operate in native coord.
|
||||||
|
Treat QWidgetPlatformMenu::showPopup's input as native coord.
|
||||||
|
|
||||||
|
Fixes: QTBUG-94619
|
||||||
|
Fixes: QTBUG-94783
|
||||||
|
Change-Id: Iaa030c96d84e4a588e625fe191e4324f70be961f
|
||||||
|
Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
|
||||||
|
(cherry picked from commit f8cf17166c9af147f0b8fea72f5b4a8a6098a5d7 in
|
||||||
|
qtdeclarative)
|
||||||
|
---
|
||||||
|
src/imports/platform/widgets/qwidgetplatformmenu.cpp | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/imports/platform/widgets/qwidgetplatformmenu.cpp b/src/imports/platform/widgets/qwidgetplatformmenu.cpp
|
||||||
|
index e5fe734f7..e36922775 100644
|
||||||
|
--- a/src/imports/platform/widgets/qwidgetplatformmenu.cpp
|
||||||
|
+++ b/src/imports/platform/widgets/qwidgetplatformmenu.cpp
|
||||||
|
@@ -38,6 +38,7 @@
|
||||||
|
#include "qwidgetplatformmenuitem_p.h"
|
||||||
|
|
||||||
|
#include <QtGui/qwindow.h>
|
||||||
|
+#include <QtGui/private/qhighdpiscaling_p.h>
|
||||||
|
#include <QtWidgets/qmenu.h>
|
||||||
|
#include <QtWidgets/qaction.h>
|
||||||
|
|
||||||
|
@@ -145,7 +146,7 @@ void QWidgetPlatformMenu::showPopup(const QWindow *window, const QRect &targetRe
|
||||||
|
|
||||||
|
QPoint targetPos = targetRect.bottomLeft();
|
||||||
|
if (window)
|
||||||
|
- targetPos = window->mapToGlobal(targetPos);
|
||||||
|
+ targetPos = window->mapToGlobal(QHighDpi::fromNativeLocalPosition(targetPos, window));
|
||||||
|
|
||||||
|
const QWidgetPlatformMenuItem *widgetItem = qobject_cast<const QWidgetPlatformMenuItem *>(item);
|
||||||
|
m_menu->popup(targetPos, widgetItem ? widgetItem->action() : nullptr);
|
||||||
|
--
|
||||||
|
2.40.0
|
||||||
|
|
@ -0,0 +1,307 @@
|
|||||||
|
%global qt_module qtquickcontrols2
|
||||||
|
|
||||||
|
%global build_tests 1
|
||||||
|
|
||||||
|
Name: qt5-%{qt_module}
|
||||||
|
Summary: Qt5 - module with set of QtQuick controls for embedded
|
||||||
|
Version: 5.15.9
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
License: GPLv2+ or LGPLv3 and GFDL
|
||||||
|
Url: http://www.qt.io
|
||||||
|
%global majmin %(echo %{version} | cut -d. -f1-2)
|
||||||
|
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/%{qt_module}-everywhere-opensource-src-%{version}.tar.xz
|
||||||
|
|
||||||
|
Patch1: 0001-Unset-mouseGrabberPopup-if-it-s-removed-from-childre.patch
|
||||||
|
Patch2: 0002-Ensure-we-don-t-crash-when-changing-sizes-after-clea.patch
|
||||||
|
Patch3: 0003-Fix-scroll-bars-not-showing-up-when-binding-to-stand.patch
|
||||||
|
Patch4: 0004-implement-a11y-pressing-of-qquickabstractbutton.patch
|
||||||
|
Patch5: 0005-Fix-the-popup-position-of-a-Menu.patch
|
||||||
|
|
||||||
|
# filter qml provides
|
||||||
|
%global __provides_exclude_from ^%{_qt5_archdatadir}/qml/.*\\.so$
|
||||||
|
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: qt5-qtbase-devel >= %{version}
|
||||||
|
BuildRequires: qt5-qtbase-private-devel
|
||||||
|
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
||||||
|
BuildRequires: qt5-qtdeclarative-devel
|
||||||
|
|
||||||
|
Requires: qt5-qtdeclarative%{?_isa} >= %{version}
|
||||||
|
Requires: qt5-qtgraphicaleffects%{_isa} >= %{version}
|
||||||
|
|
||||||
|
%description
|
||||||
|
The Qt Labs Controls module provides a set of controls that can be used to
|
||||||
|
build complete interfaces in Qt Quick.
|
||||||
|
|
||||||
|
Unlike Qt Quick Controls, these controls are optimized for embedded systems
|
||||||
|
and so are preferred for hardware with limited resources.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: qt5-qtbase-devel%{?_isa}
|
||||||
|
Requires: qt5-qtdeclarative-devel%{?_isa}
|
||||||
|
%description devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package examples
|
||||||
|
Summary: Examples for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
%description examples
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
%package tests
|
||||||
|
Summary: Unit tests for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description tests
|
||||||
|
%{summary}.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -n %{qt_module}-everywhere-src-%{version}
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{qmake_qt5}
|
||||||
|
|
||||||
|
%make_build
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
%qt5_build_tests
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
make install INSTALL_ROOT=%{buildroot}
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
%qt5_install_tests
|
||||||
|
%endif
|
||||||
|
|
||||||
|
## .prl/.la file love
|
||||||
|
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
|
||||||
|
pushd %{buildroot}%{_qt5_libdir}
|
||||||
|
for prl_file in libQt5*.prl ; do
|
||||||
|
sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" ${prl_file}
|
||||||
|
if [ -f "$(basename ${prl_file} .prl).so" ]; then
|
||||||
|
rm -fv "$(basename ${prl_file} .prl).la"
|
||||||
|
sed -i -e "/^QMAKE_PRL_LIBS/d" ${prl_file}
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
popd
|
||||||
|
|
||||||
|
# Remove .la leftovers
|
||||||
|
rm -f %{buildroot}%{_qt5_libdir}/libQt5*.la
|
||||||
|
|
||||||
|
|
||||||
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE.LGPLv3 LICENSE.GPLv3
|
||||||
|
%{_qt5_libdir}/libQt5QuickTemplates2.so.5*
|
||||||
|
%{_qt5_libdir}/libQt5QuickControls2.so.5*
|
||||||
|
%{_qt5_qmldir}/Qt/labs/calendar
|
||||||
|
%{_qt5_qmldir}/Qt/labs/platform
|
||||||
|
%{_qt5_archdatadir}/qml/QtQuick/Controls.2/
|
||||||
|
%{_qt5_archdatadir}/qml/QtQuick/Templates.2/
|
||||||
|
|
||||||
|
%files examples
|
||||||
|
%{_qt5_examplesdir}/quickcontrols2/
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_qt5_headerdir}/
|
||||||
|
%{_qt5_libdir}/pkgconfig/*.pc
|
||||||
|
%{_qt5_libdir}/libQt5QuickTemplates2.so
|
||||||
|
%{_qt5_libdir}/libQt5QuickControls2.so
|
||||||
|
%{_qt5_libdir}/libQt5QuickTemplates2.prl
|
||||||
|
%{_qt5_libdir}/libQt5QuickControls2.prl
|
||||||
|
%{_qt5_libdir}/qt5/mkspecs/modules/*
|
||||||
|
%{_libdir}/cmake/Qt5QuickControls2/
|
||||||
|
%{_libdir}/cmake/Qt5QuickTemplates2/
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
%files tests
|
||||||
|
%{_qt5_libdir}/qt5/tests
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Sep 22 2023 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 5.15.9-1
|
||||||
|
- Rebuilt for MSVSphere 9.3 beta
|
||||||
|
|
||||||
|
* Tue Apr 18 2023 Jan Grulich <jgrulich@redhat.com> - 5.15.9-1
|
||||||
|
- 5.15.9
|
||||||
|
Resolves: bz#2175738
|
||||||
|
|
||||||
|
* Mon Mar 28 2022 Jan Grulich <jgrulich@redhat.com> - 5.15.3-1
|
||||||
|
- 5.15.3
|
||||||
|
Resolves: bz#2061364
|
||||||
|
|
||||||
|
* Wed Dec 08 2021 Jan Grulich <jgrulich@redhat.com> - 5.15.2-7
|
||||||
|
- Rebuild (move -devel subpkg to AppStream)
|
||||||
|
Resolves: bz#2028779
|
||||||
|
|
||||||
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 5.15.2-6
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Wed Jun 09 2021 Jan Grulich <jgrulich@redhat.com> - 5.15.2-5
|
||||||
|
- Add gating tests
|
||||||
|
Resolves: bz#1968469
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 5.15.2-4
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.15.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 24 07:54:15 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-2
|
||||||
|
- Rebuild for qtbase with -no-reduce-relocations option
|
||||||
|
|
||||||
|
* Fri Nov 20 09:30:46 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-1
|
||||||
|
- 5.15.2
|
||||||
|
|
||||||
|
* Thu Sep 10 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.1-1
|
||||||
|
- 5.15.1
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.2-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.14.2-1
|
||||||
|
- 5.14.2
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.13.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 09 2019 Jan Grulich <jgrulich@redhat.com> - 5.13.2-1
|
||||||
|
- 5.13.2
|
||||||
|
|
||||||
|
* Tue Sep 24 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.5-1
|
||||||
|
- 5.12.5
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.12.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 14 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.4-1
|
||||||
|
- 5.12.4
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.3-1
|
||||||
|
- 5.12.3
|
||||||
|
|
||||||
|
* Fri Feb 15 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.12.1-1
|
||||||
|
- 5.12.1
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.11.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Dec 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.3-1
|
||||||
|
- 5.11.3
|
||||||
|
|
||||||
|
* Fri Sep 21 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.2-1
|
||||||
|
- 5.11.2
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.11.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.1-1
|
||||||
|
- 5.11.1
|
||||||
|
|
||||||
|
* Sun May 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.0-1
|
||||||
|
- 5.11.0
|
||||||
|
- use %%make_build %%ldconfig_scriptlets
|
||||||
|
|
||||||
|
* Wed Feb 14 2018 Jan Grulich <jgrulich@redhat.com> - 5.10.1-1
|
||||||
|
- 5.10.1
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 19 2017 Jan Grulich <jgrulich@redhat.com> - 5.10.0-1
|
||||||
|
- 5.10.0
|
||||||
|
|
||||||
|
* Thu Nov 23 2017 Jan Grulich <jgrulich@redhat.com> - 5.9.3-1
|
||||||
|
- 5.9.3
|
||||||
|
|
||||||
|
* Tue Oct 17 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.2-2
|
||||||
|
- BR: qt5-qtbase-private-devel
|
||||||
|
|
||||||
|
* Mon Oct 09 2017 Jan Grulich <jgrulich@redhat.com> - 5.9.2-1
|
||||||
|
- 5.9.2
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.9.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.9.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 19 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.1-1
|
||||||
|
- 5.9.1
|
||||||
|
|
||||||
|
* Fri Jun 16 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.0-2
|
||||||
|
- drop shadow/out-of-tree builds (#1456211,QTBUG-37417)
|
||||||
|
|
||||||
|
* Wed May 31 2017 Helio Chissini de Castro <helio@kde.org> - 5.9.0-1
|
||||||
|
- Upstream official release
|
||||||
|
|
||||||
|
* Fri May 26 2017 Helio Chissini de Castro <helio@kde.org> - 5.9.0-0.1.rc
|
||||||
|
- Upstream Release Candidate retagged
|
||||||
|
|
||||||
|
* Tue May 09 2017 Helio Chissini de Castro <helio@kde.org> - 5.9.0-0.beta.3
|
||||||
|
- Upstream beta 3
|
||||||
|
|
||||||
|
* Mon Jan 30 2017 Helio Chissini de Castro <helio@kde.org> - 5.8.0-1
|
||||||
|
- New upstream version
|
||||||
|
|
||||||
|
* Mon Jan 02 2017 Rex Dieter <rdieter@math.unl.edu> - 5.7.1-3
|
||||||
|
- filter qml provides
|
||||||
|
|
||||||
|
* Sat Dec 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-2
|
||||||
|
- 5.7.1 dec5 snapshot
|
||||||
|
- tighten deps
|
||||||
|
|
||||||
|
* Wed Nov 09 2016 Helio Chissini de Castro <helio@kde.org> - 5.7.1-1
|
||||||
|
- New upstream version
|
||||||
|
|
||||||
|
* Tue Jun 14 2016 Helio Chissini de Castro <helio@kde.org> - 5.7.0-1
|
||||||
|
- Qt 5.7.0 release
|
||||||
|
|
||||||
|
* Mon Jun 13 2016 Helio Chissini de Castro <helio@kde.org> - 5.7.0-0.1
|
||||||
|
- Prepare 5.7.0
|
||||||
|
|
||||||
|
* Sat Jun 11 2016 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com> - 5.6.1-2
|
||||||
|
- Add qt5-qtgraphicaleffects dependency
|
||||||
|
|
||||||
|
* Thu Jun 09 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.1-1
|
||||||
|
- Update to 5.6.1
|
||||||
|
|
||||||
|
* Sun Apr 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-4
|
||||||
|
- BR: qt5-qtbase-private-devel qt5-qtdeclarative-private-devel
|
||||||
|
|
||||||
|
* Sun Mar 20 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-3
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Fri Mar 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-2
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Mon Mar 14 2016 Helio Chissini de Castro <helio@kde.org>
|
||||||
|
- 5.6.0 final release
|
||||||
|
|
||||||
|
* Mon Mar 14 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-1
|
||||||
|
- 5.6.0 final release
|
||||||
|
|
||||||
|
* Tue Feb 23 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.4.rc
|
||||||
|
- Update to final RC
|
||||||
|
|
||||||
|
* Thu Feb 18 2016 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com> - 5.6.0-0.3.rc
|
||||||
|
- Update to rc
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-0.2.beta
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 15 2016 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com> - 5.6.0-0.1.beta
|
||||||
|
- Initial packaging
|
Loading…
Reference in new issue