stefan pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=3549d3967623131181fc6dd5e1761c8a1c2822ab
commit 3549d3967623131181fc6dd5e1761c8a1c2822ab Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Wed Aug 5 14:37:05 2015 +0200 modules/geolocation: Update xml protocol spec to match the 2.2.0 release This add two new properties: speed and heading. Having our eldbus boiler code generated against this new protocol spec file. --- src/modules/geolocation/org.freedesktop.GeoClue2.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/modules/geolocation/org.freedesktop.GeoClue2.xml b/src/modules/geolocation/org.freedesktop.GeoClue2.xml index ab14565..8fe3f35 100644 --- a/src/modules/geolocation/org.freedesktop.GeoClue2.xml +++ b/src/modules/geolocation/org.freedesktop.GeoClue2.xml @@ -185,6 +185,23 @@ <property name="Altitude" type="d" access="read"/> <!-- + Speed: + + The speed in meters per second. When unknown, it's set to -1.0. + --> + <property name="Speed" type="d" access="read"/> + + <!-- + Heading: + + The heading direction in degrees with respect to North direction, in + clockwise order. That means North becomes 0 degree, East: 90 degrees, + South: 180 degrees, West: 270 degrees and so on. When unknown, + it's set to -1.0. + --> + <property name="Heading" type="d" access="read"/> + + <!-- Description: A human-readable description of the location, if available. --