From eac37967cc535a3ac43a712b52b4bf73b96ec19c Mon Sep 17 00:00:00 2001 From: Tomasz Sterna Date: Sat, 3 Jan 2015 19:30:15 +0100 Subject: Support for watch apps, not installed on phone Needed to show app name instead of "unknown app" on the app management screen. --- app/pebbledinterface.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/pebbledinterface.cpp') diff --git a/app/pebbledinterface.cpp b/app/pebbledinterface.cpp index c978dd0..cc9a617 100644 --- a/app/pebbledinterface.cpp +++ b/app/pebbledinterface.cpp @@ -294,8 +294,12 @@ void PebbledInterface::refreshAllApps() QVariantMap m; m.insert("uuid", uuid.toString()); + m.insert("isLocal", orig.value("local")); m.insert("shortName", orig.value("short-name")); m.insert("longName", orig.value("long-name")); + m.insert("companyName", orig.value("company-name")); + m.insert("versionLabel", orig.value("version-label")); + m.insert("isWatchface", orig.value("is-watchface")); QByteArray pngIcon = orig.value("menu-icon").toByteArray(); if (!pngIcon.isEmpty()) { -- cgit v1.2.3