summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-04-20Prepare version 0.11.3telepathy-glib-0.11.3Simon McVittie4-7/+110
2010-04-20tools/glib-interfaces-gen.py: add automatic string constant generation for ↵Cosimo Alfarano2-0/+49
TP_TOKEN_* Generate code for "contact-attribute" and "tp:hct" elements (ignoring "is-family=yes" matching elements for the latter) creating constant of the form TP_TOKEN_${INTERFACE}_${TOKEN} gtk-doc: add TP_TOKEN_* to docs/reference/telepathy-glib-sections.txt Closes fdo#26211 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
2010-04-20Add TP_CONTACT_FEATURE_LOCATION to the appropriate old entry in NEWSSimon McVittie1-0/+2
2010-04-20Add/update version annotationsSimon McVittie14-27/+73
2010-04-20Merge branch 'telepathy-glib-0.10'Simon McVittie1-1/+1
Conflicts: NEWS configure.ac telepathy-glib/util.c
2010-04-20Nano versionSimon McVittie2-1/+6
2010-04-20Prepare version 0.10.4telepathy-glib-0.10.4Simon McVittie3-5/+7
2010-04-20Update NEWSSimon McVittie1-0/+3
2010-04-20Merge branch 'telepathy-glib-0.8' into telepathy-glib-0.10Simon McVittie2-3/+7
2010-04-20Update NEWS with a cherry-picked patchSimon McVittie1-1/+4
2010-04-20connection_got_contact_attributes: don't display debug message if an error ↵Guillaume Desmottes1-2/+3
occured If something went wrong attributes is NULL so we can't call g_hash_table_size on it (fdo #27537). (cherry picked from commit 64e610011db5ddb8a9b1b4152bc19034777c1a54)
2010-04-20Document tp_g_signal_connect_object betterSimon McVittie1-1/+4
(cherry picked from commit 55aeaa6557d16f642f19d7cdc2d79f60a34dde63)
2010-04-20tp_g_signal_connect_object: Support the G_CONNECT_AFTER flag.Mike Ruprecht1-1/+1
(cherry picked from commit ab3f9568ceb8c2969042ea9a4d2e494f38c503c9)
2010-04-20Adjust gtk-doc for TpConnectionManager's accompanying boxed typesSimon McVittie1-2/+6
Reviewed-by: Danielle Madeley <danielle.madeley@collabora.co.uk>
2010-04-20Merge branch 'dbus-daemon'Simon McVittie22-147/+317
Reviewed-by: Danielle Madeley <danielle.madeley@collabora.co.uk>
2010-04-20Add boxed types for TpConnectionManagerProtocol and TpConnectionManagerParamDanielle Madeley3-14/+188
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
2010-04-20contact: start slow path only if iface is not supported by Contacts (fdo#27695)Guillaume Desmottes1-1/+36
2010-04-20connection_got_contact_attributes: don't display debug message if an error ↵Guillaume Desmottes1-2/+3
occured If something went wrong attributes is NULL so we can't call g_hash_table_size on it (fdo #27537).
2010-04-20Merge branch 'g-connect-after'Simon McVittie1-2/+5
Reviewed-by: Mike Ruprecht <cmaiku@gmail.com>
2010-04-19channel-request, channel-dispatch-operation tests; don't work around fd.o #5688Simon McVittie2-4/+0
We now depend on a new enough dbus-glib to not have this bug.
2010-04-19Use tp_dbus_daemon_register_object to export objects in testsSimon McVittie6-37/+18
2010-04-19Use tp_dbus_daemon_register_object in examplesSimon McVittie8-73/+24
This also fixes a reference leak in ExampleCallStream's constructed().
2010-04-19Use tp_dbus_daemon_register_object in the librarySimon McVittie3-11/+5
2010-04-19tp_dbus_daemon_register_object, tp_dbus_daemon_unregister_object: addSimon McVittie3-0/+51
Not having to extract the DBusGConnection from the TpDBusDaemon turns out to be a significant win in terms of amount of code.
2010-04-19TpBaseConnection: have a TpDBusDaemon as APISimon McVittie3-5/+77
2010-04-19TpBaseConnectionManager: have a TpDBusDaemonSimon McVittie3-19/+144
2010-04-19Document tp_g_signal_connect_object betterSimon McVittie1-1/+4
2010-04-19Merge branch 'boxed-intset'Simon McVittie5-57/+131
Reviewed-by: Danielle Madeley <danielle.madeley@collabora.co.uk>
2010-04-17tp_g_signal_connect_object: Support the G_CONNECT_AFTER flag.Mike Ruprecht1-1/+1
2010-04-16Move TpIntSet docs into the implementationSimon McVittie2-55/+66
2010-04-16Valgrind suppressions: ignore g_type_init_with_debug_flagsSimon McVittie1-0/+7
g_type_init is inline in newer GLib, so it's not in stack traces any more. With this suppression, the intset test is valgrind-clean again.
2010-04-16intset test: explicitly NULL all the pointers to give valgrind better cluesSimon McVittie1-1/+18
2010-04-16Register TpIntSet as a boxed typeSimon McVittie4-2/+41
2010-04-16Merge branch 'caps-crash-27686'Simon McVittie9-26/+190
Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
2010-04-16Simplify "no requests" path for TP_CONNECTION_FEATURE_CAPABILITIESSimon McVittie1-6/+1
2010-04-16Set an empty set of TpCapabilities if the connection doesn't support RequestsGuillaume Desmottes2-6/+19
If the connection doesn't have Requests, then there is nothing you can pass to CreateChannel/EnsureChannel, so by definition the set of requestable channel classes is empty.
2010-04-16If RequestableChannelClasses makes no sense, claim CAPABILITIES worked ↵Simon McVittie1-9/+11
anyway, with no capabilities Rationale: Requests is mandatory; if your connection manager is old enough not to have it, then there's nothing you can successfully pass to CreateChannel or EnsureChannel, so by the definition of RequestableChannelClasses, there aren't any.
2010-04-16Test _tp_capabilities_new (NULL, ?)Simon McVittie2-10/+9
2010-04-16TpCapabilities: cope gracefully with being constructed with classes=NULLSimon McVittie2-1/+17
2010-04-16TpCapabilities: make the constructor more const-correctSimon McVittie2-2/+2
2010-04-16Merge branch 'spec'Simon McVittie9-49/+282
Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
2010-04-16add regression test for fdo #27686Guillaume Desmottes1-2/+74
2010-04-16contacts-conn: add CM not supporting Requests and ContactCapabilitiesGuillaume Desmottes2-0/+63
2010-04-16connection_capabilities_prepare_cb: check if capabilities feature has ↵Guillaume Desmottes1-0/+4
actually be prepared TP_CONNECTION_FEATURE_CAPABILITIES is not a core feature so tp_proxy_prepare_finish can succeed even if it hasn't be prepared (fdo #27686).
2010-04-15Generate code for ContactInfoSimon McVittie3-1/+78
2010-04-15Update spec to 0.19.5 instead (correct codegen for Contact_Info_Flags)Simon McVittie2-7/+7
2010-04-15Update to spec 0.19.4 (Observer.Recover)Simon McVittie7-43/+199
2010-04-15test if TpContact fallbacks to connection's capabilities if ↵Guillaume Desmottes1-3/+78
ContactCapabilities is not supported
2010-04-15Fallback to connection capabilities if connection doesn't support ↵Guillaume Desmottes1-1/+63
ContactCapabilities
2010-04-15factor out contact_set_capabilitiesGuillaume Desmottes1-6/+17