Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6-webview for openSUSE:Factory checked in at 2026-02-03 21:27:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-webview (Old) and /work/SRC/openSUSE:Factory/.qt6-webview.new.1995 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6-webview" Tue Feb 3 21:27:49 2026 rev:28 rq:1330611 version:6.10.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-webview/qt6-webview.changes 2025-11-25 15:50:14.903906201 +0100 +++ /work/SRC/openSUSE:Factory/.qt6-webview.new.1995/qt6-webview.changes 2026-02-03 21:28:54.614111269 +0100 @@ -1,0 +2,6 @@ +Sat Jan 31 08:10:44 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 6.10.2: + * https://www.qt.io/blog/qt-6.10.2-released + +------------------------------------------------------------------- Old: ---- qtwebview-everywhere-src-6.10.1.tar.xz New: ---- qtwebview-everywhere-src-6.10.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-webview.spec ++++++ --- /var/tmp/diff_new_pack.VKKbB9/_old 2026-02-03 21:28:55.410144681 +0100 +++ /var/tmp/diff_new_pack.VKKbB9/_new 2026-02-03 21:28:55.414144849 +0100 @@ -16,7 +16,7 @@ # -%define real_version 6.10.1 +%define real_version 6.10.2 %define short_version 6.10 %define tar_name qtwebview-everywhere-src %define tar_suffix %{nil} @@ -27,7 +27,7 @@ %endif # Name: qt6-webview%{?pkg_suffix} -Version: 6.10.1 +Version: 6.10.2 Release: 0 Summary: Qt 6 WebView library License: GPL-2.0-only OR GPL-3.0-or-later OR LGPL-3.0-only ++++++ qtwebview-everywhere-src-6.10.1.tar.xz -> qtwebview-everywhere-src-6.10.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/.cmake.conf new/qtwebview-everywhere-src-6.10.2/.cmake.conf --- old/qtwebview-everywhere-src-6.10.1/.cmake.conf 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/.cmake.conf 2026-01-25 03:35:23.000000000 +0100 @@ -1,4 +1,6 @@ -set(QT_REPO_MODULE_VERSION "6.10.1") +set(QT_REPO_MODULE_VERSION "6.10.2") 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") +set(QT_EXTRA_INTERNAL_TARGET_DEFINES + "QT_NO_FOREACH=1" + "QT_NO_QASCONST=1" +) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/.tag new/qtwebview-everywhere-src-6.10.2/.tag --- old/qtwebview-everywhere-src-6.10.1/.tag 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/.tag 2026-01-25 03:35:23.000000000 +0100 @@ -1 +1 @@ -86a71b5a88494368557d7c2c083287f15d5cd0e7 +715472cc8328fe9778ddc80e6e91480e7b8bfc46 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/dependencies.yaml new/qtwebview-everywhere-src-6.10.2/dependencies.yaml --- old/qtwebview-everywhere-src-6.10.1/dependencies.yaml 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/dependencies.yaml 2026-01-25 03:35:23.000000000 +0100 @@ -1,7 +1,7 @@ dependencies: ../qtdeclarative: - ref: 22fb5e739a2ea700448b22d34ade0d5c1927cb48 + ref: 09c70541c76659bcd8c49f05841b0e778c9ffd4c required: true ../qtwebengine: - ref: 28eb5425c6abef3938fb82a48427d45d1dd4e64f + ref: 105f9c7ec298ff2387569c418badade17b3e3bee required: false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/examples/webview/minibrowser/main.qml new/qtwebview-everywhere-src-6.10.2/examples/webview/minibrowser/main.qml --- old/qtwebview-everywhere-src-6.10.1/examples/webview/minibrowser/main.qml 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/examples/webview/minibrowser/main.qml 2026-01-25 03:35:23.000000000 +0100 @@ -21,6 +21,7 @@ ToolButton { id: backButton icon.source: "qrc:/left-32.png" + icon.color: "transparent" onClicked: webView.goBack() enabled: webView.canGoBack Layout.preferredWidth: navigationBar.height @@ -29,6 +30,7 @@ ToolButton { id: forwardButton icon.source: "qrc:/right-32.png" + icon.color: "transparent" onClicked: webView.goForward() enabled: webView.canGoForward Layout.preferredWidth: navigationBar.height @@ -37,6 +39,7 @@ ToolButton { id: reloadButton icon.source: webView.loading ? "qrc:/stop-32.png" : "qrc:/refresh-32.png" + icon.color: "transparent" onClicked: webView.loading ? webView.stop() : webView.reload() Layout.preferredWidth: navigationBar.height } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/src/plugins/windows/qwebview2webview.cpp new/qtwebview-everywhere-src-6.10.2/src/plugins/windows/qwebview2webview.cpp --- old/qtwebview-everywhere-src-6.10.1/src/plugins/windows/qwebview2webview.cpp 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/src/plugins/windows/qwebview2webview.cpp 2026-01-25 03:35:23.000000000 +0100 @@ -116,7 +116,6 @@ m_window->setFlag(Qt::Tool); m_window->setFlag(Qt::FramelessWindowHint); // No border m_window->setFlag(Qt::WindowDoesNotAcceptFocus); // No focus - m_window->setVisible(true); // create platform window HWND hWnd = (HWND)m_window->winId(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/src/quick/qquickwebview_p.h new/qtwebview-everywhere-src-6.10.2/src/quick/qquickwebview_p.h --- old/qtwebview-everywhere-src-6.10.1/src/quick/qquickwebview_p.h 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/src/quick/qquickwebview_p.h 2026-01-25 03:35:23.000000000 +0100 @@ -43,7 +43,6 @@ Q_PROPERTY(bool canGoBack READ canGoBack NOTIFY loadingChanged FINAL) Q_PROPERTY(bool canGoForward READ canGoForward NOTIFY loadingChanged FINAL) Q_PROPERTY(QQuickWebViewSettings *settings READ settings CONSTANT FINAL REVISION(6, 5)) - Q_ENUMS(LoadStatus) QML_NAMED_ELEMENT(WebView) QML_ADDED_IN_VERSION(1, 0) QML_EXTRA_VERSION(2, 0) @@ -55,6 +54,8 @@ LoadSucceededStatus, LoadFailedStatus }; + Q_ENUM(LoadStatus) + QQuickWebView(QQuickItem *parent = nullptr); ~QQuickWebView(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtwebview-everywhere-src-6.10.1/src/webview/doc/src/qtwebview-overview.qdoc new/qtwebview-everywhere-src-6.10.2/src/webview/doc/src/qtwebview-overview.qdoc --- old/qtwebview-everywhere-src-6.10.1/src/webview/doc/src/qtwebview-overview.qdoc 2025-11-16 13:53:27.000000000 +0100 +++ new/qtwebview-everywhere-src-6.10.2/src/webview/doc/src/qtwebview-overview.qdoc 2026-01-25 03:35:23.000000000 +0100 @@ -15,7 +15,11 @@ \l{Qt for iOS}{iOS}. On iOS, policies dictate that all web content is displayed using the operating system's web view. - On Windows and Linux, Qt \WebView depends on the \l{Qt WebEngine} module to + On Windows, Qt \WebView can use both \l{Qt WebEngine} module and + \l {https://learn.microsoft.com/en-us/microsoft-edge/webview2/}{WebView2} to + render content. + + On Linux, Qt \WebView depends on the \l{Qt WebEngine} module to render content. On \macos, the system web view is used in the same manner as iOS.
