summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* busybox diff doesnt support -c optionbaserock/gnomeJavier Jardón2015-02-111-1/+1
|
* set nano flagGuillaume Desmottes2014-08-251-1/+1
|
* 0.24.1telepathy-glib-0.24.1Guillaume Desmottes2014-08-252-4/+8
|
* contact-list: don't crash if 'd' is NULLGuillaume Desmottes2014-05-261-2/+6
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=79006
* base-client: fix potential uninitialized variable bugGuillaume Desmottes2014-05-261-1/+1
|
* nano versionSimon McVittie2014-03-262-1/+6
|
* 0.24.0telepathy-glib-0.24.0Simon McVittie2014-03-262-6/+8
|
* Upload documentation to the 0.24.x locationSimon McVittie2014-03-262-1/+3
|
* Don't check documentation completeness in this stable branchSimon McVittie2014-03-261-10/+2
|
* Disable warnings about deprecated functions for stable branchSimon McVittie2014-03-261-1/+2
| | | | | Since this is a stable branch, we're unlikely to fix uses of deprecated functions, so we shouldn't warn about them.
* NEWSSimon McVittie2014-03-181-0/+7
|
* Don't leak method call results (regression in 0.23.1)Simon McVittie2014-03-182-3/+24
| | | | | | | | | | | Commit 7ffbde3f used common code for two blocks that were not actually the same. dbus-glib method calls give the caller a new reference to the results, whereas dbus-glib signals do not. As a result, the method-call case needs to either free the results, or get them freed by giving ownership to the GValueArray. I chose to give ownership. Reviewed-by: Guillaume Desmottes
* set nano flagGuillaume Desmottes2014-03-181-1/+1
|
* 0.23.3telepathy-glib-0.23.3Guillaume Desmottes2014-03-186-8/+34
|
* tp_list_connection_managers_async: terminate properly if there is no CMGuillaume Desmottes2014-03-173-0/+97
| | | | Fix fdo#68892.
* connection-manager: factor out all_cms_prepared()Guillaume Desmottes2014-03-171-20/+26
|
* call-channel: pass our factory to TpCallStream objectsGuillaume Desmottes2014-03-142-0/+5
| | | | Partially fix fdo#76168.
* call-channel: pass our factory to TpCallContent objectsGuillaume Desmottes2014-03-142-1/+4
| | | | Partially fix fdo#76168.
* Merge branch 'telepathy-glib-0.22'Guillaume Desmottes2014-03-131-4/+9
|\ | | | | | | | | Conflicts: telepathy-glib/contact.c
| * fix file path leakstelepathy-glib-0.22Guillaume Desmottes2014-03-131-6/+14
| | | | | | | | | | | | g_file_get_path() returns (transfer full). Fix fdo#76119
* | Merge branch 'telepathy-glib-0.22'Simon McVittie2014-03-133-5/+17
|\ \ | | | | | | | | | | | | Conflicts: NEWS
| * | 0.22 NEWSSimon McVittie2014-03-131-1/+9
| | |
| * | TpFileTransferChannel: Fix possible crashes, particularly with GLib 2.39Xavier Claessens2014-03-131-21/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tp_file_transfer_channel_accept_file_async() and tp_file_transfer_channel_provide_file_async() operations are supposed to complete as soon as the CM returns from AcceptFile or ProvideFile. That means that we cannot call operation_failed() for streaming errors. We also have to keep a ref on self while streaming the file to avoid a crash in the callback when we dereference self. This means that the client app cannot cancel the ongoing streaming by unreffing the channel, replying on dispose calling g_cancellable_cancel(). It can still be doing using g_object_run_dispose() though. To make it cleaner we should probably add tp_file_transfer_channel_cancel(). The spec does not provide any way for the streaming client to inform the CM and other clients about the error occured while streaming. TpFileTransferChannel API does not even have a way to propagate that error to the user. [slightly more informative commit message for the 0.22 cherry-pick -smcv] Bug: https://bugs.freedesktop.org/show_bug.cgi?id=72319
| * | TpProxy: finish_all_requests: don't leak copied GQueueSimon McVittie2014-03-131-1/+1
| | | | | | | | | | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=76000 Reviewed-by: Guillaume Desmottes
| * | TpContact: mime_file_written: don't leak the file's pathSimon McVittie2014-03-131-4/+6
| |/ | | | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=76000 Reviewed-by: Guillaume Desmottes
* | add tp_protocol_new_vardict()Guillaume Desmottes2014-02-284-1/+58
| |
* | protocol: add TpProtocol:protocol-properties-vardictGuillaume Desmottes2014-02-284-0/+54
| |
* | test creating a TpProtocol by passing its immutable propsGuillaume Desmottes2014-02-281-0/+19
| |
* | test-protocol-objects: factor out check_tp_protocol()Guillaume Desmottes2014-02-281-28/+34
| |
* | set nano versionGuillaume Desmottes2014-02-261-1/+1
| |
* | 0.23.2telepathy-glib-0.23.2Guillaume Desmottes2014-02-267-15/+40
| |
* | add tp_account_channel_request_set_initial_inviteesGuillaume Desmottes2014-02-264-0/+106
| |
* | add tp_account_channel_request_set_initial_invitee_ids()Guillaume Desmottes2014-02-264-1/+47
| |
* | add tp_account_channel_request_set_conference_initial_channels()Guillaume Desmottes2014-02-264-1/+56
| |
* | account-channel-request: set TargetHandleType: TP_HANDLE_TYPE_NONE if neededGuillaume Desmottes2014-02-262-5/+53
| |
* | account-channel-request: factor out going_to_request()Guillaume Desmottes2014-02-251-45/+32
| |
* | add tp_account_channel_request_set_sms_channel()Guillaume Desmottes2014-02-254-1/+35
| |
* | add tp_account_channel_request_new_dbus_tube()Guillaume Desmottes2014-02-254-0/+92
| |
* | add tp_account_channel_request_new_stream_tube()Guillaume Desmottes2014-02-254-0/+96
| |
* | add tp_account_channel_request_set_file_transfer_hash()Guillaume Desmottes2014-02-254-1/+49
| |
* | TpBaseConnection: add "account-path-suffix" propertyXavier Claessens2014-02-173-0/+57
| |
* | nano versionSimon McVittie2014-02-042-1/+4
| |
* | maintainer-prepare-release: do "git tag" in srcdirtelepathy-glib-0.23.1Simon McVittie2014-02-041-1/+1
| |
* | 0.23.1Simon McVittie2014-02-0410-45/+74
| |
* | TpProtocol: fix some suspicious memory managementSimon McVittie2014-02-041-4/+4
| | | | | | | | | | | | | | | | | | It works fine as long as a preallocated GArray doesn't move its memory buffer for no reason, but it's good to be obviously correct. Spotted while working on the previous commit. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=71093 Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
* | tp_connection_manager_param_dup_variant_type: addSimon McVittie2014-02-044-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | In order for this to work, TpProtocol now ignores parameters whose D-Bus signatures are not a syntactically valid single complete type. This is helpful for Mission Control to be able to migrate parameters from untyped to typed storage - it stores parameters in terms of GVariant. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=71093 Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> [added (transfer full) as requested in review -smcv]
* | Merge branch 'telepathy-glib-0.22'Simon McVittie2014-01-291-1/+0
|\ \ | |/ | | | | | | | | Conflicts: NEWS configure.ac
| * nano versionSimon McVittie2014-01-292-1/+6
| |
| * release 0.22.1telepathy-glib-0.22.1Simon McVittie2014-01-292-3/+5
| |
| * more NEWS for 0.22Simon McVittie2014-01-291-0/+3
| |