summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2017-03-05 21:12:29 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2017-03-05 21:12:29 +0000
commit209aa98488bbc08e54b41faad8b65426ac62ae32 (patch)
treef3518658177fb739fe45ae8f47da7e54a70e6662
parent0d8ed048c0ed7d3546232526cc60b8daaded4a00 (diff)
downloadlibgdata-209aa98488bbc08e54b41faad8b65426ac62ae32.tar.gz
Release version 0.17.70.17.7
-rw-r--r--NEWS59
-rw-r--r--configure.ac2
-rw-r--r--docs/reference/gdata-docs.xml4
-rw-r--r--gdata/gdata-feed.c4
-rw-r--r--gdata/gdata-parsable.c2
-rw-r--r--gdata/services/documents/gdata-documents-entry.c4
-rw-r--r--gdata/services/documents/gdata-documents-utils.c2
7 files changed, 70 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index dedaf53d..54578dca 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,62 @@
+Overview of changes from libgdata 0.17.6 to libgdata 0.17.7
+===========================================================
+
+Major changes:
+ • Fix licensing in OAuth2 files (they were mistakenly declared as GPLv3+; they’re actually LGPLv2.1+)
+ • More Google Drive fixes and tests
+ • Documentation improvements (including bumping the gtk-doc dependency to 1.25)
+ • Google Calendar parsing fixes
+ • Pagination fixes for more modern APIs (Calendar, Documents, Tasks, YouTube)
+ • Pagination support in demo programs
+ • Add a demo program for Google Tasks
+ • Fix Google Calendar query parameters for v3 of the API
+ • Disable PicasaWeb tests as PicasaWeb server is now mostly read-only
+ • Deprecate Freebase service as Freebase server is now shutdown
+
+API changes:
+ • Add GDataDocumentsEntry:file-size
+ • Add gdata_parsable_get_content_type()
+ • Add GDataFeed:next-page-token
+ • Deprecate GDataCalendarQuery:recurrence-expansion-start
+ • Deprecate GDataCalendarQuery:recurrence-expansion-end
+ • Deprecate GDataCalendarQuery:sort-order
+ • Deprecate everything to do with GDataFreebase*
+
+Bugs fixed:
+ • Bug 684920 — Port to Google Drive API v2
+ • Bug 772756 — Take advantage of Unicode
+ • Bug 773057 — Provide document file size
+ • Bug 774179 — Fails to build VAPI file with GOA enabled
+ • Bug 777980 — Add a public wrapper for GDataParsable:get_content_type
+ • Bug 775813 — GTasks pagination doesn't work
+
+Updated translations:
+ • cs (Marek Černocký)
+ • da (Ask Hjorth Larsen)
+ • de (Mario Blättermann)
+ • es (Daniel Mustieles)
+ • eu (Inaki Larranaga Murgoitio)
+ • fi (Jiri Grönroos)
+ • fr (Claude Paroz)
+ • fur (Fabio Tomat)
+ • hu (Gábor Kelemen)
+ • id (Kukuh Syafaat)
+ • it (Gianvito Cavasoli)
+ • ko (Changwoo Ryu)
+ • lt (Aurimas Černius)
+ • lv (Rūdolfs Mazurs)
+ • nb (Kjartan Maraas)
+ • pl (Piotr Drąg)
+ • pt (Tiago Santos)
+ • pt_BR (Rafael Fontenelle)
+ • sk (Dušan Kazik)
+ • sl (Matej Urbančič)
+ • sr (Марко М. Костић)
+ • sv (Anders Jonsson)
+ • zh_CN (Qizhi Zhou)
+ • zh_TW (Chao-Hsiung Liao)
+
+
Overview of changes from libgdata 0.17.5 to libgdata 0.17.6
===========================================================
diff --git a/configure.ac b/configure.ac
index c685b098..c579d21e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,7 +60,7 @@ GDK_PIXBUF_MAX_ALLOWED=GDK_VERSION_2_14
# 4. If any interfaces have been removed or changed since the last public release, then set age to 0.
#
# Note that versioning started at 2:0:0 to ensure no conflicts with e-d-s' libgdata library, whose maximum version was 1:0:0
-GDATA_LT_VERSION=23:4:1
+GDATA_LT_VERSION=24:0:2
AC_SUBST(GDATA_LT_VERSION)
GDATA_VERSION_MAJOR=gdata_version_major
diff --git a/docs/reference/gdata-docs.xml b/docs/reference/gdata-docs.xml
index cf1c8b8e..247b5aba 100644
--- a/docs/reference/gdata-docs.xml
+++ b/docs/reference/gdata-docs.xml
@@ -295,6 +295,10 @@
<title>Index of new symbols in 0.17.2</title>
<xi:include href="xml/api-index-0.17.2.xml"><xi:fallback/></xi:include>
</index>
+ <index role="0.17.7">
+ <title>Index of new symbols in 0.17.7</title>
+ <xi:include href="xml/api-index-0.17.7.xml"><xi:fallback/></xi:include>
+ </index>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
</part>
</book>
diff --git a/gdata/gdata-feed.c b/gdata/gdata-feed.c
index 9085103c..8db1f7da 100644
--- a/gdata/gdata-feed.c
+++ b/gdata/gdata-feed.c
@@ -307,7 +307,7 @@ gdata_feed_class_init (GDataFeedClass *klass)
* querying APIs which use page tokens rather than page numbers or
* offsets.
*
- * Since: UNRELEASED
+ * Since: 0.17.7
*/
g_object_class_install_property (gobject_class, PROP_NEXT_PAGE_TOKEN,
g_param_spec_string ("next-page-token",
@@ -1108,7 +1108,7 @@ gdata_feed_get_total_results (GDataFeed *self)
*
* Return value: (nullable): the next page token
*
- * Since: UNRELEASED
+ * Since: 0.17.7
*/
const gchar *
gdata_feed_get_next_page_token (GDataFeed *self)
diff --git a/gdata/gdata-parsable.c b/gdata/gdata-parsable.c
index 06ea6221..80b1a102 100644
--- a/gdata/gdata-parsable.c
+++ b/gdata/gdata-parsable.c
@@ -555,7 +555,7 @@ _gdata_parsable_new_from_json_node (GType parsable_type, JsonReader *reader, gpo
*
* Return value: the parsable's content type
*
- * Since: UNRELEASED
+ * Since: 0.17.7
*/
const gchar *
gdata_parsable_get_content_type (GDataParsable *self)
diff --git a/gdata/services/documents/gdata-documents-entry.c b/gdata/services/documents/gdata-documents-entry.c
index 16d580c6..eebf7c52 100644
--- a/gdata/services/documents/gdata-documents-entry.c
+++ b/gdata/services/documents/gdata-documents-entry.c
@@ -302,7 +302,7 @@ gdata_documents_entry_class_init (GDataDocumentsEntryClass *klass)
* #GDataDocumentsSpreadsheet and #GDataDocumentsFolder are not binary
* data and so have no size. Measured in bytes.
*
- * Since: UNRELEASED
+ * Since: 0.17.7
*/
g_object_class_install_property (gobject_class, PROP_FILE_SIZE,
g_param_spec_int64 ("file-size",
@@ -1129,7 +1129,7 @@ gdata_documents_entry_get_quota_used (GDataDocumentsEntry *self)
*
* Return value: the size of the document in bytes
*
- * Since: UNRELEASED
+ * Since: 0.17.7
*/
goffset
gdata_documents_entry_get_file_size (GDataDocumentsEntry *self)
diff --git a/gdata/services/documents/gdata-documents-utils.c b/gdata/services/documents/gdata-documents-utils.c
index 2f8cb8b0..64aa1ef6 100644
--- a/gdata/services/documents/gdata-documents-utils.c
+++ b/gdata/services/documents/gdata-documents-utils.c
@@ -32,7 +32,7 @@
*
* Adds a #GDataCategory representing @content_type to @entry.
*
- * Since: UNRELEASED
+ * Since: 0.17.7
*/
void
gdata_documents_utils_add_content_type (GDataDocumentsEntry *entry, const gchar *content_type)