summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-02-07Add some missing config.hHEADmasterGuillaume Desmottes3-0/+6
Needed to disable GLib deprecation warnings.
2012-02-07Disable GLib deprecation warnings for nowGuillaume Desmottes1-0/+4
GValueArray is deprecated but we need it for dbus-glib.
2011-11-21Support building for AndroidAlvaro Soliverez4-1/+45
This adds a missing explicit dependency on GIO, and adds build targets for Androgenizer. Modified from an original patch by Derek Foreman. https://bugs.freedesktop.org/show_bug.cgi?id=42523
2011-11-21configure: Bump tp-glib dep to include Emits_ChangedWill Thompson1-1/+1
b4481c5 updated the code generator to produce code containing TP_DBUS_PROPERTIES_MIXIN_FLAG_EMITS_CHANGED and TP_DBUS_PROPERTIES_MIXIN_FLAG_EMITS_INVALIDATED where appropriate, but did not update configure.ac to depend on a version of telepathy-glib which actually defines those constants. https://bugs.freedesktop.org/show_bug.cgi?id=43130
2011-11-18Post-release bumpMike Ruprecht1-1/+1
2011-11-18version 0.0.4telepathy-yell-0.0.4Mike Ruprecht2-2/+11
2011-11-17Update tools to current tp-glibSjoerd Simons6-28/+99
Current tools don't support the EmitsChanged annotation, update so they do :)
2011-11-17Add Call_Content_Interface_Audio_Control from telepathy-specSjoerd Simons3-0/+113
2011-11-16Add coding style check for g_hash_table_destroy and g_array_free usageXavier Claessens1-0/+13
2011-11-16Use _unref instead of _free _destroy when possible.unrefXavier Claessens4-5/+5
Replace g_(ptr_)array_free (foo, TRUE) and g_hash_table_destroy with respectively g_(ptr_)array_unref (foo) and g_hash_table_unref. I used this command to generate this patch: for f in `find -name "*.c"`; do sed -i $f -re 's/g_ptr_array_free \(([^ ,]+), TRUE\)/g_ptr_array_unref \(\1\)/'; done See Danielle's blog for explanation of possible bug _free can do: http://blogs.gnome.org/danni/2011/11/16/mistakes-with-g_value_set_boxed/
2011-10-12call-channel: add TPY_CALL_CHANNEL_FEATURE_COREGuillaume Desmottes2-28/+79
We shouldn't try to connect D-Bus signals in a constructed function (fdo #41729); this has to be done when preparing the core feature of the object so it is guaranteed that TpProxy has already been prepared. https://bugs.freedesktop.org/show_bug.cgi?id=41730
2011-06-16Fix tpy_call_channel_accept_finish() return valueEmilio Pozuelo Monfort1-1/+1
Don't return TRUE when there was an error.
2011-06-16Make tpy_call_channel_hangup_finish() actually do anythingEmilio Pozuelo Monfort2-2/+13
2011-06-16Use a GAsyncResult for each async callEmilio Pozuelo Monfort1-27/+24
So they can be made simultaneously.
2011-06-16CallChannel: add Hold high-level APIEmilio Pozuelo Monfort2-0/+84
2011-06-13Check for gioEmilio Pozuelo Monfort1-1/+1
Needed by g_simple_async_* and others.
2011-05-26Post-release bumpEmilio Pozuelo Monfort1-1/+1
2011-05-26version 0.0.3telepathy-yell-0.0.3Emilio Pozuelo Monfort2-2/+10
2011-05-26Fix signal documentationEmilio Pozuelo Monfort1-2/+1
2011-05-26Correctly track call membersEmilio Pozuelo Monfort1-7/+35
We were assuming that flags_changed in MembersChanged had all the call members, but that's not right as there may be several members and only a few changing their flags. We now correctly update the members. This also fixes a possible assertion failure when unreffing a NULL pointer.
2011-05-25Merge branch 'error-checking'Marco Barisione3-3/+4
Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2011-05-25Check the return value of functions instead of the GError when possibleMarco Barisione2-2/+2
2011-05-25Don't leak the GError in codec_offer_finished_cbMarco Barisione1-0/+1
2011-05-25tpy_call_content_codec_offer_offer_finish should return NULL instead of FALSEMarco Barisione1-1/+1
tpy_call_content_codec_offer_offer_finish's return type is GPtrArray, but in case of error it was returning FALSE instead of NULL.
2011-05-20Post-release bumpEmilio Pozuelo Monfort1-1/+1
2011-05-20version 0.0.2telepathy-yell-0.0.2Emilio Pozuelo Monfort2-5/+12
2011-05-20Add telepathy.am for maintainer-make-releaseEmilio Pozuelo Monfort4-0/+149
2011-05-20Add a ChangeLog fileEmilio Pozuelo Monfort1-0/+2
2011-05-20Fix docstrings for two TpyCallContent signalsEmilio Pozuelo Monfort1-4/+4
2011-05-17Don't Initialize member values in _constructedSjoerd Simons1-3/+1
In _constructed the construct time properties will be set, so if set explictely then struct members in _constructed we'll overwrite them..
2011-05-15Fix version from post release bump commitMike Ruprecht1-1/+1
2011-05-15tpy_call_content_codec_offer_offer shouldn't own the cancellableMike Ruprecht2-1/+2
2011-04-21Update .gitignoreDanielle Madeley1-0/+1
2011-04-08Fix signal signatureEmilio Pozuelo Monfort1-1/+1
We're passing a GValueArray, not a GPtrArray. https://bugzilla.gnome.org/show_bug.cgi?id=647126
2011-04-01Post-release bumpSjoerd Simons1-2/+2
2011-04-01version 0.0.1Sjoerd Simons1-2/+2
2011-04-01Add infrastructure for libtool versioningSjoerd Simons2-0/+20
2011-04-01Enable shared library by default, static users should disable thisSjoerd Simons1-3/+3
2011-04-01Add a NEWS and README fileSjoerd Simons2-0/+10
2011-03-23Fix typoSjoerd Simons1-1/+1
2011-03-23Add a ready property on the client object treeSjoerd Simons3-2/+143
2011-03-22Add API to get the current video stateSjoerd Simons2-0/+37
2011-03-22Correct the streams-removed callbackSjoerd Simons1-7/+8
On stream removal we should emit streams-removed, not streams added. Also g_list_find_customs looks up a GList link, not a data element...
2011-03-16Require GLib 2.28Emilio Pozuelo Monfort1-1/+1
Needed for g_list_free_full.
2011-03-08Don't pass a library suffix to ./configureEmilio Pozuelo Monfort2-7/+5
2011-03-03Add service side headers to installed headersDanielle Madeley1-13/+10
2011-03-02CallChannel: free the call detailsEmilio Pozuelo Monfort1-1/+1
2011-03-02Check parameters in public APIsEmilio Pozuelo Monfort1-0/+6
2011-03-02Add a tpy_call_channel_get_state() accessorEmilio Pozuelo Monfort2-0/+22
2011-02-23Use the correct types for tp_asv_get_boxedEmilio Pozuelo Monfort2-7/+12