aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Added empathy_init function to call emp_cli_init in main. (Jonny Lamb)Jonny Lamb2008-11-221-0/+2
| | | | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1737
* Do not crash if there is no salut profile installedXavier Claessens2008-08-191-0/+4
| | | | svn path=/trunk/; revision=1342
* Fix translators complains about ambigous strings. Fixes bug #546154.Xavier Claessens2008-08-041-14/+14
| | | | svn path=/trunk/; revision=1291
* Fix little coding styleXavier Claessens2008-08-021-2/+1
| | | | svn path=/trunk/; revision=1284
* Implemented showing a single accounts dialog from the command line.Jonny Lamb2008-08-021-17/+51
| | | | | | | | | | | If one loads empathy normally then calls "empathy -a", the accounts dialog will load under the original empathy. If one loads "empathy -a", the accounts dialog will show by itself. If one then runs "empathy -a" again, the already-shown accounts dialog will present itself. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1280
* Merge branch 'leak'Xavier Claessens2008-07-141-0/+2
| | | | svn path=/trunk/; revision=1227
* Add a command line option to hide contact list on startup. Fixes bug #535080 ↵Xavier Claessens2008-06-041-1/+6
| | | | | | (Marco Pesenti Gritti). svn path=/trunk/; revision=1146
* Only permit to have one running call at any time. Fixes bug #527970.Xavier Claessens2008-05-271-8/+1
| | | | svn path=/trunk/; revision=1126
* Improve dispatcher. Fixes bug #465928.Xavier Claessens2008-05-181-5/+8
| | | | svn path=/trunk/; revision=1108
* Move non-gtk parts of EmpathyFilter to EmpathyDispatcher in libempathy, gtk ↵Xavier Claessens2008-05-091-0/+64
| | | | | | parts are now in EmpathyStatusIcon svn path=/trunk/; revision=1093
* Make use of tp-glib debug system.Xavier Claessens2008-05-011-24/+22
| | | | svn path=/trunk/; revision=1066
* Display error message when cannot create salut account.Xavier Claessens2008-04-201-2/+5
| | | | svn path=/trunk/; revision=1000
* Drop Chandler and Filter, do not use MC for dispatching channels, do it ourself.Xavier Claessens2008-04-201-77/+0
| | | | svn path=/trunk/; revision=967
* Added a --no-connect option. Fixes: #526208. (Frederic Peters)Frederic Peters2008-04-191-2/+10
| | | | svn path=/trunk/; revision=965
* Redirect debug messages after printing help. Fixes bug #528542 (Frederic ↵Xavier Claessens2008-04-171-2/+2
| | | | | | Peters). svn path=/trunk/; revision=958
* Update for new APIXavier Claessens2008-04-111-7/+31
| | | | svn path=/trunk/; revision=907
* Removed deleted headerXavier Claessens2008-04-031-1/+0
| | | | svn path=/trunk/; revision=864
* Fix various warningsXavier Claessens2008-04-021-1/+0
| | | | svn path=/trunk/; revision=849
* Adapt to new apiXavier Claessens2008-04-021-1/+1
| | | | svn path=/trunk/; revision=842
* Add empathy_chat_new and don't use empathy_group/private_* in empathy.cXavier Claessens2008-04-021-24/+3
| | | | svn path=/trunk/; revision=836
* Do not autoconnect if networkmanager says we are not connected at startup.Xavier Claessens2008-03-171-32/+66
| | | | svn path=/trunk/; revision=815
* Fix includes of files that are now in src/. Fixes bug #522780.Xavier Claessens2008-03-171-3/+2
| | | | svn path=/trunk/; revision=808
* Move modules that make no sense to be used in other applicaton from ↵Xavier Claessens2008-03-141-3/+3
| | | | | | libempathy-gtk/ to src/ svn path=/trunk/; revision=789
* Move chat chandler into the same process than contact listXavier Claessens2008-03-141-0/+76
| | | | svn path=/trunk/; revision=788
* Drop gnome-vfs dependency and use gio instead. Fixes bug #514380 (Cosimo ↵Xavier Claessens2008-03-111-2/+0
| | | | | | Cecchi). svn path=/trunk/; revision=737
* Do not run multiple instances of empathy. Fixes bug #501805 (Marco Barisione).Xavier Claessens2008-03-091-0/+118
| | | | svn path=/trunk/; revision=711
* Update collabora copyright to 2008Xavier Claessens2008-03-031-1/+1
| | | | svn path=/trunk/; revision=688
* Try to create salut account if getting the gconf key fails. If the user ↵Xavier Claessens2008-02-121-6/+4
| | | | | | starts empathy just after installation it will fail because gconf didn't refresh schemas yet. svn path=/trunk/; revision=627
* Move nickname to the main section of account setting UI and do not set ↵Xavier Claessens2008-02-081-12/+3
| | | | | | automatically published name when creating new salut account. Fixes bug #515010 and #515008 (Marco Barisione). svn path=/trunk/; revision=605
* fix src/empathy build. empathy-conf was moved to libempathy-gtk. Fixes bug ↵Xavier Claessens2008-01-241-1/+1
| | | | | | #511679 (Guillaume Desmottes). svn path=/trunk/; revision=599
* Add option in preference to automatically connect at startup. Fixes bug ↵Xavier Claessens2008-01-121-10/+7
| | | | | | #499885 (Carl-Anton Ingmarsson). svn path=/trunk/; revision=539
* Conflicts:Xavier Claessens2007-12-031-1/+2
| | | | | | ChangeLog svn path=/trunk/; revision=455
* Move chats to its own process.Xavier Claessens2007-11-111-72/+3
| | | | | | | | | | | | | | 2007-11-11 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-chat.c: * src/empathy-call-chandler.c: * src/org.gnome.Empathy.Chat.service.in: * src/empathy-chat-chandler.c: * src/empathy.c: * src/Makefile.am: Move chats to its own process. svn path=/trunk/; revision=429
* Make use of gtk_init_with_args for command line parsing. Fixes bug #491985Xavier Claessens2007-11-041-4/+7
| | | | | | | | | | 2007-11-03 Xavier Claessens <xclaesse@gmail.com> * src/empathy.c: Make use of gtk_init_with_args for command line parsing. Fixes bug #491985 (Basilio Kublik). svn path=/trunk/; revision=415
* Rename icons to follow fd.o icon naming spec. Move icons to the rightXavier Claessens2007-10-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-28 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-status-icon.glade: * libempathy-gtk/empathy-group-chat.glade: * libempathy-gtk/empathy-main-window.glade: * libempathy-gtk/empathy-images.h: * src/empathy.c: * src/Makefile.am: * configure.ac: * data/jabber.profile: * data/salut.profile: * data/msn.profile: * data/gtalk.profile: * data/irc.profile: * data/22x22: * data/32x32: * data/24x24: * data/16x16: * data/48x48: * data/scalable: * data/Makefile.am: * data/icons/*: Rename icons to follow fd.o icon naming spec. Move icons to the right directory. Fixes bug #470418 (Michael Monreal). svn path=/trunk/; revision=404
* Implement EmpathyAvatarChooser and EmpathyAvatarImage and make use of themXavier Claessens2007-10-091-0/+2
| | | | | | | | | | | | | | | | | | | | | 2007-10-08 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-ui-utils.c: * libempathy-gtk/empathy-ui-utils.h: * libempathy-gtk/empathy-contact-widget.c: * libempathy-gtk/empathy-contact-widget.h: * libempathy-gtk/empathy-avatar-chooser.c: * libempathy-gtk/empathy-avatar-chooser.h: * libempathy-gtk/empathy-avatar-image.c: * libempathy-gtk/empathy-avatar-image.h: * libempathy-gtk/Makefile.am: * src/empathy.c: Implement EmpathyAvatarChooser and EmpathyAvatarImage and make use of them in contact information windows. That means we can now enlarge avatars when clicking on it and we can set our own avatar if we edit our own contact. svn path=/trunk/; revision=363
* Remove GnomeProgram, not useful anymore, drop libgnome dependency. FixesXavier Claessens2007-09-281-13/+1
| | | | | | | | | | | | | | | | | | | 2007-09-28 Xavier Claessens <xclaesse@gmail.com> * configure.ac: * src/empathy.c: Remove GnomeProgram, not useful anymore, drop libgnome dependency. Fixes bug #442079 * libempathy/empathy-avatar.c: * libempathy/empathy-avatar.h: Fix Copyright header. * libempathy/empathy-contact-factory.c: * libempathy/empathy-tp-group.c: Free return value for async DBus calls, they are not owned by dbus-glib. This fix big leaks, thanks again to valgrind. svn path=/trunk/; revision=330
* Chech if there is already a Salut account before creating a new one andXavier Claessens2007-08-251-0/+27
| | | | | | | | | | 2007-08-24 Xavier Claessens <xclaesse@gmail.com> * src/empathy.c: Chech if there is already a Salut account before creating a new one and add more debug messages. svn path=/trunk/; revision=269
* Add specialised UI for salut settings. Configure a Salut account firstXavier Claessens2007-08-231-0/+84
| | | | | | | | | | | | | | | | | | | | 2007-08-23 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-account-widget-salut.glade: * libempathy-gtk/empathy-account-widget-salut.c: * libempathy-gtk/empathy-account-widget-salut.h: * libempathy-gtk/empathy-preferences.h: * libempathy-gtk/empathy-accounts-dialog.c: * libempathy-gtk/Makefile.am: * src/empathy.c: * configure.ac: * data/empathy.schemas.in: Add specialised UI for salut settings. Configure a Salut account first time empathy is started with salut CM installed using gnome-about-me information. Fixes bug #447467 (Cosimo Cecchi, Xavier Claessens). svn path=/trunk/; revision=266
* Initial room list support. It does not works yet.Xavier Claessens2007-07-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-07-20 Xavier Claessens <xclaesse@gmail.com> * libempathy/Makefile.am: * libempathy/empathy-tp-roomlist.h: * libempathy/empathy-tp-roomlist.c: * libempathy-gtk/empathy-chatrooms-window.c: * libempathy-gtk/empathy-new-chatroom-dialog.c: Initial room list support. It does not works yet. * libempathy-gtk/empathy-account-widget-generic.c: Add support for all types of integer and float. Fixes bug #457740 (Jamey Hicks). * libempathy/empathy-tp-chat.c: * libempathy-gtk/empathy-chat.c: If there is an error sending a message, show an error message to the user. * libempathy-gtk/empathy-accounts-dialog.c: Fix a leak, profile should be unrefed after mc_account_get_profile. * libempathy/empathy-utils.c: * libempathy/empathy-utils.h: * libempathy/empathy-tp-chatroom.c: * libempathy/empathy-tp-group.h: * libempathy/empathy-tp-group.c: * src/empathy.c: Rename empathy_get_channel_id() to empathy_inspect_channel(). We now have empathy_inspect_handle(). * po/POTFILES.in: * libempathy/empathy-tp-contact-list.c: Set all contacts from salut protocol to the "Local Network" group. * libempathy/empathy-idle.c: Fix NetworkManager support. * libempathy/empathy-chatroom.h: Fix indentation. * libempathy-gtk/empathy-status-icon.c: * libempathy-gtk/empathy-ui-utils.c: * libempathy-gtk/empathy-ui-utils.h: - Iconify main window to the status icon like in rhythmbox. Fixes bug #458106 (Jaap A. Haitsma). - Rounded avatars. Fixes bug #457992 (Raphael Slinckx) * Makefile.am: Fix distcheck for gtkdoc (Vincent Untz) * data/empathy.desktop.in.in: Change application description (Jaap A. Haitsma). svn path=/trunk/; revision=190
* Add EMPATHY_LOGFILE env variable. Fixes bug #455240 (Guillaume Desmottes).Xavier Claessens2007-07-101-0/+2
| | | | | | | | | | | | 2007-07-09 Xavier Claessens <xclaesse@gmail.com> * src/empathy.c: * libempathy/empathy-debug.c: * libempathy/empathy-debug.h: Add EMPATHY_LOGFILE env variable. Fixes bug #455240 (Guillaume Desmottes). svn path=/trunk/; revision=179
* Fix a leaked ref.Xavier Claessens2007-07-011-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-06-30 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-account-widget-generic.c: Fix a leaked ref. * src/empathy.c: If we get a chatroom we have to create an EmpathyTpChatroom object. * src/Makefile.am: Fix build system, programs links to libempathy-gtk and libempathy. * configure.ac: libempathy does not depends on libgnome-vfs. * libempathy-gtk/empathy-status-icon.c: * libempathy-gtk/empathy-chat.c: * libempathy/empathy-tp-chat.c: * libempathy/empathy-tp-chat.h: * libempathy/empathy-filter.c: * libempathy/empathy-filter.h: * libempathy/empathy-filter.xml: * libempathy/Makefile.am: Filter incoming text channels and make status icon flash when there we receive a new message. Dispatch the channel only when we get a message and the user click on the icon. svn path=/trunk/; revision=175
* Rename all filenames starting with "gossip" by "empathy", change namespaceXavier Claessens2007-06-221-19/+19
| | | | | | | | | | | | | 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
* Adding NetworkManager support.Xavier Claessens2007-06-211-26/+12
| | | | | | | | | | 2007-06-15 Xavier Claessens <xclaesse@gmail.com> * src/empathy.c: * libempathy/empathy-idle.c: Adding NetworkManager support. svn path=/trunk/; revision=162
* Empathy is no more splitted into 2 processes. It makes debugging moreXavier Claessens2007-06-141-0/+242
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