From: Bocklage, Jens Date: Wed, 7 Dec 2016 15:34:19 +0000 (+0100) Subject: Link to available apps X-Git-Tag: 3.0.0~40 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=staging%2FHomeScreen.git;a=commitdiff_plain;h=67e88567cb97213348031728d59652b7c10d0e19;hp=11c200531ef5c6d8bb93d952aed45e27a454ec44 Link to available apps The shortcuts on the top of the HomeScreen app now launch following apps: * Home launches home@0.1 * Multimedia launches radio@0.1 * HVAC launches hvac@0.1 * Navigation launches controls@0.1 Signed-off-by: Bocklage, Jens --- diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml index 1d4a7c0..9ef8701 100644 --- a/HomeScreen/qml/ShortcutArea.qml +++ b/HomeScreen/qml/ShortcutArea.qml @@ -36,19 +36,19 @@ Item { id: applicationModel ListElement { name: 'Home' - application: 'webapps-rabbit@0.0' + application: 'home@0.1' } ListElement { name: 'Multimedia' - application: 'smarthome@0.1' + application: 'radio@0.1' } ListElement { name: 'HVAC' - application: 'hvac' + application: 'hvac@0.1' } ListElement { name: 'Navigation' - application: 'navigation' + application: 'controls@0.1' } }