qulogic/libgnt

Add missing Since tags.
release-2.x.y
2019-05-11, Elliott Sales de Andrade
61fca38d9354
Parents 22c7f059c67d
Children d641a928e509
Add missing Since tags.
--- a/doc/libgnt-docs.xml Tue Apr 23 18:37:46 2019 -0400
+++ b/doc/libgnt-docs.xml Sat May 11 00:15:06 2019 -0400
@@ -105,6 +105,14 @@
<title>Index of new symbols in 2.7.2</title>
<xi:include href="xml/api-index-2.7.2.xml"><xi:fallback /></xi:include>
</index>
+ <index id="api-2.6.0">
+ <title>Index of new symbols in 2.6.0</title>
+ <xi:include href="xml/api-index-2.6.0.xml"><xi:fallback /></xi:include>
+ </index>
+ <index id="api-2.4.2">
+ <title>Index of new symbols in 2.4.2</title>
+ <xi:include href="xml/api-index-2.4.2.xml"><xi:fallback /></xi:include>
+ </index>
<index id="api-2.4.0">
<title>Index of new symbols in 2.4.0</title>
<xi:include href="xml/api-index-2.4.0.xml"><xi:fallback /></xi:include>
@@ -117,6 +125,10 @@
<title>Index of new symbols in 2.2.0</title>
<xi:include href="xml/api-index-2.2.0.xml"><xi:fallback /></xi:include>
</index>
+ <index id="api-2.1.1">
+ <title>Index of new symbols in 2.1.1</title>
+ <xi:include href="xml/api-index-2.1.1.xml"><xi:fallback /></xi:include>
+ </index>
<index id="api-2.1.0">
<title>Index of new symbols in 2.1.0</title>
<xi:include href="xml/api-index-2.1.0.xml"><xi:fallback /></xi:include>
--- a/gntbindable.h Tue Apr 23 18:37:46 2019 -0400
+++ b/gntbindable.h Sat May 11 00:15:06 2019 -0400
@@ -159,6 +159,8 @@
* Discover if a key is bound.
*
* Returns: %TRUE if the the key has an action associated with it.
+ *
+ * Since: 2.4.2
*/
gboolean gnt_bindable_check_key(GntBindable *bindable, const char *keys);
@@ -180,6 +182,8 @@
* Returns a GntTree populated with "key" -> "binding" for the widget.
*
* Returns: (transfer full): The GntTree.
+ *
+ * Since: 2.1.1
*/
GntBindable * gnt_bindable_bindings_view(GntBindable *bind);
@@ -191,6 +195,8 @@
* From this window a user can select a listing to rebind a new key for the given action.
*
* Returns: %TRUE
+ *
+ * Since: 2.1.1
*/
gboolean gnt_bindable_build_help_window(GntBindable *bindable);
--- a/gntentry.c Tue Apr 23 18:37:46 2019 -0400
+++ b/gntentry.c Sat May 11 00:15:06 2019 -0400
@@ -954,6 +954,11 @@
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
+ /**
+ * GntEntry::completion:
+ *
+ * Since: 2.1.0
+ */
signals[SIG_COMPLETION] =
g_signal_new("completion",
G_TYPE_FROM_CLASS(klass),
--- a/gntfilesel.c Tue Apr 23 18:37:46 2019 -0400
+++ b/gntfilesel.c Sat May 11 00:15:06 2019 -0400
@@ -510,6 +510,7 @@
* The ::file-selected signal is emitted when the Select button or the
* file tree on a #GntFileSel is activated.
*
+ * Since: 2.1.0
*/
signals[SIG_FILE_SELECTED] =
g_signal_new("file_selected",
--- a/gntprogressbar.h Tue Apr 23 18:37:46 2019 -0400
+++ b/gntprogressbar.h Sat May 11 00:15:06 2019 -0400
@@ -68,6 +68,8 @@
* Get the #GType for GntProgressBar
*
* Returns: The GType for GntProrgressBar
+ *
+ * Since: 2.6.0
*/
GType
gnt_progress_bar_get_type (void);
@@ -78,6 +80,8 @@
* Create a new GntProgressBar
*
* Returns: The new GntProgressBar
+ *
+ * Since: 2.6.0
*/
GntWidget *
gnt_progress_bar_new (void);
@@ -88,6 +92,8 @@
* @fraction: The value between 0 and 1 to display
*
* Set the progress for a progress bar
+ *
+ * Since: 2.6.0
*/
void
gnt_progress_bar_set_fraction (GntProgressBar *pbar, gdouble fraction);
@@ -98,6 +104,8 @@
* @orientation: The orientation to use
*
* Set the orientation for a progress bar
+ *
+ * Since: 2.6.0
*/
void
gnt_progress_bar_set_orientation (GntProgressBar *pbar, GntProgressBarOrientation orientation);
@@ -108,6 +116,8 @@
* @show: A boolean indicating if the value is shown
*
* Controls whether the progress value is shown
+ *
+ * Since: 2.6.0
*/
void
gnt_progress_bar_set_show_progress (GntProgressBar *pbar, gboolean show);
@@ -119,6 +129,8 @@
* Get the progress that is displayed
*
* Returns: The progress displayed as a value between 0 and 1
+ *
+ * Since: 2.6.0
*/
gdouble
gnt_progress_bar_get_fraction (GntProgressBar *pbar);
@@ -130,6 +142,8 @@
* Get the orientation for the progress bar
*
* Returns: The current orientation of the progress bar
+ *
+ * Since: 2.6.0
*/
GntProgressBarOrientation
gnt_progress_bar_get_orientation (GntProgressBar *pbar);
@@ -141,6 +155,8 @@
* Get a boolean describing if the progress value is shown
*
* Returns: %TRUE if the progress value is shown, %FALSE otherwise.
+ *
+ * Since: 2.6.0
*/
gboolean
gnt_progress_bar_get_show_progress (GntProgressBar *pbar);
--- a/gntslider.h Tue Apr 23 18:37:46 2019 -0400
+++ b/gntslider.h Sat May 11 00:15:06 2019 -0400
@@ -52,6 +52,8 @@
* GntSlider:
*
* Access to any fields is deprecated. See inline comments for replacements.
+ *
+ * Since: 2.1.0
*/
struct _GntSlider
{
--- a/gnttextview.h Tue Apr 23 18:37:46 2019 -0400
+++ b/gnttextview.h Sat May 11 00:15:06 2019 -0400
@@ -49,11 +49,16 @@
typedef struct _GntTextViewPriv GntTextViewPriv;
typedef struct _GntTextViewClass GntTextViewClass;
+/**
+ * GntTextViewFlag:
+ *
+ * Since: 2.1.0
+ */
typedef enum
{
GNT_TEXT_VIEW_NO_SCROLL = 1 << 0,
GNT_TEXT_VIEW_WRAP_CHAR = 1 << 1,
- GNT_TEXT_VIEW_TOP_ALIGN = 1 << 2,
+ GNT_TEXT_VIEW_TOP_ALIGN = 1 << 2, /* Since: 2.1.1 */
} GntTextViewFlag;
/**
--- a/gntwm.c Tue Apr 23 18:37:46 2019 -0400
+++ b/gntwm.c Sat May 11 00:15:06 2019 -0400
@@ -1500,6 +1500,11 @@
gnt_closure_marshal_BOOLEAN__INT_INT_INT_POINTER,
G_TYPE_BOOLEAN, 4, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT, G_TYPE_POINTER);
+ /**
+ * GntWM::terminal-refresh:
+ *
+ * Since: 2.1.0
+ */
signals[SIG_TERMINAL_REFRESH] =
g_signal_new("terminal-refresh",
G_TYPE_FROM_CLASS(klass),
--- a/gntwm.h Tue Apr 23 18:37:46 2019 -0400
+++ b/gntwm.h Sat May 11 00:15:06 2019 -0400
@@ -183,6 +183,8 @@
/* This is invoked whenever the terminal window is resized, or the
* screen session is attached to a new terminal. (ie, from the
* SIGWINCH callback)
+ *
+ * Since: 2.1.0
*/
void (*terminal_refresh)(GntWM *wm);
--- a/gntws.h Tue Apr 23 18:37:46 2019 -0400
+++ b/gntws.h Sat May 11 00:15:06 2019 -0400
@@ -46,6 +46,8 @@
* GntWS:
*
* Access to any fields is deprecated. See inline comments for replacements.
+ *
+ * Since: 2.1.0
*/
struct _GntWS
{