I just finished my work on version 0.15: https://github.com/ruedigergad/Skipp...l.rpm?raw=true This version adds the following improvements: - UI for entering the UUID of the SmartStatus watchapp. (Entering an empty string should turn off the SmartStatus functionality. (But I didn't test that yet.)) - Two predefined UUIDs: "SmartWA Mod 2" and "SmartStatus+ Music and Volume" - Support for the "SmartStatus+ Music and Volume" watchapp http://www.mypebblefaces.com/apps/4805/6490/6508/ - in the "SmartStatus+ Music and Volume" watchapp the current volume level can be shown. (Note that you need to change the volume at least once to get a correct value.) - Prototype to support MeeCast: - Sends the temperature and icon currently displayed in the appcover of MeeCast. - Please note that this requires you to manually patch MeeCast (see below for instructions) and that MeeCast has to be running. - So far, I only tested this with the "SmartStatus+ Music and Volume" watchapp. The MeeCast patch can be applied similarly to the media player patch as follows: Code: # Open a terminal. # Download the patch. cd curl -O https://raw.github.com/ruedigergad/SkippingStones/master/meecast_coverpage_dbus.patch # Test if the "patch" tool is installed. patch -v # Install the "patch" tool if needed. pkcon install patch # Please re-check if the install was successful via "patch -v". # I am not that sure if the pkcon command is correct. # Become root. devel-su # Apply the patch. cd /usr/share/harbour-meecast/qml/cover patch < /home/nemo/meecast_coverpage_dbus.patch Adding this patch to the harbour version of MeeCast may be problematic as it adds "import org.nemomobile.dbus 1.0" which I think is currently not allowed in harbour. But I have to admit that I am not up-to-date with respect to the latest harbour allowed lib/API rule restrictions discussion.
# Open a terminal. # Download the patch. cd curl -O https://raw.github.com/ruedigergad/SkippingStones/master/meecast_coverpage_dbus.patch # Test if the "patch" tool is installed. patch -v # Install the "patch" tool if needed. pkcon install patch # Please re-check if the install was successful via "patch -v". # I am not that sure if the pkcon command is correct. # Become root. devel-su # Apply the patch. cd /usr/share/harbour-meecast/qml/cover patch < /home/nemo/meecast_coverpage_dbus.patch