aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Include yell before anything elseEmilio Pozuelo Monfort2011-03-241-1/+1
| | | | | | | Since we want to build against our copy of yell. Otherwise if you have yell installed in /usr, it'll be picked from there as we get -I/usr/include/telepathy-1.0 and telepathy-yell is installed as telepathy-yell/telepathy-yell.h in that directory.
* chat_window_new_message_cb: check that we found the chatroomGuillaume Desmottes2011-03-241-1/+1
| | | | | There is a race, if the chatroom manager didn't parse the chatrooms list yet, this was crashing.
* Minimize the scope in which we use TpyCallChannelSjoerd Simons2011-03-231-6/+7
|
* Fix indentationSjoerd Simons2011-03-231-7/+6
|
* Prepare the video input pipeline when there is an initial contentSjoerd Simons2011-03-231-5/+17
|
* Wait for the channel to be ready before handling itSjoerd Simons2011-03-231-8/+43
|
* Use a new id for accepting without videoSjoerd Simons2011-03-231-1/+1
|
* Also add Answer with video to the notification dialogsSjoerd Simons2011-03-233-1/+37
|
* Add Answer with video to the default dialogsSjoerd Simons2011-03-231-9/+29
| | | | | | | We should be able to answer calls with or without video. This patch only implements that for Call type channels, but for clarity have ``Answer with video'' as the only button on SM channels for video calls to be sure it's clear to the user what to expect
* Follow the sending state of the channel to determine whether we should send ↵Sjoerd Simons2011-03-231-8/+14
| | | | video
* Set the extra-certificate-identities in EmpathyAccountsDialogStef Walter2011-03-221-0/+11
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=645133
* Only add the 'extra-certificate-identities' parameter if gabble supports it.Stef Walter2011-03-221-3/+7
|
* Create GTalk accounts with extra-certificate-identities = 'talk.google.com'Stef Walter2011-03-221-0/+7
| | | | | | | When creating google talk accounts, allow 'talk.google.com' as an extra identity for server certificate validation. https://bugzilla.gnome.org/show_bug.cgi?id=645133
* Use ServerTLSConnection.ReferenceIdentities to check cert identity.Stef Walter2011-03-221-1/+5
| | | | | | | | The certificate identity can be checked against more than just one piece of information. Load and use all the reference identities to check the identity of the certificate. https://bugzilla.gnome.org/show_bug.cgi?id=645119
* accounts_dialog_add_account: ensure that the selected account is still ↵Guillaume Desmottes2011-03-221-1/+19
| | | | visible in the treeview
* accounts_dialog_model_set_selected: use select_and_scroll_to_iterGuillaume Desmottes2011-03-221-1/+1
| | | | That way we also scroll to the selected account (#643860).
* factor out select_and_scroll_to_iter()Guillaume Desmottes2011-03-221-14/+23
|
* Fix some races in the chatroom joining codeSjoerd Simons2011-03-211-31/+38
| | | | | | | | | | | | | | | | The auto-reconnection logic for chatrooms was a bit odd. It would for every chatroom that existed when the account manager was prepared connect once to status-changed for each account for each chatroom... Change this such that whenever an account connects, we simply get the then current list of chatrooms and auto-connect those as needed. This fixes issues when a chatroom gets removed from the manager and when the auto-connect options on a chatrooms change. Conflicts: src/empathy.c
* Revert "Set an accelator on contact search"Emilio Pozuelo Monfort2011-03-181-1/+0
| | | | This reverts commit 5f6fc105b14d1cb84745e2f60991a9010d10914b.
* Assistant: put the protocol chooser next to the labelEmilio Pozuelo Monfort2011-03-181-3/+6
|
* Set an accelator on contact searchGuillaume Desmottes2011-03-181-0/+1
| | | | | | This is kinda based on Will's 87fe6f3680d91edc933bc767cae6e500b8bac011 patch changing the accelator but 2.34 doesn't have the menu entry, and so the accelator, for live search so I just picked this part from it.
* Fix reconnect_required, which was broken by port to MxGtkLightSwitchDanielle Madeley2011-03-181-0/+5
|
* chat_window_contact_menu_update: unsensitive the menu if there is no submenuGuillaume Desmottes2011-03-171-4/+10
| | | | This is a manual backport from master.
* Don't update Contact menu on a focus-in (#644936)Michael Terry2011-03-171-9/+24
|
* When the remote side hangs up, clean up the call channelSjoerd Simons2011-03-171-2/+9
|
* Cope with unexpected call channel invalidationSjoerd Simons2011-03-171-0/+20
|
* Use modern private structure handlingSjoerd Simons2011-03-172-3/+4
|
* Correct Call channel refcountingSjoerd Simons2011-03-171-4/+1
| | | | | | The Call channel will get unreffed by the destroy function that's given to empathy_tp_contact_factory_get_from_id. So don't unref it in the callback explicitely
* auth-client: implement Debug interface (#645008)Guillaume Desmottes2011-03-171-0/+10
|
* call-window: Put the details vbox in a scroll windowGuillaume Desmottes2011-03-161-2/+9
|
* streamed-media-window: Put the details vbox in a scroll windowGuillaume Desmottes2011-03-161-1/+8
| | | | | It can require a lot of horizontal space and we don't want to enlarge the call window just for that (#644830).
* Don't start the Call when the streams startEmilio Pozuelo Monfort2011-03-162-13/+24
| | | | | Since that can happen before the call is accepted. Instead of that, wait for the Call state to be ACCEPTED.
* Reject approval if call was hung up during approvalSjoerd Simons2011-03-141-2/+27
| | | | | | | If an incoming call gets ENDED during our approval stage either we or someone else closed it. In that case reject the approval (which will claim and close the channel). A future improvement could be to show a notification in case this happens
* Add an enabled switch to the account dialog GtkInfoBarDanielle Madeley2011-03-141-0/+63
|
* Only distroy the video output if it existsSjoerd Simons2011-03-141-1/+2
|
* Monitor the call state and close the channel when it endsSjoerd Simons2011-03-141-0/+17
|
* Lock the hash table contents when using themSjoerd Simons2011-03-141-1/+23
|
* Ensure our bin doesn't change state before being in the hash tableSjoerd Simons2011-03-141-2/+10
|
* Remove live-adderSjoerd Simons2011-03-122-205/+30
|
* Implement request pads for multiple sinksSjoerd Simons2011-03-122-46/+230
| | | | | | | Instead of using an live-adder we're moving to using multiple pulseaudio sinks as pulse can do the right thing (tm). To make this easy for the call window have one bin that handles all the juggling of audiosinks and audio conversion
* Display Upgrade Software errorsEmilio Pozuelo Monfort2011-03-111-0/+134
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=644360
* media_type is of type FsMediaType, so use that enum to compareSjoerd Simons2011-03-101-2/+2
|
* coding style fixesGuillaume Desmottes2011-03-091-1/+1
|
* display a debug message if we can't get the TpContactGuillaume Desmottes2011-03-091-1/+4
|
* call-observer: display a notification when rejecting a call (#644127)Guillaume Desmottes2011-03-091-8/+91
|
* call-observer: set the Recover flagGuillaume Desmottes2011-03-091-1/+1
| | | | We want to know about existing calls when starting.
* call-observer: reject all the channels we claimedGuillaume Desmottes2011-03-091-7/+74
| | | | | | Once we have claimed the ChannelDispatchOperation, we are now the handler of all its channels. So, we should close them all as we are not going to do anything with them. (#644210)
* return from ObserveChannels() after having called Claim()Guillaume Desmottes2011-03-091-0/+2
|
* call-observer: return from ObserveChannels() if the channel was already ↵Guillaume Desmottes2011-03-091-0/+2
| | | | invalidated
* call-observer: set debug domain to 'voip' and add 2 debug messagesGuillaume Desmottes2011-03-091-1/+6
|
* Delay the approversEmilio Pozuelo Monfort2011-03-071-0/+2
|
* Autoreject incoming calls if there are others in progressEmilio Pozuelo Monfort2011-03-074-0/+346
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=643656
* account-assistant: add mnemonic for the "no salut account" checkbox (#644058)Guillaume Desmottes2011-03-071-2/+2
|
* accounts_dialog_set_selected_account: scroll to the selected accountGuillaume Desmottes2011-02-281-1/+14
|
* empathy-accounts: allow to pass the full path of the accountGuillaume Desmottes2011-02-281-2/+6
|
* Request a minimal size on the presence chooserRobert Sajdok2011-02-281-0/+1
| | | | This avoid to make it completely disappear when resizing the window (#583317)
* update src/.gitignoreGuillaume Desmottes2011-02-251-0/+2
|
* Keep a ref to our handler instanceSjoerd Simons2011-02-241-1/+1
|
* Always build telepathy-yell and handle Call channelsEmilio Pozuelo Monfort2011-02-241-3/+1
| | | | Just keep empathy-call optional.
* Don't require EmpathyContacts to start a callEmilio Pozuelo Monfort2011-02-242-2/+4
|
* Move empathy_call_* util functions to libempathy-gtkEmilio Pozuelo Monfort2011-02-242-0/+4
| | | | Since we want to pop up a dialog when starting a call fails.
* No need to borrow the connection, it gets passed to usSjoerd Simons2011-02-241-1/+0
|
* Trivial coding style fix (>80 chars)Sjoerd Simons2011-02-241-1/+2
|
* Retrieve the contact for incoming calls so we can display itSjoerd Simons2011-02-241-3/+24
|
* Stop ringing after approving a Channel.Type.Call channelSjoerd Simons2011-02-241-1/+2
|
* event-manager Remove HAVE_CALL ifdefs, even if we didn't build the handler ↵Sjoerd Simons2011-02-241-15/+1
| | | | we can still approve
* Close call channels after hanging upSjoerd Simons2011-02-241-0/+1
|
* In gtk2 GtkProgressBar doesn't implement GTK_ORIENTABLESjoerd Simons2011-02-232-10/+3
|
* Remove stray debugSjoerd Simons2011-02-231-9/+1
|
* Only change the UI in the main threadSjoerd Simons2011-02-231-2/+11
|
* Use target-contact instead of membersSjoerd Simons2011-02-231-56/+18
|
* Move to using ->priv pointer in the object instanceSjoerd Simons2011-02-232-7/+7
|
* coding style triviaSjoerd Simons2011-02-231-3/+6
|
* Add TargetContact property that's guaranteed to exist on CallHandlerSjoerd Simons2011-02-233-8/+51
|
* Initialize GObjectEmilio Pozuelo Monfort2011-02-231-1/+1
|
* Build fixEmilio Pozuelo Monfort2011-02-231-0/+8
|
* Temporarily disable some codeEmilio Pozuelo Monfort2011-02-231-2/+5
|
* Don't use tpy_call_channel_is_sending_videoEmilio Pozuelo Monfort2011-02-231-2/+2
| | | | Check if we have initial video instead.
* Don't use tpy_call_channel_is_receiving_videoEmilio Pozuelo Monfort2011-02-231-34/+2
| | | | Rely on src-pad-added to show the remote user's video.
* Call: check for priv->members to enable the video buttonEmilio Pozuelo Monfort2011-02-231-1/+1
|
* Add empathy-callEmilio Pozuelo Monfort2011-02-231-0/+195
|
* Use the new empathy_call_create_call_request thoroughlyEmilio Pozuelo Monfort2011-02-233-25/+2
|
* Initialize telepathy-yellEmilio Pozuelo Monfort2011-02-231-0/+6
|
* Show notifications for CallsEmilio Pozuelo Monfort2011-02-231-0/+1
|
* EmpathyEventManager: handle Call channelsEmilio Pozuelo Monfort2011-02-232-4/+95
|
* Build an empathy-call binary when we have Call supportEmilio Pozuelo Monfort2011-02-231-0/+26
|
* Add an EmpathyCallWindowFullscreen classEmilio Pozuelo Monfort2011-02-232-0/+386
|
* Add an EmpathyCallWindow classEmilio Pozuelo Monfort2011-02-232-0/+3369
|
* Add an EmpathyCallHandler classEmilio Pozuelo Monfort2011-02-232-0/+1119
|
* Add an EmpathyCallFactory classEmilio Pozuelo Monfort2011-02-232-0/+414
|
* Fix make distcheckEmilio Pozuelo Monfort2011-02-221-1/+1
|
* Move farsight-using sources to srcEmilio Pozuelo Monfort2011-02-2110-5/+1770
| | | | And only build them for empathy-av, since they use farsight.
* ensure that the theme manager stay aliveGuillaume Desmottes2011-02-181-0/+6
|
* accounts: release our ref on the TpDBusDaemonGuillaume Desmottes2011-02-171-0/+1
|
* accounts-dialog: only update the row which have actually been changed; may ↵Guillaume Desmottes2011-02-161-1/+15
| | | | fix #636189
* only try reconnecting accounts if needed (#642358)Guillaume Desmottes2011-02-161-1/+1
|
* Merge branch 'contact-blocking-3' into gnome-2-34Danielle Madeley2011-02-113-1/+27
|\
| * Add a confirmation dialog when you block a contact from the Contact menuDanielle Madeley2011-02-101-0/+4
| |
| * Add blocked contacts dialog to Empathy main window menuDanielle Madeley2011-02-072-1/+23
| |
* | improve phrasing of the subscription request messageGuillaume Desmottes2011-02-101-2/+3
| |
* | Reword subscription request dialog to be less technicalAlex Launi2011-02-101-2/+2
| |
* | Only link empathy-av against farsightEmilio Pozuelo Monfort2011-02-101-0/+3
| |
* | Only build the EmpathyStreamedMedia* classes for empathy-avEmilio Pozuelo Monfort2011-02-107-8/+1393
| | | | | | | | So the other binaries don't need to link against farsight.
* | EmpathyCallFactory -> EmpathyStreamedMediaFactoryEmilio Pozuelo Monfort2011-02-103-7/+5
| |
* | Generate closures for src/Emilio Pozuelo Monfort2011-02-101-1/+22
| |
* | ::new-call-handler -> ::new-streamed-media-handlerEmilio Pozuelo Monfort2011-02-101-1/+1
| |
* | EmpathyCallWindowFullscreen -> EmpathyStreamedMediaFullscreenEmilio Pozuelo Monfort2011-02-105-158/+158
| |
* | EmpathyCallWindow -> EmpathyStreamedMediaWindowEmilio Pozuelo Monfort2011-02-107-425/+425
| |
* | EmpathyCallHandler -> EmpathyStreamedMediaHandlerEmilio Pozuelo Monfort2011-02-103-33/+33
| |
* | EmpathyTpCall -> EmpathyTpStreamedMediaEmilio Pozuelo Monfort2011-02-102-36/+36
|/
* Port to libnotify 0.7.0William Jon McCann2011-02-022-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=631944
* main-window: add a tooltip on connection error info bars (#626507)Robert Sajdok2011-02-011-0/+1
|
* account-dialog: keep a proper weak ref on setting_widget_objectGuillaume Desmottes2011-01-311-3/+16
| | | | | | | This prevent us of trying to use it after it has been disposed. For example, when switching to an Haze account, we have to wait that the EmpathyAccountSettings is ready before getting the new setting_widget_object but we can't try using the old one while waiting (#640411).
* chat-window: don't display notifications for pending messages (#635513)Guillaume Desmottes2011-01-281-1/+5
|
* EmpathyChat::new-message: tell if the message is a pending one or notGuillaume Desmottes2011-01-281-0/+1
|
* Improve connected/disconnected notifications (#639352)Guillaume Desmottes2011-01-281-6/+8
|
* enable imported Pidgin accounts if needed (#594145)Vitaly Minko2011-01-284-5/+62
|
* Add Contact Search supportEmilio Pozuelo Monfort2011-01-282-0/+19
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=606947
* Make AccountChooser filters asynchronous to let them handle newly connected ↵Vitaly Minko2011-01-281-25/+78
| | | | accounts properly (#633481).
* Main window: mark Edit→Context as untranslatable.Will Thompson2011-01-281-1/+1
| | | | | | | | | | | | | | | | The label of this menu item is changed to either _("Contact") or _("Group"), depending on what's currently selected in the tree view. If neither a contact nor a group is selected, the item is hidden entirely. Thus, it should be safe not to translate this string. I haven't tested this. I just came across this when mpt pointed it out on the Twitter: <http://twitter.theinfo.org/30701150579720192>. His tweets suggest that he's found a way to make it show up in the UI, but I can't find any way to do that (either reading the code, or playing with the actual UI). https://bugzilla.gnome.org/show_bug.cgi?id=640751
* status-icon: don't show notifications for auth eventsJonny Lamb2011-01-261-0/+12
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* main-window: s/Cancel/Disconnect/ when not giving a passwordJonny Lamb2011-01-261-1/+1
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* main-window: don't use _full functions where not necessaryJonny Lamb2011-01-261-4/+1
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* main-window: document what the key and value types are for hash tablesJonny Lamb2011-01-261-0/+4
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* event-manager: use tp_clear_objectJonny Lamb2011-01-261-9/+2
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* status-icon: blink when we get a password requestJonny Lamb2011-01-262-5/+6
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* main-window: display an info bar approving or rejecting the auth channelJonny Lamb2011-01-262-1/+161
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* event-manager: become an approver for auth channelsJonny Lamb2011-01-262-6/+85
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* event-manager: add the account to the EmpathyEvent structJonny Lamb2011-01-262-13/+23
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* server-sasl-handler: make a GAsyncInitable and get the passwordJonny Lamb2011-01-261-3/+6
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* auth-client: move the password dialog into a new fileJonny Lamb2011-01-261-176/+4
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* auth-client: grab the keyboard focus when popping up the password dialogJonny Lamb2011-01-261-0/+73
| | | | | | I like this. Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* auth-client: improve the password request dialogJonny Lamb2011-01-261-11/+63
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* auth-client: listen for new sasl handlers and pop up a password dialogJonny Lamb2011-01-261-2/+69
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* main-window: elipsize "No match found" messageGuillaume Desmottes2010-10-061-0/+3
| | | | This avoid to enlarge the contact list when displaying it (#631455).
* google-talk: no need to unset the 'server' paramGuillaume Desmottes2010-09-282-2/+0
| | | | | We don't set it anymore as fallback-servers super-seeded it but there is no point to unset; the account settings has just be created and is empty.
* Don't use deprecated gtk_dialog_set_has_separatorDiego Escalante Urrelo2010-09-283-15/+0
| | | | | | This is deprecated in GTK+ 2.22 Bug #630107
* Disable the fullscreen action while we are not connectedGuillaume Desmottes2010-09-271-0/+6
|
* empathy_call_window_fullscreen_set_cursor_visible: clean up functionGuillaume Desmottes2010-09-271-5/+5
|
* Leave fullscreen mode when call is disconnected (#593437)Guillaume Desmottes2010-09-271-0/+3
|
* show_borders: check if video_output still exists before using itGuillaume Desmottes2010-09-271-4/+9
|
* empathy_call_window_fullscreen_set_cursor_visible: early return if video ↵Guillaume Desmottes2010-09-271-1/+4
| | | | widget is NULL
* call-window-fullscreen: NULLify the video widget when it's destroyedGuillaume Desmottes2010-09-271-0/+12
|
* disconnect signal before destroying the video widgetGuillaume Desmottes2010-09-271-0/+1
|
* factor out disconnect_video_output_motion_handler()Guillaume Desmottes2010-09-271-9/+12
|
* call-window: remove the errors info bar when redialing (#630276)Guillaume Desmottes2010-09-271-0/+4
|
* chat_window_new_message_cb: update the window icon as well (#558802)Guillaume Desmottes2010-09-271-1/+2
| | | | We want to change the window icon even if it's not focused.
* empathy-accounts.c: check return value of unique_app_send_message (#629782)Guillaume Desmottes2010-09-271-4/+6
|
* empathy.c: check return value of unique_app_send_message (#629782)Guillaume Desmottes2010-09-271-4/+6
|
* switched notebook pagesFelix Kaser2010-09-132-11/+11
| | | | | to start with the scrolled window for the treeview as first page. this fixes bug #627238 and the empathy part of bug #626503
* Enable server fallback for GTalk accountNicolas Dufresne2010-09-092-8/+20
| | | | | | | | | | | Instead of hardcoding one server, let the connection manager try doing SRV resolution and if the resolution fails, let it try a list of fallback servers. Note that talkx.l.google.com is now used instead of talk.google.com. This is the DNS used in the Windows client, this DNS returns a list of IPs instead of 1. This also enable usage of HTTPS proxy when falling back to port 443 with old_ssl. Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
* Don't use gtk_progress_bar_set_orientation() when building with GTK+ 3Philip Withnall2010-09-071-0/+10
| | | | | GtkProgressBar now implements GtkOrientable, but this hasn't been backported to GTK+ 2, so we need to use some #ifdef magic.
* Remove calls to gtk_dialog_set_has_separator() if building against GTK+ 3Philip Withnall2010-09-073-0/+11
| | | | | | | gtk_dialog_set_has_separator() has been removed in GTK+ 3, but can't be removed (or the property's default value changed) in GTK+ 2 without breaking API. This adds a wrapper macro to keep the calls when building against GTK+ 2, and remove them when building against GTK+ 3.
* chat_window_detach_hook: move the window *after* showing itGuillaume Desmottes2010-08-301-1/+1
| | | | | Showing the window fire the "map" signal which is catched in empathy-geometry to move the window to its saved position. (#608140)
* Bug 628064 — Miscellaneous string fixesPhilip Withnall2010-08-271-1/+1
|
* Unmark strings as translatable which aren't shown to the userPhilip Withnall2010-08-271-3/+3
| | | | Helps: bgo#628062
* new-chatroom-dialog: remove markup from transltable stringGuillaume Desmottes2010-08-271-2/+5
|
* accounts-dialog.ui: set pango properties in the UI file (#628063)Guillaume Desmottes2010-08-271-2/+5
|
* Merge branch 'trivia'Guillaume Desmottes2010-08-271-7/+14
|\
| * main-window: define an enum for pagesGuillaume Desmottes2010-08-271-3/+7
| |
| * Increase the size of the 'No Match Found' labelGuillaume Desmottes2010-08-271-2/+7
| | | | | | | | It looks less crap that way.
| * no need to use a #defineGuillaume Desmottes2010-08-271-4/+2
| |
* | Add an EmpathyIndividualView feature for receiving Persona dropsPhilip Withnall2010-08-271-1/+4
|/ | | | | This is necessary to avoid Personas being droppable on the main contact list, which makes no sense (for the time being). Helps: bgo#627715
* unsensitive the remove button while loadingGuillaume Desmottes2010-08-261-1/+14
|
* insensitive treeview while loadingGuillaume Desmottes2010-08-261-1/+4
|
* accounts-dialog: display loading page while loading accounts (#611701)Guillaume Desmottes2010-08-262-1/+55
|
* accounts-dialog: add a GtkNotebookGuillaume Desmottes2010-08-261-64/+102
|
* Merge branch 'irc-wizard-596086'Guillaume Desmottes2010-08-261-2/+1
|\
| * account-assistant: stop blacklisting IRC (#596086)Guillaume Desmottes2010-08-261-2/+1
| |
* | accounts-dialog: insensitive 'add' and 'import' buttons while loading (#624353)Guillaume Desmottes2010-08-261-2/+18
|/
* added some files to gitignoreFelix Kaser2010-08-251-0/+1
| | | | they were introduced by the interactive tls certificate verification patches.
* allow building empathy without edsSaleem Abdulrasool2010-08-252-2/+11
|
* Merge branch 'tls-connection'Cosimo Cecchi2010-08-244-4/+285
|\
| * Don't show the error if user-requested is setCosimo Cecchi2010-08-191-1/+10
| |
| * Use new API in EmpathyAccountsDialogCosimo Cecchi2010-08-191-2/+2
| |
| * Fill 'user-requested' when we reject the certificateCosimo Cecchi2010-08-191-3/+11
| |
| * Implement a timeout machinery for the auth clientCosimo Cecchi2010-08-191-1/+63
| | | | | | | | Similar to the one used in empathy-av.c
| * Rename empathy-auth-helper->empathy-auth-clientCosimo Cecchi2010-08-192-6/+6
| |
| * Push the details table to the dialog after verificationCosimo Cecchi2010-08-191-4/+6
| |
| * Update to the new EmpathyTLSCertificate async APICosimo Cecchi2010-08-191-3/+4
| |
| * Save the certificate when we are told to rememberCosimo Cecchi2010-08-131-0/+5
| |
| * Integrate the dialog into the auth helperCosimo Cecchi2010-08-131-1/+41
| |
| * Verify the certificate from the helper.Cosimo Cecchi2010-08-131-4/+52
| |
| * Add EmpathyTLSVerifierCosimo Cecchi2010-08-131-0/+9
| | | | | | | | This also introduces a dependency on GnuTLS
| * Add a first skeleton of the auth helper.Cosimo Cecchi2010-08-132-1/+98
| |
* | pass NULL instead of "" to gtk_label_new()Guillaume Desmottes2010-08-232-2/+2
| | | | | | | | This saves us a strdup.
* | Display invite dialog even if we don't know the inviter (#627228)Guillaume Desmottes2010-08-181-7/+14
| |
* | display_invite_room_dialog: deal with contact being NULLGuillaume Desmottes2010-08-181-3/+11
| |
* | factor out display_invite_room_dialogGuillaume Desmottes2010-08-181-15/+22
| |
* | event-manager: use tp_user_action_time_from_x11()Guillaume Desmottes2010-08-181-7/+4
| |
* | empathy_chat_window_present_chat: use tp_user_action_time_should_presentGuillaume Desmottes2010-08-181-5/+2
| |
* | use TP_USER_ACTION_TIME_* (#627165)Guillaume Desmottes2010-08-184-10/+10
| |
* | add preference to disable logging (#567858)Guillaume Desmottes2010-08-172-0/+25
|/
* event-manager: we don't use the dispatcher any moreGuillaume Desmottes2010-08-131-4/+0
|
* tp-call: add account propertyGuillaume Desmottes2010-08-121-1/+1
|
* tp-chat: add 'account' propertyGuillaume Desmottes2010-08-122-2/+2
|
* remove empathy-dispatch-operationGuillaume Desmottes2010-08-111-1/+0
|
* empathy_dispatcher_join_muc: get an account instead of a connectionGuillaume Desmottes2010-08-114-65/+17
|
* empathy_dispatcher_chat_with_contact_id: get a TpAccount instead of a ↵Guillaume Desmottes2010-08-112-9/+7
| | | | TpConnection
* empathy_dispatcher_chat_with_contact_id: remove callback argumentGuillaume Desmottes2010-08-112-2/+2
| | | | It's unused anyway.
* Don't abort when closing the FT dialoguePhilip Withnall2010-08-111-0/+4
| | | | | Ensure we handle the case where the dialogue is closed by the window manager or programmatically gracefully.
* Use TpSimpleHandler to handle incoming file transfer (#623139)Guillaume Desmottes2010-08-111-0/+6
|
* tp-file: no need to pass the incoming property during constructionGuillaume Desmottes2010-08-111-1/+1
| | | | We can infer it from the channel properties.
* stop handling internally FT channelsGuillaume Desmottes2010-08-111-62/+3
|
* empathy_contact_selector_dialog_get_selected: allow to get the account as wellGuillaume Desmottes2010-08-101-1/+1
|
* only show label during searchFelix Kaser2010-08-091-13/+7
| | | | | don't change the behavior of the contact list when empty (without searching)
* use gtk_clutter_init rather than clutter_initGuillaume Desmottes2010-08-091-3/+5
| | | | | | This should fix the "Unable to make the stage window ..... the current GLX drawable" warning. Thanks to Jiri Techet to have spotted this.
* Remove uses of new GStreamer APIPhilip Withnall2010-08-061-6/+0
| | | | | Various GstMessageType members were added after 0.10.0, so we shouldn't use them.
* Add casts to fix constness problems in empathy-import-pidgin.cPhilip Withnall2010-08-061-5/+5
|
* Add noreturn annotation to version callback functionPhilip Withnall2010-08-051-2/+5
|
* Fix constness of various variables and parametersPhilip Withnall2010-08-053-7/+7
|
* Fix missing entries in switch statementsPhilip Withnall2010-08-054-9/+39
| | | | Added missing default cases and missing enum cases.
* Use #ifdef instead of #if to avoid warnings of undefined symbolsPhilip Withnall2010-08-053-8/+8
|
* use different labels if view is emptyFelix Kaser2010-08-052-19/+28
| | | | | either show "no match found" or "your contact list is empty". fixes bug #621642
* show label if contact list is emptyFelix Kaser2010-08-051-4/+48
| | | | | | at the moment there is only one label, but we should distinguish if the contact list is empty because no contact is online or because the live search matched nothing
* added structure to show text when list emptyFelix Kaser2010-08-052-5/+35
| | | | | I've added a notebook which holds the treeview and on another page it holds a label. The logic when to switch has to be implemented.
* no need to pass the reason to main_window_error_displayGuillaume Desmottes2010-08-051-3/+2
|
* no need to pass the reason to empathy_account_get_error_messageGuillaume Desmottes2010-08-052-3/+3
|
* accounts-dialog: use empathy_account_get_error_message (#523895)Guillaume Desmottes2010-08-051-2/+2
|
* main-window: use empathy_account_get_error_message (#523895)Guillaume Desmottes2010-08-051-4/+1
|
* main-window: pass the TpConnectionStatusReason to main_window_error_displayGuillaume Desmottes2010-08-051-6/+5
|
* display the tooltip on the info imageGuillaume Desmottes2010-08-051-7/+17
|
* add 'info' icon next to the candidatesGuillaume Desmottes2010-08-051-16/+80
|
* call-window: use candidates-changed signalGuillaume Desmottes2010-08-051-79/+37
|
* use a space to separate the IP from the portGuillaume Desmottes2010-08-051-1/+1
|
* add tooltips giving a bit more context about the candidateGuillaume Desmottes2010-08-051-0/+23
|
* call-window: display candidates info (#599166)Guillaume Desmottes2010-08-052-0/+370
|
* removed fixme comment when toggling show_offlineFelix Kaser2010-08-031-3/+0
|
* refactored show_offline property to the viewFelix Kaser2010-08-031-1/+1
| | | | | | the show offline property was moved from the individual store to the individual view. this allows to easily and automatically search through offline contacts as well.
* Add a translator comment explaining the "reduce location" semantic (#624062)Guillaume Desmottes2010-08-031-1/+1
| | | | Thanks to mahfiaz@gmail.com for his suggestion.
* map-view: be a proper GtkWindow (#625826)Guillaume Desmottes2010-08-023-154/+221
|
* free the list returned by clutter_container_get_children()Guillaume Desmottes2010-08-021-3/+4
|
* Merge EmpathyContact:name and *_set_alias() to EmpathyContact:aliasPhilip Withnall2010-07-225-21/+21
| | | | The "name" API was a relic of Gossip.
* Merge remote branch 'pwith/folks-integ-rebase1-fixes-rebase1' into folks-fixesTravis Reitter2010-07-221-0/+2
|
* Add authors and fix copyrights for empathy-accounts-moduleDanielle Madeley2010-07-213-3/+7
|
* Remove unneccesary signal disconnection in EmpathyAccountsDialogDanielle Madeley2010-07-211-35/+9
| | | | Generated critical warnings under GTK+ 3
* Update cc-empathy-accounts-panel for latest gnome-control-centerDanielle Madeley2010-07-215-365/+129
|
* Take advantage of tp_clear_object().Travis Reitter2010-07-211-7/+4
|
* Fix alignment.Travis Reitter2010-07-211-1/+1
|
* Add 'dup' to the names of empathy_contact_from_folks_individual() and ↵Travis Reitter2010-07-211-2/+2
| | | | folks_individual_from_empathy_contact() to make it clear that the return value has been referenced.
* Use explicit boolean expressions for if-conditionals, according to Telepathy ↵Travis Reitter2010-07-211-3/+3
| | | | style.
* Support contact addingTravis Reitter2010-07-211-1/+2
|
* Fixes from merging masterPhilip Withnall2010-07-211-0/+1
|
* Re-implement the context menu for IndividualsTravis Reitter2010-07-211-0/+3
|
* Base the contact list around libfolks metacontacts. Not yet to feature-parityTravis Reitter2010-07-211-49/+73
| | | | with mainline Empathy.
* GtkNotebookPage no longer exists in GTK+ 3Danielle Madeley2010-07-191-1/+4
|
* avoid segfault in event_manager_add (#624462)Marc-Antoine Perennou2010-07-161-1/+3
| | | | Check if approval is not NULL before trying to modify it
* Merge branch 'debug-av-599166'Guillaume Desmottes2010-07-142-0/+546
|\
| * display the clock rate of the codec as wellGuillaume Desmottes2010-07-131-12/+11
| |
| * reset codecs when call is disconnectedGuillaume Desmottes2010-07-121-0/+13
| |