[phodav] NEWS: prepare for v2.5



commit 2f36983a6d611588e244af68dad2859e0cff27b3
Author: Marc-André Lureau <marcandre lureau redhat com>
Date:   Thu Aug 27 15:53:25 2020 +0400

    NEWS: prepare for v2.5

 NEWS                               | 7 +++++++
 doc/reference/phodav-2.0-docs.sgml | 4 ++++
 libphodav/phodav-virtual-dir.c     | 8 +++++++-
 3 files changed, 18 insertions(+), 1 deletion(-)
---
diff --git a/NEWS b/NEWS
index 2c99704..2b32848 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+v2.5
+====
+
+- !16 - add PhodavVirtualDir & related API (Jakub Janků)
+- various misc build and code fixes
+- CI improved (litmus check)
+
 v2.4
 ====
 
diff --git a/doc/reference/phodav-2.0-docs.sgml b/doc/reference/phodav-2.0-docs.sgml
index a53c9c3..817a2bb 100644
--- a/doc/reference/phodav-2.0-docs.sgml
+++ b/doc/reference/phodav-2.0-docs.sgml
@@ -33,5 +33,9 @@
     <title>Index of deprecated API</title>
     <xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
   </index>
+  <index id="api-2.5">
+    <title>New API in 2.5</title>
+    <xi:include href="xml/api-index-2.5.xml"><xi:fallback /></xi:include>
+  </index>
   <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
 </book>
diff --git a/libphodav/phodav-virtual-dir.c b/libphodav/phodav-virtual-dir.c
index 4162e69..3a3d217 100644
--- a/libphodav/phodav-virtual-dir.c
+++ b/libphodav/phodav-virtual-dir.c
@@ -59,7 +59,7 @@
  * is dropped, the whole structure is destroyed. Children that have other references (non-internal)
  * become dummies, otherwise they're freed.
  *
- * #PhodavVirtualDir is available since phodav 2.5
+ * #PhodavVirtualDir is available since phodav 2.5.
  */
 
 struct _PhodavVirtualDir {
@@ -594,6 +594,7 @@ phodav_virtual_dir_init (PhodavVirtualDir *self)
  * Creates a new root virtual directory that acts as the ancestor
  * of all further virtual directories.
  *
+ * Since: 2.5
  * Returns: (transfer full): a new #PhodavVirtualDir with the path `/`
  **/
 PhodavVirtualDir *
@@ -622,6 +623,8 @@ phodav_virtual_dir_new_root (void)
  *
  * This does not check for any conflicts between the virtual directories and
  * the real files - virtual directories take precedence (e.g. in g_file_get_child()).
+ *
+ * Since: 2.5
  **/
 void
 phodav_virtual_dir_root_set_real (PhodavVirtualDir *root,
@@ -641,6 +644,7 @@ phodav_virtual_dir_root_set_real (PhodavVirtualDir *root,
  * phodav_virtual_dir_root_get_real:
  * @root: #PhodavVirtualDir obtained from phodav_virtual_dir_new_root()
  *
+ * Since: 2.5
  * Returns: (transfer full): the #GFile previously set by phodav_virtual_dir_root_set_real(),
  * otherwise NULL.
  **/
@@ -669,6 +673,7 @@ phodav_virtual_dir_root_get_real (PhodavVirtualDir *root)
  * Note that this does not create parent directories.
  * You have to call this repeatedly yourself if the parent(s) don't exist yet.
  *
+ * Since: 2.5
  * Returns: (transfer full): a new #PhodavVirtualDir that corresponds to the @path
  **/
 PhodavVirtualDir *
@@ -750,6 +755,7 @@ end:
  *
  * If you want to add a #PhodavVirtualDir to @parent, use phodav_virtual_dir_new_dir() instead.
  *
+ * Since: 2.5
  * Returns: %TRUE on success, otherwise %FALSE
  **/
 gboolean


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]