diff options
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | telepathy-glib/abi.am | 1 | ||||
-rw-r--r-- | telepathy-glib/channel.c | 8 | ||||
-rw-r--r-- | telepathy-glib/cm-message.c | 2 | ||||
-rw-r--r-- | telepathy-glib/intset.c | 4 | ||||
-rw-r--r-- | telepathy-glib/message.c | 2 | ||||
-rw-r--r-- | telepathy-glib/text-channel.c | 44 | ||||
-rw-r--r-- | telepathy-glib/versions/0.13.10.abi | 29 |
9 files changed, 70 insertions, 33 deletions
@@ -1,6 +1,8 @@ -telepathy-glib 0.13.10 (UNRELEASED) +telepathy-glib 0.13.10 (2010-12-20) =================================== +The “I own a 9 millimetre, a 357, a 45 handgun, a 38 special” release. + Enhancements: • New TpMessage API: tp_message_get_message_type, tp_cm_message_new_text (smcv) @@ -8,6 +10,11 @@ Enhancements: • fd.o #32411: warn and do nothing if unsupported flags are passed to tp_g_signal_connect_object (smcv) +• Updated to spec 0.21.8. + · The ContactList.ContactsChangedWithID signal was added. It's automatically + emitted by TpBaseContactList, so CMs don't need to make any changes to take + advantage of it. (smcv) + Fixes: • tp_account_manager_ensure_account() no longer criticals if you pass it a diff --git a/configure.ac b/configure.ac index fcd940f5a..ce17ae327 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,8 @@ AC_PREREQ([2.59]) m4_define([tp_glib_major_version], [0]) m4_define([tp_glib_minor_version], [13]) -m4_define([tp_glib_micro_version], [9]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_micro_version], [10]) +m4_define([tp_glib_nano_version], [0]) # If library source has changed since last release, increment revision # If interfaces have been added, removed or changed since last release, diff --git a/telepathy-glib/abi.am b/telepathy-glib/abi.am index fe13097d3..ae96bb80e 100644 --- a/telepathy-glib/abi.am +++ b/telepathy-glib/abi.am @@ -59,6 +59,7 @@ ABI_LISTS = \ versions/0.13.7.abi \ versions/0.13.8.abi \ versions/0.13.9.abi \ + versions/0.13.10.abi \ $(NULL) # The quoting here is unnecessary but harmless, and has the useful side-effect diff --git a/telepathy-glib/channel.c b/telepathy-glib/channel.c index 081af2764..2270a678b 100644 --- a/telepathy-glib/channel.c +++ b/telepathy-glib/channel.c @@ -2316,7 +2316,7 @@ leave_channel_async (TpChannel *self, * You can then call tp_channel_leave_finish() to get the result of * the operation. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_channel_leave_async (TpChannel *self, @@ -2338,7 +2338,7 @@ tp_channel_leave_async (TpChannel *self, * * Returns: %TRUE if the channel has been left; %FALSE otherwise * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ gboolean tp_channel_leave_finish (TpChannel *self, @@ -2362,7 +2362,7 @@ tp_channel_leave_finish (TpChannel *self, * You can then call tp_channel_close_finish() to get the result of * the operation. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_channel_close_async (TpChannel *self, @@ -2395,7 +2395,7 @@ tp_channel_close_async (TpChannel *self, * * Returns: %TRUE if the channel has been closed; %FALSE otherwise * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ gboolean tp_channel_close_finish (TpChannel *self, diff --git a/telepathy-glib/cm-message.c b/telepathy-glib/cm-message.c index 1291e82ac..9e2592e89 100644 --- a/telepathy-glib/cm-message.c +++ b/telepathy-glib/cm-message.c @@ -268,7 +268,7 @@ tp_cm_message_get_sender (TpMessage *self) * * Returns: (transfer full): a newly allocated #TpCMMessage * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ TpMessage * tp_cm_message_new_text (TpBaseConnection *conn, diff --git a/telepathy-glib/intset.c b/telepathy-glib/intset.c index 86369f6c9..025e5221c 100644 --- a/telepathy-glib/intset.c +++ b/telepathy-glib/intset.c @@ -655,7 +655,7 @@ tp_intset_union (const TpIntset *left, const TpIntset *right) * Add each integer in @other to @self, analogous to the bitwise operation * self |= other. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_intset_union_update (TpIntset *self, @@ -710,7 +710,7 @@ tp_intset_difference (const TpIntset *left, const TpIntset *right) * Remove each integer in @other from @self, analogous to the bitwise * operation self &= (~other). * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_intset_difference_update (TpIntset *self, diff --git a/telepathy-glib/message.c b/telepathy-glib/message.c index 836d128e5..73cc71495 100644 --- a/telepathy-glib/message.c +++ b/telepathy-glib/message.c @@ -879,7 +879,7 @@ tp_message_get_token (TpMessage *self) * * Returns: the type of this message * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ TpChannelTextMessageType tp_message_get_message_type (TpMessage *self) diff --git a/telepathy-glib/text-channel.c b/telepathy-glib/text-channel.c index 5915f5565..9eae11cc6 100644 --- a/telepathy-glib/text-channel.c +++ b/telepathy-glib/text-channel.c @@ -32,7 +32,7 @@ * * Data structure representing a #TpTextChannel. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ /** @@ -40,7 +40,7 @@ * * The class of a #TpTextChannel. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ #include <config.h> @@ -827,7 +827,7 @@ tp_text_channel_class_init (TpTextChannelClass *klass) * A #GStrv containing the MIME types supported by this channel, with more * preferred MIME types appearing earlier in the array. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ param_spec = g_param_spec_boxed ("supported-content-types", "SupportedContentTypes", @@ -843,7 +843,7 @@ tp_text_channel_class_init (TpTextChannelClass *klass) * A #TpMessagePartSupportFlags indicating the level of support for * message parts on this channel. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ param_spec = g_param_spec_uint ("message-part-support-flags", "MessagePartSupportFlags", @@ -859,7 +859,7 @@ tp_text_channel_class_init (TpTextChannelClass *klass) * A #TpDeliveryReportingSupportFlags indicating features supported * by this channel. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ param_spec = g_param_spec_uint ("delivery-reporting-support", "DeliveryReportingSupport", @@ -880,7 +880,7 @@ tp_text_channel_class_init (TpTextChannelClass *klass) * Note that this signal is only fired once the * #TP_TEXT_CHANNEL_FEATURE_INCOMING_MESSAGES has been prepared. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ signals[SIG_MESSAGE_RECEIVED] = g_signal_new ("message-received", G_OBJECT_CLASS_TYPE (klass), @@ -901,7 +901,7 @@ tp_text_channel_class_init (TpTextChannelClass *klass) * Note that this signal is only fired once the * #TP_TEXT_CHANNEL_FEATURE_INCOMING_MESSAGES has been prepared. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ signals[SIG_PENDING_MESSAGE_REMOVED] = g_signal_new ( "pending-message-removed", @@ -924,7 +924,7 @@ tp_text_channel_class_init (TpTextChannelClass *klass) * The ::message-sent signal is emitted when @message * has been submitted for sending. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ signals[SIG_MESSAGE_SENT] = g_signal_new ( "message-sent", @@ -963,7 +963,7 @@ tp_text_channel_init (TpTextChannel *self) * * Returns: (transfer full): a newly created #TpTextChannel * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ TpTextChannel * tp_text_channel_new (TpConnection *conn, @@ -999,7 +999,7 @@ tp_text_channel_new (TpConnection *conn, * Returns: (transfer none) : * the value of #TpTextChannel:supported-content-types * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ const gchar * const * tp_text_channel_get_supported_content_types (TpTextChannel *self) @@ -1017,7 +1017,7 @@ tp_text_channel_get_supported_content_types (TpTextChannel *self) * * Returns: the value of #TpTextChannel:message-part-support-flags * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ TpMessagePartSupportFlags tp_text_channel_get_message_part_support_flags ( @@ -1036,7 +1036,7 @@ tp_text_channel_get_message_part_support_flags ( * * Returns: the value of #TpTextChannel:delivery-reporting-support property * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ TpDeliveryReportingSupportFlags tp_text_channel_get_delivery_reporting_support ( @@ -1060,7 +1060,7 @@ tp_text_channel_get_delivery_reporting_support ( * One can ask for a feature to be prepared using the * tp_proxy_prepare_async() function, and waiting for it to callback. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ GQuark tp_text_channel_get_feature_quark_incoming_messages (void) @@ -1079,7 +1079,7 @@ tp_text_channel_get_feature_quark_incoming_messages (void) * Returns: (transfer container) (element-type TelepathyGLib.SignalledMessage): * a #GList of borrowed #TpSignalledMessage * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ GList * tp_text_channel_get_pending_messages (TpTextChannel *self) @@ -1123,7 +1123,7 @@ send_message_cb (TpChannel *proxy, * submitted to the sever, @callback will be called. You can then call * tp_text_channel_send_message_finish() to get the result of the operation. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_text_channel_send_message_async (TpTextChannel *self, @@ -1161,7 +1161,7 @@ tp_text_channel_send_message_async (TpTextChannel *self, * Returns: %TRUE if the message has been submitted to the server, %FALSE * otherwise. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ gboolean tp_text_channel_send_message_finish (TpTextChannel *self, @@ -1207,7 +1207,7 @@ acknowledge_pending_messages_cb (TpChannel *channel, * * See tp_text_channel_ack_message_async() about acknowledging messages. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_text_channel_ack_messages_async (TpTextChannel *self, @@ -1271,7 +1271,7 @@ tp_text_channel_ack_messages_async (TpTextChannel *self, * * Returns: %TRUE if the messages have been acked, %FALSE otherwise. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ gboolean tp_text_channel_ack_messages_finish (TpTextChannel *self, @@ -1299,7 +1299,7 @@ tp_text_channel_ack_messages_finish (TpTextChannel *self, * pending-message queue and so the #TpTextChannel::pending-message-removed * signal is fired. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_text_channel_ack_message_async (TpTextChannel *self, @@ -1348,7 +1348,7 @@ tp_text_channel_ack_message_async (TpTextChannel *self, * * Returns: %TRUE if the message has been acked, %FALSE otherwise. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ gboolean tp_text_channel_ack_message_finish (TpTextChannel *self, @@ -1389,7 +1389,7 @@ set_chat_state_cb (TpChannel *proxy, * You can then call tp_text_channel_set_chat_state_finish() to get the * result of the operation. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ void tp_text_channel_set_chat_state_async (TpTextChannel *self, @@ -1416,7 +1416,7 @@ tp_text_channel_set_chat_state_async (TpTextChannel *self, * * Returns: %TRUE if the chat state has been changed, %FALSE otherwise. * - * Since: 0.13.UNRELEASED + * Since: 0.13.10 */ gboolean tp_text_channel_set_chat_state_finish (TpTextChannel *self, diff --git a/telepathy-glib/versions/0.13.10.abi b/telepathy-glib/versions/0.13.10.abi new file mode 100644 index 000000000..d036794d9 --- /dev/null +++ b/telepathy-glib/versions/0.13.10.abi @@ -0,0 +1,29 @@ +Version: TELEPATHY_GLIB_0.13.10 +Extends: TELEPATHY_GLIB_0.13.9 +Release: 0.13.10 + +tp_channel_close_async +tp_channel_close_finish +tp_channel_leave_async +tp_channel_leave_finish +tp_cli_connection_interface_contact_list_connect_to_contacts_changed_with_id +tp_cm_message_new_text +tp_intset_difference_update +tp_intset_union_update +tp_message_get_message_type +tp_svc_connection_interface_contact_list_emit_contacts_changed_with_id +tp_text_channel_ack_message_async +tp_text_channel_ack_message_finish +tp_text_channel_ack_messages_async +tp_text_channel_ack_messages_finish +tp_text_channel_get_delivery_reporting_support +tp_text_channel_get_feature_quark_incoming_messages +tp_text_channel_get_message_part_support_flags +tp_text_channel_get_pending_messages +tp_text_channel_get_supported_content_types +tp_text_channel_get_type +tp_text_channel_new +tp_text_channel_send_message_async +tp_text_channel_send_message_finish +tp_text_channel_set_chat_state_async +tp_text_channel_set_chat_state_finish |