aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-accounts.c
Commit message (Collapse)AuthorAgeFilesLines
* Add missing telepathy-glib-dbus.h includesXavier Claessens2013-10-031-0/+1
|
* coding style fixesGuillaume Desmottes2013-09-171-1/+1
|
* EmpathyAccounts: use GApplication activateMarco Trevisan (Treviño)2013-04-051-16/+21
|
* Reorder header inclusions accordingly to the Telepathy coding styleEmanuele Aina2013-04-021-3/+3
| | | | | | | | | | | | Sort by: • "config.h" • API declarations, if any • public libraries • internal headers, alphabetically sorted (mostly) http://telepathy.freedesktop.org/wiki/Style#A.23includes https://bugzilla.gnome.org/show_bug.cgi?id=697076
* Use a flat namespace for internal includesEmanuele Aina2013-04-011-3/+3
| | | | | | | | Directly add the libempathy, libempathy-gtk and extensions directories to the include search path. This decouples header inclusions from their location and helps when reorganizing the source files layout. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Use double quotes for all internal headersEmanuele Aina2013-04-011-3/+3
| | | | | | | This makes a bit more obvious which headers come from public libraries and which ones come from uninstalled utility libraries. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Drop unused/redundant header inclusionsEmanuele Aina2013-03-281-9/+0
| | | | | | | With the help of the script posted at http://stackoverflow.com/a/7135530 and some manual fixes, drop the unused or redundant #include directives. https://bugzilla.gnome.org/show_bug.cgi?id=696718
* Consistently use `#include "config.h"` everywhereEmanuele Aina2013-03-281-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=696718
* include telepathy-glib.hGuillaume Desmottes2012-09-171-3/+1
| | | | | tp-glib 1.0 will enforce to only include telepathy-glib.h so best doing it to reduce the delta with the future stable branch.
* use tp_account_manager_dup_valid_accounts()Guillaume Desmottes2012-09-111-2/+2
| | | | | | tp_account_manager_get_valid_accounts() has been deprecated. Fix an accounts list leak in empathy-sanity-cleaning.
* Merge branch 'gnome-3-4'Guillaume Desmottes2012-05-211-1/+11
|\ | | | | | | | | | | | | Conflicts: NEWS configure.ac src/empathy-accounts.c
| * empathy-accounts: init cheese-gtk if neededGuillaume Desmottes2012-05-211-0/+11
| | | | | | | | | | | | | | | | | | | | | | The avatar chooser, which is not used by empathy-accounts, may use Cheese to take a photo. cheese_gtk_init() has been added during the 3.4 cycle so I bumped the dep to 3.4.0 as that's the version I have tested it with it. It's an optionnal dep anyway so... https://bugzilla.gnome.org/show_bug.cgi?id=674553
* | Fix localization of --help outputs and application namesGabor Kelemen2012-05-031-1/+2
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=675246
* | stop using g_thread_initGuillaume Desmottes2012-04-051-1/+0
|/ | | | | | It has been deprecated in GLib 2.31. https://bugzilla.gnome.org/show_bug.cgi?id=662662
* remove empathy-auto-salut-account-helperGuillaume Desmottes2012-02-171-1/+0
| | | | | | It was used only by the accounts assistant https://bugzilla.gnome.org/show_bug.cgi?id=652669
* empathy-accounts: remove --assistant optionGuillaume Desmottes2012-02-171-7/+2
| | | | | | It was only used when hacking on the accounts assistant which is going away. https://bugzilla.gnome.org/show_bug.cgi?id=652669
* remove useless includeGuillaume Desmottes2012-02-161-1/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=670201
* empathy-debugger: rely on gtk_application_add_window() to manage the main loopGuillaume Desmottes2011-10-261-16/+22
| | | | | | | We have to old the application while doing async preparation as the app window is not created right away. https://bugzilla.gnome.org/show_bug.cgi?id=662504
* empathy-accounts: prepare the AM in app_command_line_cbGuillaume Desmottes2011-10-261-22/+6
| | | | | | | We just need to prepare it in the main instance; there is no point doing it the other ones as they will just re-invoke the main one and exit. https://bugzilla.gnome.org/show_bug.cgi?id=662504
* empathy-accounts: re-use existing TpAccount rather than creating a new oneGuillaume Desmottes2011-10-261-30/+30
| | | | | | | This allows us to detect right away if the account is a valid one and we don't have to prepare it any more as the AM already did it for us. https://bugzilla.gnome.org/show_bug.cgi?id=662504
* empathy-account: add a --assistant option to force having assistantXavier Claessens2011-09-261-3/+8
| | | | | | This makes easier to test it https://bugzilla.gnome.org/show_bug.cgi?id=646630
* Use tp_proxy_prepare_async instead of tp_account_prepare_asyncGuillaume Desmottes2011-09-191-2/+2
|
* Use tp_proxy_prepare_async instead of tp_account_manager_prepare_asyncGuillaume Desmottes2011-09-191-2/+2
|
* empathy-accounts: allow to pass the full path of the accountGuillaume Desmottes2011-02-281-2/+6
|
* accounts: release our ref on the TpDBusDaemonGuillaume Desmottes2011-02-171-0/+1
|
* set 'Empathy' as program class in all binariesGuillaume Desmottes2011-02-161-0/+2
| | | | | | | This will make all the empathy apps windows appear as the same application in gnome-shell. (#642440) Thanks to Owen Taylor for this trick.
* show the account UI even if the selected account doesn't existGuillaume Desmottes2010-12-151-0/+2
|
* always set account_manager_preparedGuillaume Desmottes2010-12-151-1/+2
|
* get the value of selected_account_name in the callback (#637307)Guillaume Desmottes2010-12-151-4/+3
| | | | | | There is no point to pass it as user_data as selected_account_name is global and it's not defined yet when calling tp_account_manager_prepare_async() as the GApplication has not be prepared yet.
* empathy-accounts: no need to get argv, we don't use itGuillaume Desmottes2010-12-151-7/+0
|
* empathy-accounts: use the proper exit statusTravis Reitter2010-10-301-2/+3
|
* Make empathy-accounts use act as a "command-line" GApplicationTravis Reitter2010-10-301-21/+60
| | | | Helps bgo#632912.
* Properly handle remote instances of the accounts dialog.Travis Reitter2010-10-301-3/+4
| | | | Helps bgo#632912.
* empathy-account: change Salut -> People NearbyFrancisca Gallardo2010-10-261-1/+1
| | | | | | | | Changed error message "Don't display any dialogs if there are any non-Salut accounts" to "Don't display any dialogs unless there are only 'People Nearby' accounts" https://bugzilla.gnome.org/show_bug.cgi?id=628823
* Port the accounts dialog to new G/tkApplication.Travis Reitter2010-10-221-5/+7
| | | | Helps bgo#632846.
* empathy-accounts: port to GtkApplication (#621339)Guillaume Desmottes2010-10-181-41/+12
|
* empathy-accounts.c: check return value of unique_app_send_message (#629782)Guillaume Desmottes2010-09-271-4/+6
|
* Bug 628064 — Miscellaneous string fixesPhilip Withnall2010-08-271-1/+1
|
* stop importing MC4 accountsGuillaume Desmottes2010-06-241-32/+1
|
* empathy-accounts: set text domainGuillaume Desmottes2010-03-221-0/+1
| | | | | If we don't set it the accounts assistant and dialog are not translated (#613596).
* empathy-accounts: set "Empathy Accounts" as application nameGuillaume Desmottes2010-03-151-1/+1
| | | | It's more friendly to translators.
* empathy-accounts: the TpDBusDaemon is not used any moreGuillaume Desmottes2010-03-021-1/+0
|
* Remove code that will always fail and has no useSjoerd Simons2010-03-021-20/+0
| | | | | | | libunique will already register a unique name and we have no other dbus services so we don't need to register a unique name ourselves. Also trying to register one which is the same as what we suggest to libunique will always fail and is thus pointless
* Make the empathy-account code be slightly more streamlinedSjoerd Simons2010-03-021-38/+47
| | | | | | | On every run of the accounts UI we should try to import MC4 accounts (if they weren't imported already). Also replace the --try-import option with --if-needed to better document the fact that it will only display the UI if needed.
* Separate the accounts dialog into its own program which works with the Gnome ↵Travis Reitter2010-02-121-0/+287
| | | | | | | | preferences and control center. Where available, this also supports embedding the preferences dialog in the "extensible-shell" control center (currently in development, but likely to be mainlined soon).
* Remove empathy-accounts binary, it is replaced by empathy --accountsXavier Claessens2008-08-021-67/+0
| | | | svn path=/trunk/; revision=1283
* Moved empathy-accounts-dialog from libempathy-gtk to src. (Jonny Lamb)Jonny Lamb2008-07-151-1/+2
| | | | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1234
* Select the bugged account upon a failed connection. Fixes bug #536984 (Jonny ↵Jonny Lamb2008-07-041-1/+1
| | | | | | | | | | | | | Lamb). When a connection fails, a box in the main window appears with an "Edit Account" button. Clicking this button takes you to the account editor, but does nothing else. This patch moves the selection to the bugged account, for convenience. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1192
* Make use of tp-glib debug system.Xavier Claessens2008-05-011-0/+7
| | | | svn path=/trunk/; revision=1066
* Update collabora copyright to 2008Xavier Claessens2008-03-031-1/+1
| | | | svn path=/trunk/; revision=688
* Icon location changed, forgot to change in empathy-account program.Xavier Claessens2008-01-171-1/+1
| | | | svn path=/trunk/; revision=568
* Rename all filenames starting with "gossip" by "empathy", change namespaceXavier Claessens2007-06-221-2/+2
| | | | | | | | | | | | | 2007-06-22 Xavier Claessens <xclaesse@gmail.com> * libempathy/*.[ch]: * libempathy-gtk/*.[ch]: * src/*.[ch]: Rename all filenames starting with "gossip" by "empathy", change namespace of all gossip_*() functions to empathy_*(). Fixes bug #444490 (Mario Danic, Xavier Claessens). svn path=/trunk/; revision=170
* Empathy is no more splitted into 2 processes. It makes debugging moreXavier Claessens2007-06-141-0/+59
2007-06-14 Xavier Claessens <xclaesse@gmail.com> * src/org.gnome.Empathy.Chat.service.in: * src/empathy-accounts.c: * src/empathy-accounts-main.c: * src/empathy-chat-main.c: * src/empathy.c: * src/Makefile.am: * src/empathy-main.c: * libempathy/gossip-chatroom-manager.c: * autogen.sh: Empathy is no more splitted into 2 processes. It makes debugging more difficult when emmpathy-chat crashes. It's also more optimised like that since contact objects can be shared. svn path=/trunk/; revision=154