[folks] Set release version of new API and update NEWS
- From: Travis Reitter <treitter src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks] Set release version of new API and update NEWS
- Date: Tue, 11 Jun 2013 00:19:41 +0000 (UTC)
commit f447a3f9c0c64a4256b274645e4ac604cca20f44
Author: Travis Reitter <travis reitter collabora co uk>
Date: Fri Jun 7 15:15:35 2013 -0700
Set release version of new API and update NEWS
NEWS | 2 ++
backends/eds/lib/edsf-persona.vala | 4 ++--
folks/location-details.vala | 14 +++++++-------
folks/persona-store.vala | 2 +-
4 files changed, 12 insertions(+), 10 deletions(-)
---
diff --git a/NEWS b/NEWS
index 6842ccd..a368e2a 100644
--- a/NEWS
+++ b/NEWS
@@ -29,6 +29,8 @@ Bugs fixed:
• Bug 700253 - EDS backend initialization blocks
API changes:
+• Add LocationDetails interface to specify a Persona or Individual's
+ geographical location (implemented by the EDS backend)
Overview of changes from libfolks 0.9.0 to libfolks 0.9.1
=========================================================
diff --git a/backends/eds/lib/edsf-persona.vala b/backends/eds/lib/edsf-persona.vala
index 78dacf5..8cba695 100644
--- a/backends/eds/lib/edsf-persona.vala
+++ b/backends/eds/lib/edsf-persona.vala
@@ -230,7 +230,7 @@ public class Edsf.Persona : Folks.Persona,
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
[CCode (notify = false)]
public Location? location
@@ -242,7 +242,7 @@ public class Edsf.Persona : Folks.Persona,
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
public async void change_location (Location? location) throws PropertyError
{
diff --git a/folks/location-details.vala b/folks/location-details.vala
index 6b53976..f9c5a5b 100644
--- a/folks/location-details.vala
+++ b/folks/location-details.vala
@@ -26,20 +26,20 @@ using GLib;
* way of verifying that and just has to assume
* that.
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
public class Folks.Location : Object
{
/**
* The latitude.
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
public double latitude;
/**
* The longitude.
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
public double longitude;
@@ -47,7 +47,7 @@ public class Folks.Location : Object
* Constructs a new instance with the given coordinates.
* @param latitude latitude of the new instance
* @param longitude longitude of the new instance
- * @since UNRELEASED
+ * @since 0.9.2
*/
public Location (double latitude, double longitude)
{
@@ -60,7 +60,7 @@ public class Folks.Location : Object
*
* @param other the instance to compare against
* @return true iff the coordinates are exactly the same
- * @since UNRELEASED
+ * @since 0.9.2
*/
public bool equal (Location other)
{
@@ -75,7 +75,7 @@ public class Folks.Location : Object
* @param latitude latitude of the other position
* @param longitude longitude of the other position
* @return true iff the coordinates are exactly the same
- * @since UNRELEASED
+ * @since 0.9.2
*/
public bool equal_coordinates (double latitude, double longitude)
{
@@ -101,7 +101,7 @@ public class Folks.Location : Object
* The folks itself then will apply all changes coming
* from backends, without further filtering.
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
public interface Folks.LocationDetails : Object
{
diff --git a/folks/persona-store.vala b/folks/persona-store.vala
index 00eb8dd..4d6359d 100644
--- a/folks/persona-store.vala
+++ b/folks/persona-store.vala
@@ -208,7 +208,7 @@ public enum Folks.PersonaDetail
/**
* Field for { link LocationDetails.location}.
*
- * @since UNRELEASED
+ * @since 0.9.2
*/
LOCATION,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]