aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add empathy_client_factory_dup_contact_by_id_async()Guillaume Desmottes2012-05-102-0/+79
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=675597
* remove invisible_char from ui filesGuillaume Desmottes2012-05-103-9/+0
| | | | We should use Gtk+'s default and those widgets don't use it any way.
* Turn EmpathyNewChatroomDialog to a GtkDialog sub-classGuillaume Desmottes2012-05-103-458/+491
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674860
* chatroom-dialog: re-order some functionsGuillaume Desmottes2012-05-101-355/+299
| | | | | | Let's just get rid of all these stupid prototypes. https://bugzilla.gnome.org/show_bug.cgi?id=674860
* new-chatroom-dialog: port to TP coding styleGuillaume Desmottes2012-05-102-640/+642
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674860
* Use tp_capabilities_get_channel_classes_variant()Guillaume Desmottes2012-05-101-11/+33
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674774
* Stop generating Certificate APIGuillaume Desmottes2012-05-103-307/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674318
* remove empathy-tls-certificateGuillaume Desmottes2012-05-103-527/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674318
* Use TpTpTLSCertificateGuillaume Desmottes2012-05-108-127/+114
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674318
* use tp_capabilities_supports_sms()Guillaume Desmottes2012-05-101-32/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673846
* Stop generating Debug APIGuillaume Desmottes2012-05-103-167/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674182
* Store the TpDebugMessage in the modelGuillaume Desmottes2012-05-101-134/+131
| | | | | | Makes things easier and saves us from dupping the info. https://bugzilla.gnome.org/show_bug.cgi?id=674182
* merge store_filter_foreach () and copy_model_foreach ()Guillaume Desmottes2012-05-101-61/+14
| | | | | | | | They were basically the same function. The only difference was that one was assuming to receive an empty string during the first iteration while the other was coping with it being NULL. https://bugzilla.gnome.org/show_bug.cgi?id=674182
* debug-window: use TpDebugClientGuillaume Desmottes2012-05-101-70/+89
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674182
* empathy-debugger: use self->priv patternGuillaume Desmottes2012-05-102-278/+267
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674182
* debug_window_dispose: use g_clear_object()Guillaume Desmottes2012-05-101-20/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674182
* Depend on tp-glib 0.19.0Guillaume Desmottes2012-05-101-2/+2
| | | | We are going to use its new API (TpDebugClient, TpTLSCertificate, etc).
* Merge branch 'gnome-3-4'Guillaume Desmottes2012-05-091-1/+4
|\ | | | | | | | | | | | | | | | | Conflicts: configure.ac libempathy/empathy-tp-chat.c src/empathy-event-manager.c src/empathy-streamed-media-window.c src/empathy-video-widget.c
| * Use tp-glib version checking macrosGuillaume Desmottes2012-05-091-1/+4
| | | | | | | | | | | | | | Will make sure we don't accidentally use new API in stable branch. Depend on tp-glib 0.18.0 while we are on it as any distro shipping 3.4 should use this version any way.
| * Use TP_ERROR instead of TP_ERRORSGuillaume Desmottes2012-05-097-11/+11
| | | | | | | | The latter has been deprecated in tp-glib master.
| * Add fallback server for WLMXavier Claessens2012-05-081-0/+1
| |
| * Use gst_object_ref_sink()Javier Jardón2012-05-073-14/+7
| | | | | | | | | | | | Instead call both gst_object_ref() and gst_object_sink() https://bugzilla.gnome.org/show_bug.cgi?id=675590
* | new-account-dialog: rely on the EmpathyAccountWidget::close signalGuillaume Desmottes2012-05-092-18/+7
| | | | | | | | | | | | | | | | | | | | User of the dialog should wait for the widget to be completely done before destroying it. Change the 'success' dialog response to GTK_RESPONSE_APPLY to stay coherent with the response type received from EmpathyAccountWidget. https://bugzilla.gnome.org/show_bug.cgi?id=675667
* | account-widget: delay 'close' signal if enabling the accountGuillaume Desmottes2012-05-091-2/+11
| | | | | | | | | | | | | | The whole point of this signal is to tell to user when it can be destroyed, so we shouldn't fire it if we are still pending on an async call. https://bugzilla.gnome.org/show_bug.cgi?id=675667
* | video-widget: Remove as it is now unusedOlivier Crête2012-05-094-592/+6
| | | | | | | | | | | | | | It was only used by empathy-av. Move the #defines to call-window where they are used. https://bugzilla.gnome.org/show_bug.cgi?id=675647
* | call-observer: use tp_channel_get_target_contact()Guillaume Desmottes2012-05-081-32/+4
| |
* | Turn EmpathyAccountWidget to a proper GtkWidgetGuillaume Desmottes2012-05-0810-146/+139
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=640417
* | approve_ft_channel: stop using the contact factoryGuillaume Desmottes2012-05-081-37/+20
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675597
* | approve_call_channel: stop using the contact factoryGuillaume Desmottes2012-05-081-65/+47
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675597
* | event-manager: factor out approve_channel_*() functionsGuillaume Desmottes2012-05-081-94/+141
| | | | | | | | | | | | This approve function is way to big, let's split it. https://bugzilla.gnome.org/show_bug.cgi?id=675597
* | tp-chat: stop using the contact factory when building messageGuillaume Desmottes2012-05-081-63/+12
| | | | | | | | | | | | | | | | | | Messages are now synchronously proccessed so we don't have to keep an internal queue of messages being prepared. We also need to complete the preparation of the EmpathyTpChat feature in idle as it's now prepared synchronously as well. https://bugzilla.gnome.org/show_bug.cgi?id=675597
* | ft-handler: create EmpathyContact from TpContactGuillaume Desmottes2012-05-081-32/+5
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675597
* | tp-contact-factory: remove unused methodsGuillaume Desmottes2012-05-082-177/+0
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675597
* | Add fallback server for WLMXavier Claessens2012-05-081-0/+1
| |
* | Use gst_object_ref_sink()Javier Jardón2012-05-082-7/+4
| | | | | | | | | | | | Instead call both gst_object_ref() and gst_object_sink() https://bugzilla.gnome.org/show_bug.cgi?id=675590
* | goa-mc-plugin: support enabling or disabling accountsDebarshi Ray2012-05-072-11/+25
| | | | | | | | | | | | Bumped the required version of GOA to 3.5.0. Fixes: https://bugzilla.gnome.org/673263
* | Use TP_ERROR instead of TP_ERRORSGuillaume Desmottes2012-05-077-11/+11
| | | | | | | | The latter has been deprecated in tp-glib master.
* | Fix localization of --help outputs and application namesGabor Kelemen2012-05-035-5/+9
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675246
* | accounts-dialog: stop using tp_connection_get_self_handle()Guillaume Desmottes2012-05-031-17/+8
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | contact-widget: stop using tp_connection_get_self_handle()Guillaume Desmottes2012-05-031-4/+7
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | contact: compare TpContact objects rather than handlesGuillaume Desmottes2012-05-031-5/+3
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | invite-participant-dialog: compare TpContact objects rather than handlesGuillaume Desmottes2012-05-031-6/+4
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | tp-chat:stop using the handle of membersGuillaume Desmottes2012-05-031-22/+14
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | empathy_tp_chat_is_invited: return a TpContact for the inviterGuillaume Desmottes2012-05-033-41/+10
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | event-manager: use new channel group APIGuillaume Desmottes2012-05-031-4/+4
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | invite-participant-dialog: stop using tp_channel_group_get_handle_owner()Guillaume Desmottes2012-05-031-2/+5
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | tp-chat: use new channel group API to track membersGuillaume Desmottes2012-05-031-136/+55
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | tp_chat_prepare_ready_async: use new channel group APIGuillaume Desmottes2012-05-031-46/+16
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | empathy_tp_chat_is_invited: use new channel group APIGuillaume Desmottes2012-05-031-5/+12
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | individual-store-channel: stop preparing TP_CHANNEL_FEATURE_CONTACTSGuillaume Desmottes2012-05-031-26/+5
| | | | | | | | | | | | The factory does it for us now. https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | client-factory: prepare TP_CHANNEL_FEATURE_CONTACTSGuillaume Desmottes2012-05-031-0/+3
| | | | | | | | | | | | | | We are about to use the channel-contacts API so best to make sure they will work. https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | remove empathy_tp_chat_join()Guillaume Desmottes2012-05-032-33/+0
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | chat-manager: use tp_channel_join_async()Guillaume Desmottes2012-05-031-1/+17
| | | | | | | | | | | | It's basically the same as empathy_tp_chat_join() https://bugzilla.gnome.org/show_bug.cgi?id=675229
* | Revert "Revert "remove EMPATHY_AV_BUS_NAME*""Guillaume Desmottes2012-05-021-3/+0
| | | | | | | | | | | | This reverts commit afb9276b8a497e7b9275fb53abafd0cdb18d55fc. https://bugzilla.gnome.org/show_bug.cgi?id=675296
* | Revert "Revert "Stop requesting StreamedMedia channels""Guillaume Desmottes2012-05-022-73/+5
| | | | | | | | | | | | This reverts commit 758b4250e767d9e952b8c0ea4db7d93df192a0c0. https://bugzilla.gnome.org/show_bug.cgi?id=675296
* | remove empathy-avGuillaume Desmottes2012-05-0220-7534/+14
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675296
* | Stop approving StreamedMedia channelsGuillaume Desmottes2012-05-023-94/+2
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675296
* | Revert "DISTCHECK_CONFIGURE_FLAGS add --enable-empathy-av"Guillaume Desmottes2012-05-021-1/+0
| | | | | | | | | | | | This reverts commit bd55c7dec76d6c95d294ee60da616b7fe51d181a. https://bugzilla.gnome.org/show_bug.cgi?id=675296
* | tp-chat: add the 'members-changed' signalGuillaume Desmottes2012-05-021-4/+12
| | | | | | | | | | | | | | It uses to be implemented by the EmpathyContactList interface which has been removed. https://bugzilla.gnome.org/show_bug.cgi?id=674864
* | tp-chat: add the 'member-renamed' signalGuillaume Desmottes2012-05-021-3/+11
| | | | | | | | | | | | | | It uses to be implemented by the EmpathyContactList interface which has been removed. https://bugzilla.gnome.org/show_bug.cgi?id=674864
* | remove released flag and update release.pyGuillaume Desmottes2012-04-302-2/+2
| |
* | Prepare 3.5.1EMPATHY_3_5_1Guillaume Desmottes2012-04-302-2/+50
| |
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-300-0/+0
|\|
| * Updated Aragonese translationDaniel Martinez Cucalon2012-04-171-1913/+2473
| |
* | Updated Norwegian bokmål translationKjartan Maraas2012-04-301-117/+122
| |
* | POTFILES.in: set type gsettingsGuillaume Desmottes2012-04-231-1/+1
| |
* | Stop generating gschema from .in fileGuillaume Desmottes2012-04-236-311/+307
| | | | | | | | | | | | | | intltool now supports translating gschema files properly so we don't need to do this crack any more. https://bugzilla.gnome.org/show_bug.cgi?id=672619
* | add tests/certificates/Makefile.amGuillaume Desmottes2012-04-233-1/+5
| | | | | | | | | | certificates needs to be in EXTRA_DIST so empathy-tls-test passes when distchecking.
* | Updated Slovenian translationMatej Urbančič2012-04-211-473/+493
| |
* | Updated Galician translationsFran Diéguez2012-04-201-10/+14
| |
* | Updated Spanish translationDaniel Mustieles2012-04-201-253/+257
| |
* | strip the new group nameGuillaume Desmottes2012-04-201-3/+8
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=501065
* | live-search: don't forward shift keysGuillaume Desmottes2012-04-201-0/+8
| | | | | | | | | | | | Not doing so cancel any group renaming operation. https://bugzilla.gnome.org/show_bug.cgi?id=501065
* | individual-view: add menu item to rename groupsGuillaume Desmottes2012-04-201-20/+97
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=501065
* | add empathy_connection_aggregator_rename_group()Guillaume Desmottes2012-04-202-0/+46
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=501065
* | roster-window: set a default heightGuillaume Desmottes2012-04-201-0/+1
| | | | | | | | | | | | | | | | | | | | 600 seems to be a decent default height and that's already the one we use for the log viewer window. We continue relying on Gtk+ to pick the best width as there is no point making the window wider as long as all the menus are displayed. https://bugzilla.gnome.org/show_bug.cgi?id=674432
* | Updated Galician translationsFran Diéguez2012-04-201-237/+249
| |
* | tls-test: Use a proper PKCS#11 mock module for testingStef Walter2012-04-196-45/+1823
| | | | | | | | | | | | | | | | | | | | | | * In empathy-tls-test.c use a proper PKCS#11 mock module, which we can place certificate anchors and pinned certificates in. * Fix EmpathyTlsVerifier to check for server trust assertions not client ones, this was a bug highlighted by fixing tests. https://bugzilla.gnome.org/show_bug.cgi?id=668186 https://bugzilla.gnome.org/show_bug.cgi?id=668261
* | add tests to noinst_PROGRAMSGuillaume Desmottes2012-04-191-1/+4
| | | | | | | | | | Make sure tests are always build. This is how tp-glib is handling its tests as well.
* | Hook tests on 'make check' instead of 'make test'Guillaume Desmottes2012-04-191-6/+4
| | | | | | | | | | | | | | | | This is how it's supposed to be done and so has the nice side effect of actually using TESTS_ENVIRONMENT and so fix tests if EMPATHY_SRCDIR is not defined. https://bugzilla.gnome.org/show_bug.cgi?id=668186
* | Updated Norwegian bokmål translationKjartan Maraas2012-04-191-326/+338
| |
* | Updated Telugu TranslationSasi Bhushan2012-04-171-238/+249
| |
* | Updated Slovenian translationAndrej Žnidaršič2012-04-171-19/+19
| |
* | Updated Aragonese translationDaniel Martinez Cucalon2012-04-171-1913/+2473
| |
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-161-0/+16
|\| | | | | | | | | | | | | Conflicts: configure.ac po/sk.po po/zh_CN.po
| * remove released flagGuillaume Desmottes2012-04-161-1/+1
| |
| * Updated Slovak translationPavol Klačanský2012-04-161-1985/+2233
| |
| * prepare 3.4.1EMPATHY_3_4_1Guillaume Desmottes2012-04-162-3/+19
| |
| * Small fixes to the Arabic translationIbrahim Saed2012-04-161-206/+212
| |
| * Updated French doc translationBruno Brouard2012-04-152-596/+3226
| |
| * [l10n] Fix a bug in zh_CN translation.Automatic Mirroring2012-04-121-2/+2
| |
* | Updated Slovak translationPavol Klačanský2012-04-161-1992/+2296
| |
* | Small fixes to the Arabic translationIbrahim Saed2012-04-161-206/+212
| |
* | Updated French doc translationBruno Brouard2012-04-152-596/+3226
| |
* | Updated Hebrew translation.Yaron Shahrabani2012-04-131-364/+376
| |
* | [l10n] Fix a bug in zh_CN translation.Automatic Mirroring2012-04-121-2/+2
| |
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-116-323/+237
|\| | | | | | | | | Conflicts: po/ca@valencia.po
| * Don't display anything when being re-invoked in hidden modeGuillaume Desmottes2012-04-111-7/+0
| | | | | | | | | | | | | | Hidden is disabled by default, so if Empathy is re-invoked with --hidden explicitely passed, we shouldn't bring back the contact list or any UI. https://bugzilla.gnome.org/show_bug.cgi?id=673691
| * [l10n]Updated Catalan (Valencian) translationCarles Ferrando2012-04-111-346/+344
| |
| * [l10n] Fixes on Catalan translationJordi Serratosa2012-04-111-271/+269
| |
| * Updated HINDI translationChandan Kumar2012-04-081-315/+228
| |
| * remove released flagGuillaume Desmottes2012-04-061-1/+1
| |
| * prepare 3.4.0.2EMPATHY_3_4_0_2Guillaume Desmottes2012-04-062-2/+8
| |
| * DISTCHECK_CONFIGURE_FLAGS add --enable-empathy-avGuillaume Desmottes2012-04-061-0/+1
| | | | | | | | | | | | Make sure we'll ship empathy-av files in the tarball https://bugzilla.gnome.org/show_bug.cgi?id=673593
| * roster-window: Bring back log entry in individual context menuGuillaume Desmottes2012-04-051-0/+1
| | | | | | | | Looks like it has been accidentally removed.
* | [l10n]Updated Catalan (Valencian) translationCarles Ferrando2012-04-111-478/+491
| |
* | [l10n] Fixes on Catalan translationJordi Serratosa2012-04-111-271/+269
| |
* | Use more tp_capabilities_ methodsGuillaume Desmottes2012-04-101-58/+18
| | | | | | | | | | | | | | | | Makes code easier and would allow us to stop using a GValueArray once we'll have API to check if SMS are supported. This may break StreamedMedia only CM but we are not going to support those in 3.5 anyway.
* | Depends on tp-glib 0.17.6Guillaume Desmottes2012-04-101-1/+1
| | | | | | | | Needed for tp_capabilities_supports_audio_video_call()
* | remove empathy_plist_parse_array()Guillaume Desmottes2012-04-101-29/+0
| | | | | | | | It's not used by the Adium code and uses a GValueArray which is deprecated.
* | individual-manager: remove (un)linking APIGuillaume Desmottes2012-04-102-76/+0
| | | | | | | | Empathy now relies on gnome-contacts to link contacts.
* | remove empathy-contact-listGuillaume Desmottes2012-04-103-308/+0
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | remove useless empathy-contact-list.h includesGuillaume Desmottes2012-04-106-6/+0
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | implement empathy_tp_chat_get_members as a method on TpChatGuillaume Desmottes2012-04-104-20/+7
| | | | | | | | | | | | | | That means EmpathyTpChat doesn't have to implement the EmpathyContactList interface any more. https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | remove unused tp_chat_removeGuillaume Desmottes2012-04-101-18/+0
| | | | | | | | | | | | empathy_contact_list_remove() is not used any more. https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | implement empathy_tp_chat_add as a method on TpChatGuillaume Desmottes2012-04-104-10/+9
| | | | | | | | | | | | We want to get rid of the EmpathyContactList interface. https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | tp-chat: use self->priv directlyGuillaume Desmottes2012-04-101-26/+13
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | tp-chat: port to Telepathy coding styleGuillaume Desmottes2012-04-102-1166/+1207
| | | | | | | | | | | | I'm so tired of hacking in this file using the old style. https://bugzilla.gnome.org/show_bug.cgi?id=673821
* | Updated Spanish translationDaniel Mustieles2012-04-081-284/+298
| |
* | po: fixed problems in en_CA.poTiffany Antopolski2012-04-081-728/+807
| | | | | | | | This fixes bug #673669
* | Allocate GMutex on the stackGuillaume Desmottes2012-04-055-65/+66
| | | | | | | | | | | | g_mutex_new() has been deprecated in GLib 2.31. https://bugzilla.gnome.org/show_bug.cgi?id=662662
* | stop using g_thread_initGuillaume Desmottes2012-04-058-15/+0
| | | | | | | | | | | | It has been deprecated in GLib 2.31. https://bugzilla.gnome.org/show_bug.cgi?id=662662
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-051-1/+1
|\|
| * remove released flagGuillaume Desmottes2012-04-051-1/+1
| |
* | configure.ac: remove connectivity libs checksGuillaume Desmottes2012-04-051-56/+0
| |
* | remove EmpathyConnectivityGuillaume Desmottes2012-04-053-508/+0
| |
* | stop instantiating EmpathyConnectivityGuillaume Desmottes2012-04-051-22/+0
| |
* | accounts-dialog: use GNetworkMonitorGuillaume Desmottes2012-04-051-10/+10
| |
* | presence-chooser: use GNetworkMonitorGuillaume Desmottes2012-04-051-7/+8
| |
* | Depend on GLib 2.32Guillaume Desmottes2012-04-051-2/+2
| | | | | | | | Needed for GNetworkMonitor
* | Remove Meego specific codeGuillaume Desmottes2012-04-053-75/+0
| | | | | | | | It's not used any more by Intel.
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-0513-17/+69
|\|
| * Prepare 3.4.0.1EMPATHY_3_4_0_1Guillaume Desmottes2012-04-052-2/+51
| |
| * check if salut settings are valid instead of assume they are notGuillaume Desmottes2012-04-041-1/+3
| | | | | | | | | | | | | | If we manage to fetch all the info from EDS the account is ready to connect and so the 'Connect' button should be sensitive right away. https://bugzilla.gnome.org/show_bug.cgi?id=673451
| * add empathy_local_xmpp_assistant_widget_is_valid()Guillaume Desmottes2012-04-042-0/+10
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673451
| * empathy-nautilus-sendto: use the Empathy iconGuillaume Desmottes2012-04-041-1/+1
| | | | | | | | | | | | The first field of NstPluginInfo is the id of the icon of the plugin. https://bugzilla.gnome.org/show_bug.cgi?id=673480
| * include logger single headerGuillaume Desmottes2012-04-047-13/+4
| |
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-041-4/+4
|\|
| * macros checking are *_MAX_ALLOWEDGuillaume Desmottes2012-04-041-3/+3
| |
| * Depend on Clutter 1.10Guillaume Desmottes2012-04-041-2/+2
| | | | | | | | | | | | | | | | | | Needed for clutter_actor_set_margin_* which is already used. Shell 3.4 depends of this version as well so that won't be an issue for distribution shipping GNOME 3.4. https://bugzilla.gnome.org/show_bug.cgi?id=673444
* | Tooltip text marked as translatableLaurent2012-04-031-2/+3
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673410
* | Merge branch 'gnome-3-4'Danielle Madeley2012-04-033-65/+13
|\|
| * Bump required tp-logger versionDanielle Madeley2012-04-031-1/+1
| |
| * Logger support for calls is no longer optionalDanielle Madeley2012-04-033-58/+5
| |
| * TplCallEndReason ceased to exist on March 28Danielle Madeley2012-04-032-6/+7
| |
* | Updated Galician translationsFran Diéguez2012-04-021-259/+264
| |
* | Updated Persian TranslationsArash Mousavi2012-04-021-563/+263
| |
* | Updated Telugu TranslationSasi Bhushan2012-04-021-19/+22
| |
* | Added support for local IP address and port in SIP account settings widget.Laurent2012-04-022-0/+61
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=669134
* | Updated Telugu TranslationSasi Bhushan2012-04-021-140/+139
| |
* | Tooltip is more usefull when editing status. FixupLaurent2012-04-021-0/+10
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=640846
* | Merge branch 'gnome-3-4'Guillaume Desmottes2012-04-022-24/+21
|\|
| * goa-mc-plugin: fix variable nameDebarshi Ray2012-04-021-1/+1
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673263
| * mcp-account-manager-goa: g_key_file_get_keys() expects a gsizeGuillaume Desmottes2012-04-021-1/+1
| |
| * mcp-account-manager-goa: fix shadow variable warningsGuillaume Desmottes2012-04-021-17/+17
| |
| * mcp-account-manager-goa: remove unused variablesGuillaume Desmottes2012-04-021-4/+0
| |
| * goa-mc-plugin: build with ERROR_CFLAGSGuillaume Desmottes2012-04-021-1/+2
| |
* | account-dialog: add 'Rename' item to the context menuGuillaume Desmottes2012-04-021-0/+33
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673159
* | accounts-dialog: keep a pointer on the text rendererGuillaume Desmottes2012-04-021-7/+9
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673159
* | replace Enable/Disable menu items by a check itemGuillaume Desmottes2012-04-021-37/+15
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=673159
* | remove empathy_individual_manager_lookup_by_contact()Guillaume Desmottes2012-04-022-56/+0
| |
* | use tpf_persona_dup_for_contact() instead of lookup_by_contact()Guillaume Desmottes2012-04-021-5/+12
| | | | | | | | No need to iterate over all the individuals any more.
* | factor out create_individual_from_persona()Guillaume Desmottes2012-04-021-11/+21
| |
* | Start dev of 3.5Guillaume Desmottes2012-04-021-1/+1
|/
* [l10n] Update Japanese translationMako N2012-04-021-183/+177
|
* [l10n] Update Japanese translationMako N2012-04-021-146/+142
|
* Updated Persian TranslationsArash Mousavi2012-03-311-1890/+2118
|
* [l10n] Updated Indonesian translationAndika Triwidada2012-03-311-1846/+1919
|
* call-window: raise the overlay actor instead of individual actorsCosimo Cecchi2012-03-301-13/+2
| | | | | | | Or the actors will be raised relative to their box, but not relative to the whole scene. https://bugzilla.gnome.org/show_bug.cgi?id=673046
* use enable_and_connect_account() when enabling an account from the menuGuillaume Desmottes2012-03-301-1/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673162
* factor out enable_and_connect_account()Guillaume Desmottes2012-03-301-2/+9
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673162
* accounts-dialog: no need to connect the account if we are disabling itGuillaume Desmottes2012-03-301-5/+13
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673162
* accounts_dialog_enable_account_cb: use the usual async cb patternGuillaume Desmottes2012-03-301-10/+9
| | | | | | No semantic change. https://bugzilla.gnome.org/show_bug.cgi?id=673162
* empathy-accounts: disable 'Enable' menu entry if not supportedGuillaume Desmottes2012-03-301-6/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673141
* factor out account_can_be_enabled()Guillaume Desmottes2012-03-301-9/+18
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673141
* Updated Korean translationChangwoo Ryu2012-03-301-41/+40
|
* Updated Arabic translationIbrahim Saed2012-03-291-557/+667
|
* ev-sidebar: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-2/+1
|
* preferences: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-3/+1
|
* new-chatroom-dialog: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-3/+1
|
* import-widget: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-4/+1
|
* chatrooms-window: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-2/+1
|
* groups-widget: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-6/+2
|
* contact-search-dialog: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-4/+1
|
* account-widget-sip: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-17/+16
|
* accounts-dialog: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-291-8/+13
| | | | | | | Prevent a crash when using a11y as GTK+ may want to look at the content of the row as soon it's added. See the bug for details. https://bugzilla.gnome.org/show_bug.cgi?id=670601
* Updated Odia TranslationManojKumar Giri2012-03-291-177/+119
|
* Updated Norwegian bokmål translationKjartan Maraas2012-03-291-238/+244
|
* Updated Odia TranslationManojKumar Giri2012-03-281-639/+496
|
* Merge remote-tracking branch 'wjt/652800-661731-notifications'Guillaume Desmottes2012-03-284-22/+40
|\
| * Move category name constants to #definesWill Thompson2012-03-284-21/+34
| | | | | | | | | | This is kind of overkill to avoid me typoing the two names used in empathy-chat-window.c, but, hey.
| * Show MUC highlight notifications in Gnome ShellWill Thompson2012-03-281-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gnome Shell filters out notifications from Empathy whose category is something the Shell shows its own notification for. However, we previously used the im.received category for notifications about being highlighted in a MUC, as well as for incoming 1-1 IM notifications. The Shell filters these out these notifications, because it shows its own 1-1 notifications, but it doesn't show MUC highlight notifications. So this patch sets a different category on notifications from chat rooms, which makes them show up in Gnome Shell. I'm prefixing the category with x-empathy, following the comment above get_category_for_event_type in empathy-notifications-approver.c. This shouldn't confuse other notification daemons, unless they were also filtering out im.received but also showed their own highlight notifications (which I find unlikely). https://bugzilla.gnome.org/show_bug.cgi?id=652800
* | streamed-media-window: don't leak the element nameDebarshi Ray2012-03-281-2/+4
| | | | | | | | Fixes: https://bugzilla.gnome.org/672796
* | call-window: don't leak the element nameDebarshi Ray2012-03-281-2/+4
|/ | | | Fixes: https://bugzilla.gnome.org/672796
* Updated Odia TranslationManojKumar Giri2012-03-281-1377/+3948
|
* trivial: fix a GCC build warningCosimo Cecchi2012-03-271-1/+0
|
* call-window: factor out some common codeCosimo Cecchi2012-03-271-14/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672560
* call-window: don't use EmpathyRoundedActor for the floating toolbarCosimo Cecchi2012-03-272-31/+25
| | | | | | | | | | Make this a real toolbar, and add a CSS provider to set the correct border radius. In the future, GTK and Adwaita will support an 'OSD' style class that takes care of this automatically, but right now we have add these few lines of code. https://bugzilla.gnome.org/show_bug.cgi?id=672560
* call-window: use a ClutterBoxLayout to separate previews/toolbarCosimo Cecchi2012-03-271-128/+68
| | | | | | | | | | | It's way easier to use a ClutterBoxLayout to ensure the preview rectangles and the floating toolbar don't overlap. This way, we can get rid of some complicated manual UI layouting code and just a margin to set the bottom spacing for the floating toolbar. Also, this makes the code not dependent on a hardcoded toolbar size anymore. https://bugzilla.gnome.org/show_bug.cgi?id=672560
* call-window: fix incorrect commentCosimo Cecchi2012-03-271-3/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672560
* call-window: use colors from the theme for placeholdersCosimo Cecchi2012-03-271-2/+30
| | | | | | | Use color shades from the color theme for preview placeholders, instead of hardcoding black/red. https://bugzilla.gnome.org/show_bug.cgi?id=672561
* rounded-rectangle: cairo_set_source_rgba() takes [0..1] argumentsCosimo Cecchi2012-03-271-7/+6
| | | | | | And not [0..255] integers. https://bugzilla.gnome.org/show_bug.cgi?id=672561
* log-window: use gtk_list_store_insert_with_values()Guillaume Desmottes2012-03-271-6/+2
|
* factor out add_event_to_store()Guillaume Desmottes2012-03-271-52/+39
|
* log-window: factor out add_date_if_needed()Guillaume Desmottes2012-03-271-32/+33
| | | | Free a leak as 'text' wasn't freed in the first case.
* import-widget: request the preferred height of the treeviewGuillaume Desmottes2012-03-272-2/+11
| | | | | | We should try to display as much rows as possible. https://bugzilla.gnome.org/show_bug.cgi?id=672839
* import-widget: don't manually prepare the account managerGuillaume Desmottes2012-03-271-23/+4
| | | | | | empathy-accounts already does it for us. https://bugzilla.gnome.org/show_bug.cgi?id=672839
* help/.gitignore: use a generic ignore ruleGuillaume Desmottes2012-03-271-35/+2
|
* Updated Basque languageInaki Larranaga Murgoitio2012-03-271-4/+4
|
* Updated Basque languageInaki Larranaga Murgoitio2012-03-271-304/+339
|
* Updated Korean translationChangwoo Ryu2012-03-271-234/+271
|
* release.py: update last_tag_patternGuillaume Desmottes2012-03-261-1/+1
|
* remove released flagGuillaume Desmottes2012-03-261-1/+1
|
* prepare 3.4.0EMPATHY_3_4_0Guillaume Desmottes2012-03-262-2/+38
|
* Use the correct help: URI syntaxShaun McCance2012-03-262-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672596
* hindi translation by Chandan KumarRajesh Ranjan2012-03-261-2402/+2339
|
* Updated Crimean Tatar (Crimean Turkish) translationReşat SABIQ2012-03-261-1429/+2678
|
* contact_widget_contact_update: check if widget_avatar is a chooserGuillaume Desmottes2012-03-261-2/+5
| | | | | | | information->widget_avatar can actually be a EmpathyAvatarImage when displaying a read only widget. https://bugzilla.gnome.org/show_bug.cgi?id=672828
* Update avatar chooser's account if EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT is ↵Guillaume Desmottes2012-03-261-0/+3
| | | | | | | | not set We can't rely on the account chooser to do it so we have to do it manually. https://bugzilla.gnome.org/show_bug.cgi?id=672633
* contact_widget_contact_update: change 'if else' block to a 'if' block inside ↵Guillaume Desmottes2012-03-261-8/+13
| | | | | | | | the 'else' No semantic change. https://bugzilla.gnome.org/show_bug.cgi?id=672633
* Added Telugu help TranslationsSasi Bhushan2012-03-252-1/+2758
|
* Updated Latvian translation.Rudolfs Mazurs2012-03-251-223/+231
|
* Updated Japanese translation.Jiro Matsuzawa2012-03-251-6/+8
|
* [l10n] Add Japanese translationMako N2012-03-252-1/+3426
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Cheng-Chia Tseng2012-03-252-682/+774
|
* [l10n] Updated German translationMario Blättermann2012-03-251-1871/+2034
|
* Updated Hebrew translation.Yaron Shahrabani2012-03-251-344/+387
|
* Updated Belarusian translation.Ihar Hrachyshka2012-03-251-361/+399
|
* [l10n] Update Japanese translationMako N2012-03-251-777/+849
|
* Updated Telugu TranslationSasi Bhushan Boddepalli2012-03-241-5/+10
|
* Updated Telugu translationSasi Bhushan2012-03-241-229/+187
|
* Updated Portuguese translationDuarte Loreto2012-03-241-1920/+2195
|
* Updated Finnish translation by Jiri GrönroosTimo Jyrinki2012-03-231-484/+795
|
* roster-window: check which page to display once Folks has finished loadingGuillaume Desmottes2012-03-221-1/+1
| | | | | | | We should still display the 'no account' page if none is configured or enabled. https://bugzilla.gnome.org/show_bug.cgi?id=672506
* Use help:empathy to open the helpGuillaume Desmottes2012-03-225-5/+5
| | | | | | Looks like the new doc infra uses "help" rather than "ghelp". https://bugzilla.gnome.org/show_bug.cgi?id=672596
* add translator comment for the sanity-cleaning-number keyGuillaume Desmottes2012-03-221-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672608
* debug-window: no need to translate the '%s' formatGuillaume Desmottes2012-03-221-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672608
* account-widget-irc: add translators comment on up/down tooltipsGuillaume Desmottes2012-03-221-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672608
* Updated Danish translationKenneth Nielsen2012-03-221-1238/+1320
|
* Updated Gujarati TranslationsSweta Kothari2012-03-221-1729/+2747
|
* Updated Vietnamese translationNguyễn Thái Ngọc Duy2012-03-221-138/+105
|
* po/vi: import from Damned LiesNguyễn Thái Ngọc Duy2012-03-221-1904/+2243
|
* accounts-dialog: set a column spacing for the GtkInfoBar gridCosimo Cecchi2012-03-211-0/+1
| | | | | | | So that the banner is not packed even when the window is at its minimum size. https://bugzilla.gnome.org/show_bug.cgi?id=672504
* account-widget: set shadow_type=in for advanced scrolled windowsCosimo Cecchi2012-03-213-0/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672508
* Updated Telugu TranslationsSasi Bhushan2012-03-211-1909/+2189
|
* Updated Brazilian Portuguese translationAntonio Fernandes C. Neto2012-03-201-131/+150
|
* Updated French translationBruno Brouard2012-03-211-1/+1
|
* Updated French translationBruno Brouard2012-03-211-1949/+1980
|
* Update Simplified Chinese translation.Automatic Mirroring2012-03-211-9/+6
|
* update Simplified Chinese (zh_CN) translationEL8LatSPQ2012-03-201-358/+414
|