aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Remove useless gnomevfs include.Xavier Claessens2008-11-221-1/+0
* Update the selection only if we are removing the selected row.Xavier Claessens2008-11-221-9/+11
* Check if URI is not NULL before adding it to the recent manager.Xavier Claessens2008-11-221-1/+2
* Fix ref counting of tp_file, make it singleton per channel, and add a _keep_a...Xavier Claessens2008-11-222-7/+12
* Fix a comment phrasingXavier Claessens2008-11-221-1/+1
* Update the selection of the ft manager when a ft is removed only if it's not ...Xavier Claessens2008-11-221-8/+15
* There is no reason to remove the FT if it's cancelled while the window was hi...Xavier Claessens2008-11-221-33/+8
* Fix glade lookupXavier Claessens2008-11-221-2/+1
* Simplify ft_manager_remove_file_from_list.Xavier Claessens2008-11-221-39/+14
* Clean ft_manager_update_ft_row()Xavier Claessens2008-11-221-19/+19
* Simplify conditionXavier Claessens2008-11-221-3/+1
* Add all reasons in ft_manager_state_change_reason_to_string(). Don't use defa...Xavier Claessens2008-11-221-3/+4
* Simplify the code to add a FT in the manager.Xavier Claessens2008-11-221-25/+6
* Simplify the code to set sensibility of buttonsXavier Claessens2008-11-221-21/+8
* When the channel is invalidated, change state to CANCELLED.Xavier Claessens2008-11-221-7/+6
* Move the ft manager to src/ other programs do not need it.Xavier Claessens2008-11-225-1/+1293
* Fix coding style and cleanupXavier Claessens2008-11-221-18/+9
* Include only used headersXavier Claessens2008-11-221-2/+2
* Implement latest ft draftXavier Claessens2008-11-221-18/+2
* fix FT client side code as the generated code changedXavier Claessens2008-11-222-4/+4
* Added a wait for file channels so outgoing transfers are only added to the ma...Jonny Lamb2008-11-221-7/+50
* Handle new file channels regardless of direction in the dispatcher. (Jonny Lamb)Jonny Lamb2008-11-222-59/+38
* Removed account property of EmpathyTpFile as it's only actually used once and...Jonny Lamb2008-11-221-3/+1
* Use empathy_contact_run_until_ready in EmpathyEventManager.Jonny Lamb2008-11-221-0/+2
* Changed _run_ method calls to _call_ calls. (Jonny Lamb)Jonny Lamb2008-11-221-39/+48
* Changed EmpathyEventManager to not rely on the Direction property of the file...Jonny Lamb2008-11-221-6/+8
* Added a proper Empathy event for an incoming file transfer so that the status...Jonny Lamb2008-11-221-7/+30
* Renamed EmpathyFile to EmpathyTpFile. (Jonny Lamb)Jonny Lamb2008-11-221-4/+4
* Removed empathy_init in favour of calling emp_cli_init directly. (Jonny Lamb)Jonny Lamb2008-11-221-1/+3
* Handle incoming file transfers in the event manager. (Jonny Lamb)Jonny Lamb2008-11-221-0/+30
* Added empathy_init function to call emp_cli_init in main. (Jonny Lamb)Jonny Lamb2008-11-221-0/+2
* Include account name in chat-window tooltip. Fixes bug #560622Mathias Hasselmann2008-11-141-4/+8
* Use markup for chat-window tooltipsMathias Hasselmann2008-11-141-10/+21
* If chats have no name, use the channel's ID instead of fallback to "Conversat...Xavier Claessens2008-11-141-19/+2
* Use l to iterate a GList, less confusing naming.Xavier Claessens2008-10-171-3/+3
* It is a map from pidgin to CM, not MC.Xavier Claessens2008-10-171-10/+10
* Split pidgin import code into its own module. It makes easier to add other im...Xavier Claessens2008-10-175-283/+375
* Connect to the "destroy" and "response" signals on the import window instead ...Xavier Claessens2008-10-172-59/+59
* Do not include accounts which don't have profile.. Also fix a leak.Xavier Claessens2008-10-171-2/+7
* Remove useless varsXavier Claessens2008-10-171-1/+0
* Remove declaration of functions on top of import dialog file.Xavier Claessens2008-10-171-29/+0
* There is no reason for import_dialog_add_account to fail.Xavier Claessens2008-10-171-7/+3
* Be more careful in import_dialog_account_data_freeXavier Claessens2008-10-171-2/+6
* Remove useless include in main windowXavier Claessens2008-10-171-1/+0
* rename import boolean to import_asked.Xavier Claessens2008-10-171-4/+3
* Store the McProfile in AccountData instead of a string of the account name. (...Jonny Lamb2008-10-171-34/+15
* Call import_dialog_account_data_free to actually free the account data after ...Jonny Lamb2008-10-171-5/+4
* Do not store the account data in a G_TYPE_POINTER GValue but straight in the ...Jonny Lamb2008-10-171-10/+4
* Removed call to mc_accounts_filter and wrote another function to loop through...Jonny Lamb2008-10-171-23/+24
* Compare GLists to NULL instead of g_list_length(list) == 0. (Jonny Lamb)Jonny Lamb2008-10-171-2/+2
* Removed empathy_import_dialog_accounts_to_import to stop the accounts being p...Jonny Lamb2008-10-173-57/+27
* Moved some code around for clarity and also to parse accounts before the Glad...Jonny Lamb2008-10-171-33/+30
* Only display the importing result if there was a failure. (Jonny Lamb)Jonny Lamb2008-10-171-19/+14
* Ask whether to import if there are accounts to import on loading the account ...Jonny Lamb2008-10-171-0/+34
* Added empathy_import_dialog_accounts_to_import. (Jonny Lamb)Jonny Lamb2008-10-172-0/+16
* Automatically tick "import" only for accounts which are not already present i...Jonny Lamb2008-10-171-1/+45
* Make the parent of the import dialog be the parent of the warning message dia...Jonny Lamb2008-10-171-3/+3
* Display a warning when no accounts could be found for importing. (Jonny Lamb)Jonny Lamb2008-10-171-6/+26
* Check whether ~/.purple/accounts.xml is readable before trying to read it. (J...Jonny Lamb2008-10-171-1/+8
* Use g_ascii_strtod instead of sscanf. (Jonny Lamb)Jonny Lamb2008-10-171-2/+2
* Use tp_strdiff instead of strcmp. (Jonny Lamb)Jonny Lamb2008-10-171-18/+18
* Added import_dialog_free and actually destroy the importer when finished impo...Jonny Lamb2008-10-171-2/+9
* Actually add the accounts when the user presses OK. (Jonny Lamb)Jonny Lamb2008-10-171-7/+54
* Renamed import_dialog_add_accounts to import_dialog_add_accounts_to_model to ...Jonny Lamb2008-10-171-2/+2
* Added more whitespace between indentations and comments. (Jonny Lamb)Jonny Lamb2008-10-171-1/+4
* Fill the tree view with Pidgin accounts to import. (Jonny Lamb)Jonny Lamb2008-10-171-14/+19
* Set a height request of 200px for the treeview widget. (Jonny Lamb)Jonny Lamb2008-10-171-0/+1
* Re-wrote the UI of the importer dialog. (Jonny Lamb)Jonny Lamb2008-10-172-33/+250
* Fix wrong condition in import_dialog_pidgin_parse_setting().Xavier Claessens2008-10-171-1/+1
* Add comments and cleanup the pidgin importer. Account settings are now import...Xavier Claessens2008-10-171-141/+152
* Renamed static empathy_import_dialog_* functions to import_dialog_*. (Jonny L...Jonny Lamb2008-10-171-29/+29
* Simplified the node looping code further. (Jonny Lamb)Jonny Lamb2008-10-171-69/+66
* Use a different loop with nodes to shorten code. (Jonny Lamb)Jonny Lamb2008-10-171-3/+1
* Added another empty line between function declaration and code. (Jonny Lamb)Jonny Lamb2008-10-171-0/+1
* Avoid using gtk_widget_show_all and show each widget separately. (Jonny Lamb)Jonny Lamb2008-10-171-2/+3
* Added a missing g_free. (Jonny Lamb)Jonny Lamb2008-10-171-0/+2
* Make EmpathyImportDialog a singleton. (Jonny Lamb)Jonny Lamb2008-10-171-3/+8
* Name imported accounts in the same way as a new account does. (Jonny Lamb)Jonny Lamb2008-10-171-5/+10
* Changed import button to "Import Accounts...". (Jonny Lamb)Jonny Lamb2008-10-171-1/+1
* Added spacing of 6 to "Import accounts" button. (Jonny Lamb)Jonny Lamb2008-10-171-0/+1
* Moved to Collabora coding style. (Jonny Lamb)Jonny Lamb2008-10-171-287/+308
* Added an "Import accounts" button to the accounts dialog. (Jonny Lamb)Jonny Lamb2008-10-172-11/+44
* Removed import dialog references from main window. (Jonny Lamb)Jonny Lamb2008-10-171-10/+0
* Fixed typos of constants in the import dialog. (Jonny Lamb)Jonny Lamb2008-10-171-3/+3
* Fixed part of dialog, as per Xavier's comments.Jonny Lamb2008-10-172-93/+74
* Added an account importer dialog. Fixes bug #541060 (Jonny Lamb)Jonny Lamb2008-10-175-0/+466
* Use alphabetical order in makefileXavier Claessens2008-10-171-12/+12
* empathy-chat-window: use new chatroom mgr APIXavier Claessens2008-10-131-1/+1
* empathy-chatrooms-window: no need to call empathy_chatroom_manager_store anymoreXavier Claessens2008-10-131-1/+0
* add the file path as arg to empathy_chatroom_manager_newXavier Claessens2008-10-132-2/+2
* Do not crash if the chatroom's account has no connection. Fixes bug #550652.Xavier Claessens2008-09-191-7/+9
* add WM_WINDOW_ROLE property to windows (closes: #551113)Frederic Peters2008-09-077-0/+7
* Hide the tab close button where there is a single tab (closes: #551096)Frederic Peters2008-09-071-0/+18
* Do not create a new EmpathyChatroom is it already exists.Xavier Claessens2008-08-301-10/+18
* Add a menu item in chat window to set the room as favoriteXavier Claessens2008-08-302-0/+59
* Hide the Notification preferences because we don't support it. Fixes bug #549...Xavier Claessens2008-08-251-2/+0
* Change label in Accounts window from Undo to Cancel. (closes: #548709)Frederic Peters2008-08-211-1/+1
* If display name of the selected account changes, update the label.Xavier Claessens2008-08-191-5/+41
* When creating an account set its display name to "New Jabber account", when t...Xavier Claessens2008-08-191-6/+39
* Avoid crashing if mc_account_lookup returns NULL, it can happen when status o...Xavier Claessens2008-08-191-0/+3
* If adding a an account that is already in the treeview, simply update values....Xavier Claessens2008-08-191-20/+17
* Remove unused account_changed booleanXavier Claessens2008-08-191-1/+0
* Use accounts_dialog_add_account() to add initial set of accountsXavier Claessens2008-08-191-53/+15
* Rework the way the accounts dialog worksXavier Claessens2008-08-192-156/+116
* Do not crash if there is no salut profile installedXavier Claessens2008-08-191-0/+4
* Add Marco Barisione to CONTRIBUTORSXavier Claessens2008-08-091-0/+1
* Update credits for the about dialog.Xavier Claessens2008-08-091-7/+26
* Do not use mission_control_request_channel as we don't use MC's dispatcher an...Xavier Claessens2008-08-072-17/+23
* Pick the correct contact alias for the message telling incoming call is rejec...Xavier Claessens2008-08-041-1/+8
* Fix translators complains about ambigous strings. Fixes bug #546154.Xavier Claessens2008-08-046-75/+77
* Fix little coding styleXavier Claessens2008-08-021-2/+1
* Remove empathy-accounts binary, it is replaced by empathy --accountsXavier Claessens2008-08-023-85/+1
* Implemented showing a single accounts dialog from the command line.Jonny Lamb2008-08-021-17/+51
* Display an error message if reason is != _REQUESTED instead of >Xavier Claessens2008-07-201-1/+4
* Add support to set register param. Fixes bug #462880.Xavier Claessens2008-07-192-1/+51
* Replace the preview button by a cancel button when creating a new accountXavier Claessens2008-07-191-1/+1
* Allow renaming account name when accounts are connecting. Fixes bug #486801 (...Jonny Lamb2008-07-191-20/+51
* Make more explicit the comment when we activate an eventXavier Claessens2008-07-151-1/+2
* Add a comment telling that if there is no event the default handler of row-ac...Xavier Claessens2008-07-151-1/+2
* Prevent to start a chat when activating a row with an eventXavier Claessens2008-07-151-0/+4
* Move the event manager to src/Xavier Claessens2008-07-155-4/+756
* Move event code from EmpathyStatusIcon to EmpathyEventManagerXavier Claessens2008-07-151-368/+53
* Correctly update the UI when listing state changes.Xavier Claessens2008-07-151-1/+1
* Moved empathy-accounts-dialog from libempathy-gtk to src. (Jonny Lamb)Jonny Lamb2008-07-157-6/+1525
* Merge branch 'leak'Xavier Claessens2008-07-141-0/+2
* Useless to cast 2 times to the same classXavier Claessens2008-07-141-1/+1
* Added support for the chat window to show the avatar as the icon. Fixes bug #...Jonny Lamb2008-07-081-1/+15
* Select the bugged account upon a failed connection. Fixes bug #536984 (Jonny ...Jonny Lamb2008-07-043-6/+6
* Set an smiley icon for the "Insert smiley" menu item.Xavier Claessens2008-07-041-1/+8
* Coding style (Alban Crequy)Xavier Claessens2008-06-131-3/+2
* g_object_unref the right variable (Alban Crequy)Xavier Claessens2008-06-131-1/+1
* Replace the has-dtmf property by empathy_tp_call_has_dtmf() (Alban Crequy)Xavier Claessens2008-06-131-3/+1
* Fix identation (Alban Crequy)Xavier Claessens2008-06-131-1/+2
* g_object_unref after g_object_get (Alban Crequy)Xavier Claessens2008-06-131-0/+3
* Do not show the keypad when the media channel does not have the DTMF interfac...Xavier Claessens2008-06-131-0/+11
* Better dialog message when a call is rejected (Alban Crequy)Xavier Claessens2008-06-131-1/+5
* EmpathyCallWindow: Get a new video preview when pushing a new call into the w...Xavier Claessens2008-06-081-0/+6
* Set position/size of chat window only when adding the first chat. Fixes bug #...Xavier Claessens2008-06-081-14/+17
* Add -Wformat and and fix some compile warnings with gcc 4.3. Fixes bug #53712...Xavier Claessens2008-06-081-1/+2
* Close contact list when Escape is pressed. Fixes bug #536628 (Ross Burton).Xavier Claessens2008-06-081-1/+17
* Add a command line option to hide contact list on startup. Fixes bug #535080 ...Xavier Claessens2008-06-043-6/+16
* Only permit to have one running call at any time. Fixes bug #527970.Xavier Claessens2008-05-273-60/+31
* Add CLOEXEC flag on BaconMessageConnection FD. Fixes bug #533840.Xavier Claessens2008-05-241-3/+11
* Update BaconMessageConnection from libbacon SVNXavier Claessens2008-05-242-0/+16
* Fix warning in status iconXavier Claessens2008-05-231-1/+2
* Improve dispatcher. Fixes bug #465928.Xavier Claessens2008-05-185-118/+253
* Add a func to activate any eventXavier Claessens2008-05-141-15/+22
* Do not unref tp_chat directly in the message_received callback to avoid a crash.Xavier Claessens2008-05-091-1/+12
* Move non-gtk parts of EmpathyFilter to EmpathyDispatcher in libempathy, gtk p...Xavier Claessens2008-05-095-1094/+341
* Keep a priv pointer in the object struct instead of using G_TYPE_INSTANCE_GET...Xavier Claessens2008-05-066-38/+32
* Avoid copying chat list in chat_window_delete_event_cb.Xavier Claessens2008-05-051-11/+5
* Keypad is unsensitive if the call is not ACCEPTEDXavier Claessens2008-05-022-53/+58
* Implement DTMF.Xavier Claessens2008-05-021-0/+52
* Add keypad to the call window glade.Xavier Claessens2008-05-021-4/+223
* Fix packing of the preview video.Xavier Claessens2008-05-021-2/+4
* Make use of tp-glib debug system.Xavier Claessens2008-05-019-123/+114
* Add a confirmation dialog to accept/reject incoming calls. Do not show remote...Xavier Claessens2008-04-302-113/+113
* Fix type: s/hand up/hang up/Xavier Claessens2008-04-301-2/+2
* Fix stock ids marked for translation. Fixes bug #530090 (Gabor Kelemen).Xavier Claessens2008-04-292-6/+6
* Reword call window: Use GtkVolumeButton, only one button to accept/reject cal...Xavier Claessens2008-04-292-279/+146
* Correct spacing in some strings. Fix bug #529437 (Baptiste Mille-Mathias).Baptiste Mille-Mathias2008-04-272-2/+2
* Improve the close warning message. (Elliot Fairweather).Xavier Claessens2008-04-251-1/+1
* Create contact menu in empathy-contact-menu.hXavier Claessens2008-04-251-18/+9
* Setup contact submenu in chat window.Xavier Claessens2008-04-252-9/+21
* Remove useless declarationsXavier Claessens2008-04-251-4/+0
* Remove conditional build of VOIP.Xavier Claessens2008-04-241-10/+0
* Comply to HIG guidelines. Fixes bug #526926 (Elliot Fairweather, Xavier Claes...Xavier Claessens2008-04-231-3/+6
* Add man page for empathy and empathy-accounts. Fixes bug #529552 (Simon McVit...Xavier Claessens2008-04-233-0/+40
* Fix some warnings with roomlistXavier Claessens2008-04-231-3/+7
* Do not apply different theme to chat and chatroomsXavier Claessens2008-04-232-46/+0
* Make sure we don't assume Text channel's handle_type is != NONE.Xavier Claessens2008-04-232-9/+24
* Fix warning when changing send video button before accepting the call.EMPATHY_0_23_1Xavier Claessens2008-04-211-1/+4
* If window->call is NULL consider the call as CLOSEDXavier Claessens2008-04-211-2/+4
* Do not crash on if ListChannels failsXavier Claessens2008-04-211-0/+6
* Do not use service tube param as it can be anything with DTube. If the tube h...Xavier Claessens2008-04-201-62/+76
* initialize connection_statusFrederic Peters2008-04-201-1/+1
* keep track of connected status to disable menu item for "new conversation"Frederic Peters2008-04-201-0/+37
* Do not ask confirmation in empathy, that's the handler's responsability. Just...Xavier Claessens2008-04-201-34/+22
* Change message dialog type if the app is not installedXavier Claessens2008-04-201-3/+4
* Ask user confirmation before dispatching an incoming tubeXavier Claessens2008-04-201-60/+151
* Display error message when cannot create salut account.Xavier Claessens2008-04-201-2/+5
* Make possible to show "ghelp:" URIs and display a dialog in case of error in ...Xavier Claessens2008-04-202-2/+2
* Don't forget to give an initial value to GValue.Xavier Claessens2008-04-201-1/+1
* Advertise VoIP capabilities and disable VoIP if it's disabled at build time.Xavier Claessens2008-04-201-0/+49
* Fix litle bug in dispatcherXavier Claessens2008-04-201-1/+2
* Move tube chandler to EmpathyFilterXavier Claessens2008-04-205-274/+245
* Some code cleanupXavier Claessens2008-04-201-1/+4
* Change the way tube handler's object-path and bus-name are build.Xavier Claessens2008-04-201-19/+6
* Quit the tubes chandler when there is no more handled channelsXavier Claessens2008-04-201-1/+5
* Port the tubes chandler to the new API and cleanup the code.Xavier Claessens2008-04-201-127/+140
* Rename EmpathyTube to EmpathyTpTube and remove EmpathyTubes.Xavier Claessens2008-04-201-1/+2
* Build empathy-tubes-chandlerXavier Claessens2008-04-202-3/+5
* Add tubes handlerXavier Claessens2008-04-203-0/+266
* Already open channels are considered OUTGOING.Xavier Claessens2008-04-201-1/+1
* Make sure to not set a NULL title on the window.Xavier Claessens2008-04-201-3/+1
* Add event when a contact is local pending of a publish channelXavier Claessens2008-04-201-40/+103
* Drop Chandler and Filter, do not use MC for dispatching channels, do it ourself.Xavier Claessens2008-04-2010-776/+786
* Added a --no-connect option. Fixes: #526208. (Frederic Peters)Frederic Peters2008-04-191-2/+10
* Always set urgency hint on p2p chat windows when receiving a message.Xavier Claessens2008-04-181-2/+6
* Marked strings for translation. Fixes bug #528596 (Frederic Peters)Frederic Peters2008-04-181-4/+4
* Redirect debug messages after printing help. Fixes bug #528542 (Frederic Pete...Xavier Claessens2008-04-171-2/+2
* Fix crash in DND of chat tab.Xavier Claessens2008-04-171-15/+6
* Mute input/output if the button is not active.Xavier Claessens2008-04-161-2/+2
* Do not expand mute input/output button in the call window.Xavier Claessens2008-04-161-26/+30
* Add collabora in copyright and myself in authors since I did lots of changes ...Xavier Claessens2008-04-152-26/+32
* Update copyright year in .h too, it was done in .c only.Xavier Claessens2008-04-156-6/+6
* Code cleanupXavier Claessens2008-04-141-59/+41
* Various fixes for chatsXavier Claessens2008-04-141-79/+19
* Fix disconnection of AccountStatusChanged signal.Xavier Claessens2008-04-131-4/+3
* Hide sound preference since it's not supported yet. Fixes bug #479697 (Freder...Xavier Claessens2008-04-111-1/+1
* Fix some warningsXavier Claessens2008-04-112-2/+6
* Better call dialog. Fixes bug #527454 (Naba Kumar).Xavier Claessens2008-04-111-209/+186
* We can't use *_run_* API from dbus signal cb or method implementation. To avo...Xavier Claessens2008-04-111-3/+3
* Update for new API and cleanup the code.Xavier Claessens2008-04-112-245/+186
* Update for new APIXavier Claessens2008-04-113-101/+76
* Uncommend the use of empathy_contact_run_until_ready, it works nowXavier Claessens2008-04-111-2/+1
* Ask confirmation to close call only if it was accepted. Fixes bug #526927 (Fr...Xavier Claessens2008-04-091-1/+1
* Remove invisible_char property to let GTK use the default.Xavier Claessens2008-04-053-7/+0
* Enable setting input/output volumeXavier Claessens2008-04-051-5/+1
* Add missing glade fileXavier Claessens2008-04-041-0/+1
* Comment out a empathy_contact_run_until_ready call because it doesn't work.Xavier Claessens2008-04-031-1/+2
* Removed deleted headerXavier Claessens2008-04-031-1/+0
* Do not update the chat if the window doesn't exists anymore.Xavier Claessens2008-04-021-0/+3
* Redefine size_request and size_allocation on EmpathyChatClassXavier Claessens2008-04-021-1/+1
* Fix various warningsXavier Claessens2008-04-022-32/+40
* Fix separator in the glade and show the chat widget when adding on a windowXavier Claessens2008-04-022-3/+2
* Fix build errors EmpathyChatWindow, port to new API.Xavier Claessens2008-04-023-539/+275
* Fix load/save chat geometryXavier Claessens2008-04-022-48/+19
* Remove Room menu, chatrooms will be handled in a dedicated program.Xavier Claessens2008-04-021-93/+1
* Adapt to new apiXavier Claessens2008-04-021-1/+1
* Rework EmpathyChat's API, it is now a subclass of GtkBin.Xavier Claessens2008-04-022-17/+70
* Move window's glade to empathy-chat-window.glade. Reorder empathy-chat-window.cXavier Claessens2008-04-022-454/+810
* Add empathy_chat_new and don't use empathy_group/private_* in empathy.cXavier Claessens2008-04-021-24/+3
* Update status icon for new chat APIXavier Claessens2008-04-021-1/+1
* More coding styleXavier Claessens2008-03-231-19/+5
* Fix includesXavier Claessens2008-03-192-3/+4
* Hide unused functions with #if 0Xavier Claessens2008-03-191-70/+48
* Do not autoconnect if networkmanager says we are not connected at startup.Xavier Claessens2008-03-172-56/+66
* Use empathy_file_lookup for glade files since some are in libempathy-gtk/ and...Xavier Claessens2008-03-177-8/+30
* Fix includes of files that are now in src/. Fixes bug #522780.Xavier Claessens2008-03-172-4/+3
* Fix warning when showing about dialog from a chat windowXavier Claessens2008-03-161-1/+3
* Install glade files that got moved to src/Xavier Claessens2008-03-151-1/+11
* Move modules that make no sense to be used in other applicaton from libempath...Xavier Claessens2008-03-1426-8/+10044
* Move chat chandler into the same process than contact listXavier Claessens2008-03-144-162/+79
* Drop gnome-vfs dependency and use gio instead. Fixes bug #514380 (Cosimo Cecc...Xavier Claessens2008-03-112-5/+0
* Do not run multiple instances of empathy. Fixes bug #501805 (Marco Barisione).Xavier Claessens2008-03-094-1/+561
* Update collabora copyright to 2008Xavier Claessens2008-03-033-3/+3
* Fix typo in var name and don't link empathy-call-chandler on libemp-extension...Xavier Claessens2008-02-261-1/+0
* It's now safe to call emp_cli_init multiple times. Move that call to empathy_...Xavier Claessens2008-02-261-2/+0
* Make use of generated code for using stream engine.Xavier Claessens2008-02-262-0/+3