--- a/libpurple/purplehistorymanager.h Thu Feb 29 21:35:42 2024 -0600 +++ b/libpurple/purplehistorymanager.h Thu Feb 29 21:36:49 2024 -0600 @@ -40,7 +40,7 @@ * * A #GError domain for errors from #PurpleHistoryManager. * - * Since: 3.0.0 + * Since: 3.0 */ #define PURPLE_HISTORY_MANAGER_DOMAIN \ g_quark_from_static_string("purple-history-manager") \ @@ -58,7 +58,7 @@ * #PurpleHistoryManager keeps track of all adapters and emits signals when * adapters are registered and unregistered. * - * Since: 3.0.0 + * Since: 3.0 */ /** @@ -69,7 +69,7 @@ * A function to be used as a callback with * purple_history_manager_foreach(). * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_TYPE_IN_3_0 typedef void (*PurpleHistoryManagerForeachFunc)(PurpleHistoryAdapter *adapter, gpointer data); @@ -85,7 +85,7 @@ * Returns: %TRUE if startup was successful, otherwise %FALSE with @error * potentially set. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 gboolean purple_history_manager_startup(PurpleHistoryAdapter *adapter, GError **error); @@ -95,7 +95,7 @@ * * Shuts down the history manager by destroying the default instance. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 void purple_history_manager_shutdown(void); @@ -107,7 +107,7 @@ * * Returns: (transfer none): The default #PurpleHistoryManager instance. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 PurpleHistoryManager *purple_history_manager_get_default(void); @@ -120,7 +120,7 @@ * * Returns: (transfer none): The active @adapter * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 PurpleHistoryAdapter *purple_history_manager_get_active(PurpleHistoryManager *manager); @@ -136,7 +136,7 @@ * Returns: %TRUE if setting the @adapter was successful with @manager * %FALSE otherwise. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 gboolean purple_history_manager_set_active(PurpleHistoryManager *manager, const gchar *id, GError **error); @@ -152,7 +152,7 @@ * Returns: %TRUE if @adapter was successfully registered with @manager, * %FALSE otherwise. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 gboolean purple_history_manager_register(PurpleHistoryManager *manager, PurpleHistoryAdapter *adapter, GError **error); @@ -168,7 +168,7 @@ * Returns: %TRUE if @adapter was successfully unregistered from @manager, * %FALSE otherwise. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 gboolean purple_history_manager_unregister(PurpleHistoryManager *manager, PurpleHistoryAdapter *adapter, GError **error); @@ -182,7 +182,7 @@ * * Returns: (transfer none): The #PurpleHistoryAdapter identified by @id or %NULL. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 PurpleHistoryAdapter *purple_history_manager_find(PurpleHistoryManager *manager, const gchar *id); @@ -197,7 +197,7 @@ * Returns: (transfer container) (element-type PurpleHistoryAdapter): The list * containing all of the #PurpleHistoryAdapter's registered with @manager. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 GList *purple_history_manager_get_all(PurpleHistoryManager *manager); @@ -214,7 +214,7 @@ * containing all of the #PurpleMessage's that matched the query * with @manager. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 GList *purple_history_manager_query(PurpleHistoryManager *manager, const gchar *query, GError **error); @@ -230,7 +230,7 @@ * Returns: %TRUE if messages matching @query were successfully removed from * the active adapter of @manager, %FALSE otherwise. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 gboolean purple_history_manager_remove(PurpleHistoryManager *manager, const gchar *query, GError **error); @@ -246,7 +246,7 @@ * * Returns: %TRUE if @message was successfully written, %FALSE otherwise. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 gboolean purple_history_manager_write(PurpleHistoryManager *manager, PurpleConversation *conversation, PurpleMessage *message, GError **error); @@ -259,7 +259,7 @@ * * Calls @func for each #PurpleHistoryAdapter that @manager knows about. * - * Since: 3.0.0 + * Since: 3.0 */ PURPLE_AVAILABLE_IN_3_0 void purple_history_manager_foreach(PurpleHistoryManager *manager, PurpleHistoryManagerForeachFunc func, gpointer data);