diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-11-22 17:58:54 -0500 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-11-25 11:25:41 +0000 |
commit | 24e55fccab51e217d4452968b082f0531a05fcb5 (patch) | |
tree | e3e0dd1e9dfed15c9f94ec0af20f2b6590b86845 /recipes-demo/messaging | |
parent | 275de1d5dceae84c872e354f2f8b15ad275f97ae (diff) |
Update Qt demo app SRCREVs
Update Qt demo app SRCREVs to pick up their Qt6 updates, and drop the
now unnecssary Qt6 patches. Also, the MapBox configuration support
has been removed from the ondemandnavi-config recipe, as that backend
is no longer supported by QtLocation in Qt6.
Bug-AGL: SPEC-5294
Change-Id: Ib44c6be83c3d4654c9ed5adffa3e9d34057eb2ae
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/30543
ci-image-boot-test: Jenkins Job builder account
Tested-by: Jenkins Job builder account
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
ci-image-build: Jenkins Job builder account
Diffstat (limited to 'recipes-demo/messaging')
-rw-r--r-- | recipes-demo/messaging/messaging/0001-Migrate-to-Qt-6.patch | 91 | ||||
-rw-r--r-- | recipes-demo/messaging/messaging_git.bb | 6 |
2 files changed, 2 insertions, 95 deletions
diff --git a/recipes-demo/messaging/messaging/0001-Migrate-to-Qt-6.patch b/recipes-demo/messaging/messaging/0001-Migrate-to-Qt-6.patch deleted file mode 100644 index 4a8b1ab13..000000000 --- a/recipes-demo/messaging/messaging/0001-Migrate-to-Qt-6.patch +++ /dev/null @@ -1,91 +0,0 @@ -From 83be2a0e829c959f5466e6c44c60abadc628ea0b Mon Sep 17 00:00:00 2001 -From: Indivara Weerasuriya <1806262-indivara@users.noreply.git.qt.io> -Date: Wed, 24 Jul 2024 09:28:22 +0900 -Subject: [PATCH] Migrate to Qt 6 - ---- - app/Messaging.qml | 4 ++-- - app/Notification.qml | 2 +- - app/TabImageButton.qml | 11 ++++++----- - 3 files changed, 9 insertions(+), 8 deletions(-) - -diff --git a/app/Messaging.qml b/app/Messaging.qml -index 48568c2..05bd452 100644 ---- a/app/Messaging.qml -+++ b/app/Messaging.qml -@@ -41,13 +41,13 @@ ApplicationWindow { - contentHeight: 160 - - TabImageButton { -- icon: "./images/ic_contacts_48px.svg" -+ iconSource: "qrc:/images/ic_contacts_48px.svg" - text: "Alerts" - font.pixelSize: 50 - } - - TabImageButton { -- icon: "./images/ic_contacts_48px.svg" -+ iconSource: "qrc:/images/ic_contacts_48px.svg" - text: "Compose" - font.pixelSize: 50 - } -diff --git a/app/Notification.qml b/app/Notification.qml -index ac6b360..dd68ce3 100644 ---- a/app/Notification.qml -+++ b/app/Notification.qml -@@ -30,7 +30,7 @@ Item { - Image { - id: button - scale: 0.5 -- source: '../images/HMI_Settings_X.svg' -+ source: 'qrc:/images/HMI_Settings_X.svg' - MouseArea { - anchors.fill: button - onClicked: notificationModel.remove(index) -diff --git a/app/TabImageButton.qml b/app/TabImageButton.qml -index 2176595..c707574 100644 ---- a/app/TabImageButton.qml -+++ b/app/TabImageButton.qml -@@ -41,6 +41,7 @@ import QtQuick.Layouts 1.1 - import QtQuick.Controls 2.2 - import QtQuick.Controls.impl 2.2 - import QtQuick.Templates 2.2 as T -+import QtQuick.Controls.Basic 2.2 - - T.TabButton { - id: control -@@ -53,13 +54,13 @@ T.TabButton { - - padding: 6 - -- property url icon -+ property url iconSource - - contentItem: ColumnLayout { - spacing: 20 - Image { - Layout.alignment: Qt.AlignCenter -- source: control.icon -+ source: control.iconSource - width: 96 - height: 96 - -@@ -70,7 +71,7 @@ T.TabButton { - font: control.font - elide: Text.ElideRight - opacity: enabled ? 1 : 0.3 -- color: !control.checked ? Default.textLightColor : control.down ? Default.textDarkColor : Default.textColor -+ color: !control.checked ? Basic.textLightColor : control.down ? Basic.textDarkColor : Basic.textColor - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - } -@@ -78,7 +79,7 @@ T.TabButton { - background: Rectangle { - implicitHeight: 160 - color: control.down -- ? (control.checked ? Default.tabButtonCheckedPressedColor : Default.tabButtonPressedColor) -- : (control.checked ? "transparent" : Default.tabButtonColor) -+ ? (control.checked ? Basic.tabButtonCheckedPressedColor : Basic.tabButtonPressedColor) -+ : (control.checked ? "transparent" : Basic.tabButtonColor) - } - } diff --git a/recipes-demo/messaging/messaging_git.bb b/recipes-demo/messaging/messaging_git.bb index e3597b259..29d881b3e 100644 --- a/recipes-demo/messaging/messaging_git.bb +++ b/recipes-demo/messaging/messaging_git.bb @@ -10,10 +10,8 @@ DEPENDS = "qtdeclarative libqtappfw" PV = "1.0+git${SRCPV}" -SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/messaging;protocol=https;branch=${AGL_BRANCH} \ - file://0001-Migrate-to-Qt-6.patch \ - " -SRCREV = "e58b0382de8e665d64b8e3486022a6bcb0572823" +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/messaging;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "77ea1b245737d0cfc4d20035e6476dae6969e699" S = "${WORKDIR}/git" |