summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Version 0.8.1telepathy-salut-0.8.1Will Thompson2012-11-161-2/+2
|
* NEWS for 0.8.1Will Thompson2012-11-161-1/+8
|
* Update Wocky snapshot to fix iChat interop.Will Thompson2012-11-161-0/+0
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=51527
* Disable deprecation warnings for the stable branchWill Thompson2012-11-161-1/+2
|
* NEWS for the patches I did not revertWill Thompson2012-11-161-1/+8
|
* Revert "Use TP_ERROR instead of long-deprecated TP_ERRORS"Will Thompson2012-11-1622-150/+150
| | | | This reverts commit cd23b9a835033f837fe266b6eff18df64c41f8c8.
* Revert "Use non-deprecated TpIntset APIs"Will Thompson2012-11-163-34/+31
| | | | This reverts commit 9ef6d455d1ea4f48bfe300a1b3c5a89061edc81d.
* Revert "Use non-deprecated TpMessage APIs"Will Thompson2012-11-161-10/+9
| | | | This reverts commit 5c54074f0490f4b5f6b31ecd8f5df011ca32af83.
* Revert "Set G_MESSAGES_DEBUG during testing"Will Thompson2012-11-161-2/+0
| | | | This reverts commit b6c32f8840ec4598885108f89d58a5a74ee04af8.
* Revert "Remove deprecated tp_handle_ref/unref"Will Thompson2012-11-1610-1/+115
| | | | This reverts commit c452d94fabbdf31c85963c81df3d5d566148f968.
* Revert "Update Wocky snapshot"Will Thompson2012-11-161-0/+0
| | | | This reverts commit caa206879f23ab24beacdda77e10ab972faff6e4.
* Revert "NEWS for the patches I just backported"Will Thompson2012-11-161-14/+1
| | | | This reverts commit 0eef9ba8a5a68854be43e655a6d3d9e667d648ca.
* Revert "Use telepathy-glib's versioned deprecation warnings."Will Thompson2012-11-1646-67/+7
| | | | This reverts commit a73b0c13faaab99927c44bebac7088d5c24ba6ea.
* Use telepathy-glib's versioned deprecation warnings.Will Thompson2012-11-1646-7/+67
|
* NEWS for the patches I just backportedWill Thompson2012-11-161-1/+14
|
* Update Wocky snapshotWill Thompson2012-11-161-0/+0
| | | | | | There are no particularly significant changes, but this pulls in the fix for https://bugs.freedesktop.org/show_bug.cgi?id=37701 among other things.
* Don't crash when closing a roomlist channel.Will Thompson2012-11-162-11/+16
| | | | | | | | TpBaseChannel requires that the 'close' vfunc be implemented, even if the implementation is literally tp_base_channel_destroyed() because there is no clean-up to do. As a result, Empathy pre-emptively requesting a roomlist channel when you open the Join Room… dialog would crash Salut when you close that dialog.
* tubes: don't use an uninitialized tube_id.Will Thompson2012-11-161-3/+8
| | | | | gcc rightly points out that tube_id may be uninitialized if extract_tube_information() returns false.
* Remove deprecated tp_handle_ref/unrefXavier Claessens2012-11-1610-115/+1
|
* Set G_MESSAGES_DEBUG during testingSimon McVittie2012-11-161-0/+2
| | | | The same as Gabble commit cbfa9d06.
* Use non-deprecated TpMessage APIsSimon McVittie2012-11-161-9/+10
| | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=49594 Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk>
* Use non-deprecated TpIntset APIsSimon McVittie2012-11-163-31/+34
| | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=49594 Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk>
* Use TP_ERROR instead of long-deprecated TP_ERRORSSimon McVittie2012-11-1622-150/+150
| | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=49594 Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk>
* contact-manager: safely return if called after having cleaned upJonny Lamb2012-11-161-6/+10
| | | | | | | | | The OLPC activity manager's removed-service callback was looking up a contact after the contact manager had cleaned up (but not disposed) which was causing an assertion. The activity manager should arguably disconnect from said signals... Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* start on version 0.8.1Jonny Lamb2012-04-042-1/+6
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* version 0.8.0telepathy-salut-0.8.0Jonny Lamb2012-04-042-4/+4
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* update NEWS for 0.8.0Jonny Lamb2012-04-041-5/+19
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* ft test: add more assertion failure debug outputJonny Lamb2012-04-031-1/+3
| | | | | | I am trying to debug this failing test on the buildbot. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* ft-channel: don't call gibber_ft_send unless the remote is accepted alreadyJonny Lamb2012-04-031-4/+39
| | | | | | | | This should fixe all the annoying TimeoutErrors in the outgoing file transfer tests waiting for TransferredBytesChanged (salut was actually asserting). \o/ Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* gibber-oob-file-transfer: assert we have a message before using itJonny Lamb2012-04-031-0/+2
| | | | | | | If we g_signal_connect (NULL, ...), it will not work, so let's fail earlier. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* muc-channel: re-add 'creator' propertyJonny Lamb2012-04-032-1/+21
| | | | | | | | | Turns out I misunderstood this property before when porting to TpBaseChannel in 2e6d62f0e735bf4f774f and thought it meant requested. Let's re-add it to make avahi/tubes/two-muc-stream-tubes.py pass again. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* muc-channel: fix reference to SalutConnection in OLPC codeJonny Lamb2012-04-031-1/+2
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Compile everything before we test itSimon McVittie2012-03-271-1/+1
| | | | | | | Without this change, sidecars.py fails under "make check" in a clean tree, because the plugins haven't been built when we recurse into tests. Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Start 0.7.3 devOlli Salli2012-03-262-1/+10
|
* Prepare release 0.7.2telepathy-salut-0.7.2Olli Salli2012-03-262-3/+3
|
* Update NEWSOlli Salli2012-03-261-2/+3
|
* file-transfer-channel: Fix file transfer on windows.Siraj Razick2012-03-261-10/+8
| | | | | | | | Fix file-transfer-channel so that it handles file transfers on windows, The current code is designed not to support file transfers on windows. Reviewed-by: Olli Salli <olli.salli@collabora.co.uk>
* Update READMEOlli Salli2012-03-261-5/+8
|
* Update NEWSOlli Salli2012-03-261-1/+3
|
* Merge remote-tracking branch 'siraj/fix_review'Olli Salli2012-03-267-155/+1051
|\ | | | | | | | | Reviewed-by: Olli Salli <olli.salli@collabora.co.uk> Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
| * bonjour-contact: Remove unwanted debug messagesSiraj Razick2012-03-261-1/+0
| |
| * bonjour-contact: Handle new Address resolves while another is in progressSiraj Razick2012-03-261-10/+61
| | | | | | | | | | | | | | We leak if another address resolve starts while another is in progress so we avoid this by stoping the in-progress operation and starting the new one after freeing the record and address_refs properly. The patch also cleans up freeing resolver context data.
| * bonjour-contact: store copies of name, type and domainSiraj Razick2012-03-261-6/+9
| | | | | | | | | | name, type, domain might change over time to make sure resolving works correctly, we keep a copy of them in our context
| * bonjour-contact: Avoid passing pointer to pointer into GetValuePtrSiraj Razick2012-03-261-8/+7
| | | | | | | | | | TXTRecordGetValuePtr expects a pointer to a char not a pointer to a pointer
| * bonjour-discovery-client: Remove redundant checks in drop_svcSiraj Razick2012-03-261-6/+0
| | | | | | | | The hash tables are never null since they are initiliazed in init.
| * Avoid passing DNSServiceRef pointers between private structs.Siraj Razick2012-03-265-22/+21
| | | | | | | | | | This change is to avoid dereferencing dangling pointers, since we are using pointers to DNSServiceRef in our mappings.
| * bonjour-contact-manager: Unref contact only if it has no servicesSiraj Razick2012-03-261-1/+5
| | | | | | | | We remove the contact ref only if it has no services
| * bonjour-contact: Introduce Bonjour ContactSiraj Razick2012-03-263-0/+761
| | | | | | | | Bonjour Contact similar to avahi Contact
| * bonjour-self: Avoid removing msg from record if it's missingSiraj Razick2012-03-261-1/+2
| | | | | | | | | | | | Avoid removing msg value from the TXT record if the key doesn't exisit. Trying to do so results in KDNSService_NoSuchKey error, and it fails the set_presence operation. which leads to many complications.
| * build: remove capability-set from CORE sourcesSiraj Razick2012-03-261-1/+0
| | | | | | | | | | | | This leads to crashes since it's really part of the plugins library so when plugins try to access static variables in cap-set leds to crashes on windows.