Hello community,
here is the log from the commit of package libqt5-qtquickcontrols for
openSUSE:Factory checked in at 2013-12-17 07:05:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtquickcontrols (Old)
and /work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtquickcontrols"
Changes:
--------
---
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/libqt5-qtquickcontrols.changes
2013-12-02 07:23:21.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new/libqt5-qtquickcontrols.changes
2013-12-17 07:05:55.000000000 +0100
@@ -1,0 +2,8 @@
+Thu Dec 12 13:42:39 UTC 2013 - [email protected]
+- Update to 5.2.0 final:
+ * For more details please see:
+ http://blog.qt.digia.com/blog/2013/12/12/qt-5-2-released-the-best-qt-yet/
+ http://qt-project.org/qt5/qt52
+ http://qt.digia.com/Product/Whats-New/Qt-52/
+
+-------------------------------------------------------------------
Old:
----
qtquickcontrols-opensource-src-5.2.0-rc1.tar.xz
New:
----
qtquickcontrols-opensource-src-5.2.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libqt5-qtquickcontrols.spec ++++++
--- /var/tmp/diff_new_pack.TM3mnJ/_old 2013-12-17 07:05:55.000000000 +0100
+++ /var/tmp/diff_new_pack.TM3mnJ/_new 2013-12-17 07:05:55.000000000 +0100
@@ -17,7 +17,7 @@
Name: libqt5-qtquickcontrols
-Version: 5.2.0~rc1
+Version: 5.2.0
Release: 0
Summary: Qt 5 Serial Port Addon
License: SUSE-LGPL-2.1-with-digia-exception-1.1 or GPL-3.0
@@ -26,7 +26,7 @@
Source: %{tar_version}.tar.xz
BuildRequires: fdupes
%define base_name libqt5
-%define real_version 5.2.0-rc1
+%define real_version 5.2.0
%define so_version 5.2.0
%define tar_version qtquickcontrols-opensource-src-%{real_version}
BuildRequires: libQt5Quick-private-headers-devel >= %{version}
++++++ qtquickcontrols-opensource-src-5.2.0-rc1.tar.xz ->
qtquickcontrols-opensource-src-5.2.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtquickcontrols-opensource-src-5.2.0-rc1/.tag
new/qtquickcontrols-opensource-src-5.2.0/.tag
--- old/qtquickcontrols-opensource-src-5.2.0-rc1/.tag 2013-11-27
02:00:26.000000000 +0100
+++ new/qtquickcontrols-opensource-src-5.2.0/.tag 2013-12-08
18:09:39.000000000 +0100
@@ -1 +1 @@
-34523bb83651ae009d28748d64697eb8ade9a639
+1d684b38a4fb0b8ce33401fa9c8f415eba6097bf
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtquickcontrols-opensource-src-5.2.0-rc1/examples/quick/controls/tableview/main.qml
new/qtquickcontrols-opensource-src-5.2.0/examples/quick/controls/tableview/main.qml
---
old/qtquickcontrols-opensource-src-5.2.0-rc1/examples/quick/controls/tableview/main.qml
2013-11-27 02:00:26.000000000 +0100
+++
new/qtquickcontrols-opensource-src-5.2.0/examples/quick/controls/tableview/main.qml
2013-12-08 18:09:38.000000000 +0100
@@ -385,7 +385,7 @@
CheckBox{
id: sortableCheckbox
checked: false
- text: "Sortindicator"
+ text: "Sort indicator"
anchors.verticalCenter: parent.verticalCenter
}
CheckBox{
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtquickcontrols-opensource-src-5.2.0-rc1/src/controls/Private/TabBar.qml
new/qtquickcontrols-opensource-src-5.2.0/src/controls/Private/TabBar.qml
---
old/qtquickcontrols-opensource-src-5.2.0-rc1/src/controls/Private/TabBar.qml
2013-11-27 02:00:26.000000000 +0100
+++ new/qtquickcontrols-opensource-src-5.2.0/src/controls/Private/TabBar.qml
2013-12-08 18:09:39.000000000 +0100
@@ -119,7 +119,10 @@
interactive: false
focus: true
- width: Math.min(availableWidth, count ? contentWidth : availableWidth)
+ // Note this will silence the binding loop warnings caused by
QTBUG-35038
+ // and should be removed when this issue is resolved.
+ property int contentWidthWorkaround: contentWidth > 0 ? contentWidth: 0
+ width: Math.min(availableWidth, count ? contentWidthWorkaround :
availableWidth)
height: currentItem ? currentItem.height : 0
highlightMoveDuration: 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qtquickcontrols-opensource-src-5.2.0-rc1/src/controls/Private/qquickstyleitem.cpp
new/qtquickcontrols-opensource-src-5.2.0/src/controls/Private/qquickstyleitem.cpp
---
old/qtquickcontrols-opensource-src-5.2.0-rc1/src/controls/Private/qquickstyleitem.cpp
2013-11-27 02:00:26.000000000 +0100
+++
new/qtquickcontrols-opensource-src-5.2.0/src/controls/Private/qquickstyleitem.cpp
2013-12-08 18:09:39.000000000 +0100
@@ -211,6 +211,7 @@
setFlag(QQuickItem::ItemHasContents, true);
setSmooth(false);
+ connect(this, SIGNAL(visibleChanged()), this, SLOT(updateItem()));
connect(this, SIGNAL(widthChanged()), this, SLOT(updateItem()));
connect(this, SIGNAL(heightChanged()), this, SLOT(updateItem()));
connect(this, SIGNAL(enabledChanged()), this, SLOT(updateItem()));
@@ -1616,7 +1617,10 @@
bool QQuickStyleItem::event(QEvent *ev)
{
if (ev->type() == QEvent::StyleAnimationUpdate) {
- polish();
+ if (isVisible()) {
+ ev->accept();
+ polish();
+ }
return true;
} else if (ev->type() == QEvent::StyleChange) {
if (m_itemType == ScrollBar)
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]