Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Only decrement unread_messages if it's not an edited message | Danielle Madeley | 2011-06-14 | 1 | -2/+4 |
| | | | | Prevents ending up with message counts of -1 | ||||
* | Use an enum instead of the value type to determine what kind of object it is | Danielle Madeley | 2011-06-14 | 1 | -20/+57 |
| | |||||
* | Reset the chat state after receiving an edited message | Danielle Madeley | 2011-06-14 | 1 | -12/+9 |
| | |||||
* | Replace tpl_text_event_dup_supersedes() with synthetic message | Danielle Madeley | 2011-06-14 | 1 | -18/+24 |
| | | | | | This allows us to handle the case where we get b-supersedes-a, but we've lost the original message a. | ||||
* | Set the edited icon for edited messages in the log viewer | Danielle Madeley | 2011-06-14 | 1 | -1/+8 |
| | |||||
* | Get the original message from the logger so we can supersede it | Danielle Madeley | 2011-06-14 | 1 | -1/+22 |
| | | | | | | | Strictly, we don't need to do this, we could just use the supersedes-token as the message-token and we'd still be able to edit the messages in the future, but this way we get the nice pretty annotation saying that we edited it and when. | ||||
* | Add an icon to edited messages | Danielle Madeley | 2011-06-14 | 2 | -0/+30 |
| | | | | | | | Currently this is using "format-text-direction-ltr" which is a crappy choice. We should ask for a better icon. Also, this should really be implemented as a class, so that the icon can change with the theme. Or be made part of the Adium theme, or something. Basically this is kludgey. | ||||
* | Add a tooltip saying when the message was edited | Danielle Madeley | 2011-06-14 | 1 | -0/+14 |
| | |||||
* | [theme-adium] implement edit_message() | Danielle Madeley | 2011-06-14 | 1 | -2/+66 |
| | | | | | | | | | | | | | This is done via DOM manipulation, we find the id for the <span> tag we wrapped the message in in the previous commit. We then replace the innerHTML with the new message. This requires a version of WebKitGtk 1.3.x, but I'm not precisely sure what. I used WebKitGtk 1.4.0, but natty only has 1.3.13, so we'll try setting that as the dep. Need to somehow mark a message as edited. Could set a class on it, but that requires support in the theme. Need inspiration here. | ||||
* | [theme-adium] wrap the messages in <span id=...> so we can find them again | Danielle Madeley | 2011-06-12 | 1 | -4/+16 |
| | | | | This will enable our DOM manipulation | ||||
* | Pass edited messages through to the ChatView | Danielle Madeley | 2011-06-12 | 1 | -15/+28 |
| | |||||
* | Add edit_message() method to ChatView iface | Danielle Madeley | 2011-06-12 | 2 | -0/+16 |
| | |||||
* | Cope with tpl_event_get_receiver() returning NULL | Emilio Pozuelo Monfort | 2011-06-10 | 1 | -0/+3 |
| | |||||
* | Rationalize use of EMPATHY_IMAGE_CALL_* images (#652270) | Guillaume Desmottes | 2011-06-10 | 2 | -6/+7 |
| | | | | | | We now always use call-start for incoming and outgoing calls and call-stop for missed ones. Ideally it would be cool to have different icons for incoming and outgoing but that will do for now. | ||||
* | Merge branch 'new-log-window' | Emilio Pozuelo Monfort | 2011-06-10 | 6 | -1382/+3012 |
|\ | |||||
| * | Don't unref NULL pointers | Emilio Pozuelo Monfort | 2011-06-10 | 1 | -1/+1 |
| | | | | | | | | | | | | log_window_got_messages_for_date_cb() can return NULL for unknown event types, so don't unref the result in those cases. | ||||
| * | Don't require telepathy-logger with --enable-call | Emilio Pozuelo Monfort | 2011-06-10 | 1 | -3/+20 |
| | | | | | | | | | | Having it is required for displaying call events in the history window though. | ||||
| * | Update empathy-log-window.ui for GTK+ 3 | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -18/+64 |
| | | |||||
| * | Fix typo | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+1 |
| | | |||||
| * | Remove unused variables | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -4/+0 |
| | | |||||
| * | Use some markup to make the logs more readable | Danielle Madeley | 2011-06-09 | 1 | -5/+7 |
| | | | | | | | | | | Emotes are in italics. Sender's names are in bold. Mark emotes for translation since we've done that for messages. | ||||
| * | Don't allow interactive searching on the log pane | Danielle Madeley | 2011-06-09 | 1 | -0/+2 |
| | | |||||
| * | Remove unrequired COL_WHAT_EXPANDER | Danielle Madeley | 2011-06-09 | 1 | -3/+1 |
| | | |||||
| * | [log-viewer] set search columns | Danielle Madeley | 2011-06-09 | 1 | -0/+5 |
| | | |||||
| * | log_window_chats_set_selected: only act on normal rows | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+5 |
| | | |||||
| * | LogWindow: Don't cut the log messages | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+0 |
| | | |||||
| * | LogWindow: better logic for the buttons sensitivity | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -12/+55 |
| | | |||||
| * | LogWindow: don't crash if closed while retrieving logs | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+4 |
| | | |||||
| * | Show an spinner while logs are being retrieved | Emilio Pozuelo Monfort | 2011-06-09 | 2 | -4/+103 |
| | | |||||
| * | LogWindow: scroll the events view to the end | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+17 |
| | | | | | | | | Where newest messages are. | ||||
| * | LogWindow: select the first normal date by default | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+3 |
| | | |||||
| * | LogWindow: set 'All accounts' by default | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+1 |
| | | |||||
| * | Add empathy_account_chooser_set_all | Emilio Pozuelo Monfort | 2011-06-09 | 2 | -0/+25 |
| | | |||||
| * | Display date and time in the event treeview | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -3/+6 |
| | | |||||
| * | Make the three panes a bit taller by default | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+1 |
| | | |||||
| * | Add a clear icon to the search entry | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+23 |
| | | |||||
| * | Don't use global variables | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -12/+13 |
| | | |||||
| * | Fix buttons to work again with multiselection | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -35/+48 |
| | | |||||
| * | Use a define instead of hardcoding a magic number | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+4 |
| | | |||||
| * | Use a for instead of a do while to avoid returning early | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -5/+4 |
| | | | | | | | | So we always free the stuff at the end of the function. | ||||
| * | Don't leak the account and entity | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -3/+6 |
| | | |||||
| * | Don't leak paths | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+1 |
| | | |||||
| * | Compare against NULL | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+2 |
| | | |||||
| * | Be neutral | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+1 |
| | | |||||
| * | Style: use braces consistently | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -11/+31 |
| | | |||||
| * | Return early if the iter isn't a top level | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -6/+7 |
| | | |||||
| * | Use a macro for magic numbers | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+4 |
| | | |||||
| * | Don't leak the account and entity | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -6/+9 |
| | | |||||
| * | Use tp_clear_pointer | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+1 |
| | | |||||
| * | LogWindow: group MUC events properly | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+30 |
| | | |||||
| * | LogWindow: check the 30min gap with the last message | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+8 |
| | | |||||
| * | LogWindow: find the corrent parent for chat events | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+6 |
| | | |||||
| * | LogWindow: Display /me messages properly | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -4/+14 |
| | | |||||
| * | make check fixes | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+1 |
| | | |||||
| * | Remove more dead code | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -6/+0 |
| | | |||||
| * | Use a do while instead of a for loop where appropriate | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+2 |
| | | |||||
| * | Remove dead code | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -3/+0 |
| | | |||||
| * | Fix comment | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -3/+2 |
| | | |||||
| * | Remove stray print statements | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -6/+4 |
| | | |||||
| * | Remove dead code | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -30/+0 |
| | | |||||
| * | LogWindow: don't add duplicate dates | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -11/+15 |
| | | |||||
| * | LogWindow: add 'Anyone' to search results | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -3/+1 |
| | | |||||
| * | LogWindow: select 'Anytime' by default when searching | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+4 |
| | | |||||
| * | Block the callback when clearing the store | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+9 |
| | | |||||
| * | Switch remaining functions to the new style | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -218/+238 |
| | | |||||
| * | LogWindow: Add live search support | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -3/+12 |
| | | |||||
| * | LogWindow: Show dates properly | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -8/+46 |
| | | |||||
| * | LogWindow: Add multiselection to the 'When' pane | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -50/+93 |
| | | |||||
| * | Stop processing logger calls when unneeded | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -8/+36 |
| | | |||||
| * | Populate from 'Anyone' when changing the account | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -4/+19 |
| | | |||||
| * | Make 'Anyone' work | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -4/+44 |
| | | |||||
| * | LogWindow: Add multiselection to the 'Who' pane | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -95/+195 |
| | | |||||
| * | LogWindow: Add multiselection to the 'What' pane | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -4/+41 |
| | | |||||
| * | log_window_chats_get_selected -> log_window_get_selected | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -5/+5 |
| | | |||||
| * | Don't free an uninitialized variable | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -2/+5 |
| | | |||||
| * | LogWindow: convert the event view to a treeview | Emilio Pozuelo Monfort | 2011-06-09 | 2 | -40/+366 |
| | | | | | | | | Following the design. | ||||
| * | Add icons for missed/incoming/outgoing calls | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+4 |
| | | |||||
| * | Adapt to the empathy-dispatcher removal | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+2 |
| | | |||||
| * | Complete rewrite of the history window | Emilio Pozuelo Monfort | 2011-06-09 | 3 | -1284/+1855 |
| | | | | | | | | | | | | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=619866 Conflicts: libempathy-gtk/empathy-log-window.c libempathy-gtk/empathy-log-window.ui | ||||
| * | account_chooser_find_account_foreach: check the col type | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+8 |
| | | | | | | | | As non ROW_ACCOUNT rows don't have an account. | ||||
| * | AccountChooser: add empathy_account_chooser_get_account_manager() | Emilio Pozuelo Monfort | 2011-06-09 | 2 | -1/+10 |
| | | |||||
| * | AccountChooser: All -> All accounts | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+1 |
| | | |||||
| * | Add a empathy_account_chooser_has_all_selected | Emilio Pozuelo Monfort | 2011-06-09 | 2 | -0/+25 |
| | | | | | | | | So we can know if 'All' is selected in the accounts chooser. | ||||
* | | empathy_individual_match_string: match if the string IS a prefix | Guillaume Desmottes | 2011-06-09 | 1 | -1/+1 |
|/ | |||||
* | Merge branch 'call' | Emilio Pozuelo Monfort | 2011-06-09 | 6 | -49/+262 |
|\ | |||||
| * | Build fix | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+1 |
| | | |||||
| * | Check for TP_ERROR_EMERGENCY_CALLS_NOT_SUPPORTED when a call fails | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -0/+2 |
| | | |||||
| * | Return meaningful errors when starting a call fails | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+22 |
| | | |||||
| * | empathy_call_new_with_streams: prefer StreamedMedia over Call | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -15/+15 |
| | | | | | | | | | | | | Conflicts: libempathy-gtk/empathy-call-utils.c | ||||
| * | Always build telepathy-yell and handle Call channels | Emilio Pozuelo Monfort | 2011-06-09 | 2 | -32/+2 |
| | | | | | | | | | | | | | | | | | | Just keep empathy-call optional. Conflicts: libempathy-gtk/empathy-call-utils.c libempathy/empathy-channel-factory.c | ||||
| * | Show an error dialog if starting a call fails | Emilio Pozuelo Monfort | 2011-06-09 | 1 | -1/+25 |
| | | |||||
| * | Don't require EmpathyContacts to start a call | Emilio Pozuelo Monfort | 2011-06-09 | 5 | -62/+26 |
| | | | | | | | | | | | | | | | | Conflicts: libempathy-gtk/empathy-contact-menu.c libempathy-gtk/empathy-individual-menu.c libempathy-gtk/empathy-new-call-dialog.c | ||||
| * | Move empathy_call_* util functions to libempathy-gtk | Emilio Pozuelo Monfort | 2011-06-09 | 6 | -0/+225 |
| | | | | | | | | | | | | | | | | Since we want to pop up a dialog when starting a call fails. Conflicts: libempathy/empathy-utils.c | ||||
| * | NewCallDialog: support Calls | Emilio Pozuelo Monfort | 2011-06-08 | 2 | -36/+43 |
| | | | | | | | | | | | | | | Conflicts: libempathy-gtk/Makefile.am libempathy-gtk/empathy-new-call-dialog.c | ||||
* | | Merge branch 'sms-651242' | Guillaume Desmottes | 2011-06-08 | 1 | -2/+3 |
|\ \ | |||||
| * | | Use tp-glib SMS high level API (#651242) | Guillaume Desmottes | 2011-06-01 | 1 | -2/+3 |
| | | | |||||
* | | | add an optional dep on geocode-glib | Guillaume Desmottes | 2011-06-08 | 1 | -0/+2 |
| | | | |||||
* | | | individual-view: always display individuals having pending events (#651913) | Guillaume Desmottes | 2011-06-08 | 1 | -3/+11 |
| | | | |||||
* | | | individual-store: keep track of the number of events associated with each row | Guillaume Desmottes | 2011-06-08 | 2 | -0/+2 |
| |/ |/| | |||||
* | | Adium: Let user select theme variant in preferences | Xavier Claessens | 2011-06-07 | 3 | -151/+272 |
| | | | | | | | | Fixes bug #585474 | ||||
* | | account-widget: use tp_g_signal_connect_object to connect on the ↵ | Guillaume Desmottes | 2011-06-07 | 1 | -2/+2 |
| | | | | | | | | | | | | password-retrieved signal (#652015) Thanks to Roland Dreier for the original patch. | ||||
* | | Only retrieve server-stored groups for Individuals with TpContacts. | Travis Reitter | 2011-06-07 | 1 | -12/+13 |
| | | | | | | | | Helps: bgo#648822 - Port Empathy to Folks 0.5.1 | ||||
* | | Adapt to API change in FolksIndividual::personas-changed. | Travis Reitter | 2011-06-07 | 2 | -15/+52 |
| | | | | | | | | Helps: bgo#648822 - Port Empathy to Folks 0.5.1 | ||||
* | | Adapt to API change in folks_group_details_get_groups(). | Travis Reitter | 2011-06-07 | 2 | -10/+18 |
| | | | | | | | | Helps: bgo#648822 - Port Empathy to Folks 0.5.1 | ||||
* | | Adapt to API break in folks_individual_get_personas. | Travis Reitter | 2011-06-07 | 11 | -243/+432 |
| | | | | | | | | Helps: bgo#648822 - Port Empathy to Folks 0.5.1 | ||||
* | | Don't conflate TpfPersona and FolksPersona. | Travis Reitter | 2011-06-07 | 2 | -9/+9 |
| | | |||||
* | | Don't shadow the global definition of 'log'. | Travis Reitter | 2011-06-07 | 1 | -3/+3 |
| | | |||||
* | | export individual_store_add_individual_and_connect and ↵ | Guillaume Desmottes | 2011-06-01 | 2 | -2/+9 |
|/ | | | | individual_store_remove_individual_and_disconnect | ||||
* | empathy_avatar_new: stop stealing strings (#650939) | Guillaume Desmottes | 2011-06-01 | 1 | -11/+13 |
| | | | | It was pretty confusing when reading/reviewing code. | ||||
* | remove useless callback | Guillaume Desmottes | 2011-06-01 | 1 | -11/+0 |
| | |||||
* | avatar-chooser: replace finalize by dispose | Guillaume Desmottes | 2011-06-01 | 1 | -6/+4 |
| | | | | It just unref objects. | ||||
* | avatar-chooser: port to TP coding style | Guillaume Desmottes | 2011-06-01 | 2 | -837/+899 |
| | | | | We just changed most of this file so while we're on it... | ||||
* | re-order functions so we can get rid of their declarations | Guillaume Desmottes | 2011-06-01 | 1 | -276/+240 |
| | |||||
* | avatar-chooser: use tp_clear_* | Guillaume Desmottes | 2011-06-01 | 1 | -15/+5 |
| | |||||
* | avatar-chooser: use the self->priv pattern | Guillaume Desmottes | 2011-06-01 | 2 | -126/+110 |
| | |||||
* | allow user to search for contacts using their full identifier | Guillaume Desmottes | 2011-06-01 | 3 | -3/+16 |
| | |||||
* | empathy_individual_view_get_individual_menu: don't create a menu if we don't ↵ | Guillaume Desmottes | 2011-06-01 | 1 | -0/+4 |
| | | | | | | want any feature Fix an assertion error when right clicking in the 'Invite contact' treeview. | ||||
* | Merge branch 'speedup-protocol-chooser' | Sjoerd Simons | 2011-06-01 | 2 | -8/+9 |
|\ | |||||
| * | Use pixbuf for PixbufCellRenderer in protocol chooser | Sjoerd Simons | 2011-05-30 | 1 | -4/+9 |
| | | | | | | | | | | | | | | | | | | | | If an icon-name is given to a PixbufCellRenderer it will re-load the image from the icon theme every time the size gets requested for a different cell. Which happens a *LOT*. Instead load the icon the row is added to the model, such that the cell renderer can simply request the size of the pixbuf. This massive speeds up the performance of the protocol chooser combobox. | ||||
| * | Don't set priv when it's not used | Sjoerd Simons | 2011-05-29 | 1 | -4/+0 |
| | | |||||
* | | factor out empathy_individual_match_words() | Guillaume Desmottes | 2011-05-31 | 3 | -32/+48 |
| | | |||||
* | | live-search: export few more functions | Guillaume Desmottes | 2011-05-31 | 2 | -8/+22 |
| | | |||||
* | | add empathy_individual_view_refilter() | Guillaume Desmottes | 2011-05-31 | 2 | -0/+10 |
| | | |||||
* | | Chatrooms: Make text input view sensitive on successful password entry | Chandni Verma | 2011-05-30 | 1 | -0/+1 |
|/ | | | | Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=651058 | ||||
* | don't build avatar_chooser_set_avatar_from_pixbuf if building without cheese | Guillaume Desmottes | 2011-05-27 | 1 | -1/+2 |
| | |||||
* | Adium: Convert NSDateFormatter to strftime | Xavier Claessens | 2011-05-27 | 1 | -6/+149 |
| | |||||
* | Stop live search when main window gets hidden | Xavier Claessens | 2011-05-26 | 1 | -3/+8 |
| | |||||
* | Stop dealing with iconification of main window, just hide/present it | Xavier Claessens | 2011-05-26 | 2 | -56/+0 |
| | | | | | It does not work with gnome-shell, unity and indicators anyway, so it is just complex code for no benefit anymore. | ||||
* | libempathy-gtk: avatar chooser from cheese (#521747) | Raluca Elena Podiuc | 2011-05-26 | 1 | -7/+98 |
| | | | | pixbuf saved into buffer as png -> set avatar from buffer | ||||
* | libempathy-gtk: add dependency on libcheese | Raluca Elena Podiuc | 2011-05-26 | 1 | -0/+2 |
| | |||||
* | use tp_text_channel_set_chat_state_async() directly | Guillaume Desmottes | 2011-05-25 | 1 | -6/+31 |
| | |||||
* | EmpathyTpChat: get rid of the destroy signal | Guillaume Desmottes | 2011-05-25 | 1 | -6/+9 |
| | | | | We should just use invalidated. | ||||
* | remove empathy_tp_chat_get_connection and priv->connection | Guillaume Desmottes | 2011-05-25 | 1 | -3/+2 |
| | |||||
* | EmpathyTpChat: inherit from TpTextChannel (#650554) | Guillaume Desmottes | 2011-05-25 | 2 | -22/+7 |
| | |||||
* | rename message-received signal to message-received-empathy | Guillaume Desmottes | 2011-05-25 | 1 | -1/+1 |
| | |||||
* | tp-chat: rename chat-state-changed to chat-state-changed-empathy | Guillaume Desmottes | 2011-05-25 | 1 | -1/+1 |
| | | | | chat-state-changed already exists in TpChannel and we can't redefine it. | ||||
* | cell-renderer-expander: fix rendering with GTK+3 | Cosimo Cecchi | 2011-05-23 | 1 | -2/+8 |
| | | | | | | | | | | | | There are basically three issues here: - the renderer doesn't add the GTK_STYLE_CLASS_EXPANDER style class when rendering, which blocks the theme to apply the intended colors. - the GtkStateFlags that were set on the context were using GTK_STATE_* instead of GTK_STATE_FLAG_* - the flags set on the context were incomplete, as they were just using ACTIVE/NORMAL for expanded/collapsed and not SELECTED/FOCUSED/... https://bugzilla.gnome.org/show_bug.cgi?id=650590 | ||||
* | account-widget-yahoo: fix expand/fill settings (#650854) | Guillaume Desmottes | 2011-05-23 | 1 | -2/+6 |
| | |||||
* | account-widget-sip: fix expand/fill settings (#650854) | Guillaume Desmottes | 2011-05-23 | 1 | -0/+6 |
| | |||||
* | account-widget-icq: fix expand/fill settings (#650854) | Guillaume Desmottes | 2011-05-23 | 1 | -0/+4 |
| | |||||
* | account-widget-groupwise: fix expand/fill settings (#650854) | Guillaume Desmottes | 2011-05-23 | 1 | -0/+6 |
| | |||||
* | account-widget-aim: fix expand/fill settings (#650854) | Guillaume Desmottes | 2011-05-23 | 1 | -0/+4 |
| | |||||
* | account-widget-msn: fix expand/fill settings (#650854) | Guillaume Desmottes | 2011-05-23 | 1 | -2/+8 |
| | |||||
* | empathy_account_widget_setup_widget: unsensitive unsupported param (#650846) | Guillaume Desmottes | 2011-05-23 | 1 | -0/+3 |
| | |||||
* | account-widget-sip: add ignore-tls-errors param (#650844) | Guillaume Desmottes | 2011-05-23 | 2 | -0/+21 |
| | |||||
* | live-search: fix keyboard navigation using Space (#632787) | Guillaume Desmottes | 2011-05-20 | 1 | -5/+7 |
| | |||||
* | live-search:fix keyboard navigation using PageUp/PageDown (#632787) | Guillaume Desmottes | 2011-05-20 | 1 | -4/+7 |
| | |||||
* | live-search: fix keyboard navigation using Home/End (#632787) | Guillaume Desmottes | 2011-05-20 | 1 | -0/+18 |
| | |||||
* | factor out fire_key_navigation_sig() | Guillaume Desmottes | 2011-05-20 | 1 | -3/+11 |
| | |||||
* | Always forward to the view keynav events, since we get them only if they are ↵ | Xavier Claessens | 2011-05-20 | 2 | -22/+12 |
| | | | | useless to the entry anyway | ||||
* | LiveSearch: we don't want to emit keynav signal on left/right since those ↵ | Xavier Claessens | 2011-05-20 | 1 | -2/+1 |
| | | | | are useful to the entry | ||||
* | individual-view: add API to define our own filter function | Guillaume Desmottes | 2011-05-18 | 2 | -0/+21 |
| | |||||
* | Merge branch 'remember-my-message-yo' | Jonny Lamb | 2011-05-18 | 2 | -0/+27 |
|\ | |||||
| * | chat: rename get to dup | Jonny Lamb | 2011-05-18 | 2 | -2/+2 |
| | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | chat: add {get,set}_text methods | Jonny Lamb | 2011-05-16 | 2 | -0/+27 |
| | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
* | | Merge branch 'ack' | Jonny Lamb | 2011-05-17 | 4 | -32/+189 |
|\ \ | |||||
| * | | adium: set has_unread_message to FALSE when we think we've cleared them all | Jonny Lamb | 2011-05-17 | 1 | -0/+2 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | adium: add comment explaining why we add x-empathy-mesage-id-* | Jonny Lamb | 2011-05-13 | 1 | -1/+5 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | tp-chat: rename signal to message-acknowledged | Jonny Lamb | 2011-05-13 | 1 | -6/+6 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | chat: ::notify for all changes to unread messages | Jonny Lamb | 2011-05-13 | 1 | -0/+1 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | chat: call acknowledge_message on the chat view when it happens | Jonny Lamb | 2011-05-13 | 1 | -0/+3 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | adium: implement acknowledge_message to remove unread marker | Jonny Lamb | 2011-05-13 | 1 | -2/+86 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | chat: don't toggle visibility of the chat view on marking messages read | Jonny Lamb | 2011-05-13 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | It doesn't make sense, and it's a lie. It will also break showing unread message markers in the adium chat view. Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | chat-view: add message_acknowledged vfunc | Jonny Lamb | 2011-05-13 | 2 | -0/+15 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | tp-chat: give ::pending-message-removed the message | Jonny Lamb | 2011-05-13 | 1 | -0/+1 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | adium: split removing unread markers into two functions | Jonny Lamb | 2011-05-13 | 1 | -26/+34 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | adium: set x-empathy-message-id class in messageStyles | Jonny Lamb | 2011-05-13 | 1 | -0/+11 |
| | | | | | | | | | | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
| * | | chat: make nb_unread_messages incoming only | Jonny Lamb | 2011-05-13 | 1 | -2/+32 |
| | | | | | | | | | | | | | | | | | | and add a property so it can have change notification. Signed-off-by: Jonny Lamb <jonnylamb@gnome.org> | ||||
* | | | Merge branch 'more-contact-info' | Will Thompson | 2011-05-16 | 2 | -10/+231 |
|\ \ \ | |_|/ |/| | | |||||
| * | | Add a /whois command. | Will Thompson | 2011-05-16 | 1 | -0/+82 |
| | | | | | | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=571631 | ||||
| * | | ContactWidget: expose IRC presence information | Will Thompson | 2011-05-16 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | This is basically just a temporary hack until Idle implements SimplePresence. | ||||
| * | | ContactWidget: support IRC server and host info | Will Thompson | 2011-05-16 | 1 | -0/+14 |
| | | | |||||
| * | | ContactWidget: support Idle's x-idle-time field. | Will Thompson | 2011-05-16 | 1 | -0/+19 |
| | | | |||||
| * | | ContactWidget: generalize linkifying values | Will Thompson | 2011-05-16 | 1 | -11/+29 |
| | | | | | | | | | | | | | | | | | | | | | Many of the new fields exposed by Idle need more processing than just bunging the first string into a label. Let's start by generalizing linkifying the first string. I speculatively allow the format functions to fail. | ||||
| * | | ContactWidget: show IRC channel list. | Will Thompson | 2011-05-16 | 1 | -0/+74 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Very recent versions of Idle expose the list of channels provided in WHOIS replies. The data is provided as a bunch of x-irc-channel fields with a single value, namely the name of the channel. Here we expose that data to the user as a comma-separated list of links; clicking a link ensures that channel. https://bugzilla.gnome.org/show_bug.cgi?id=592795 | ||||
* | | | Merge remote-tracking branch ↵ | Guillaume Desmottes | 2011-05-13 | 2 | -30/+31 |
|\ \ \ | |/ / |/| | | | | | 'glassrose/moving-part-functionality-to-empathy-chat-window-643295' | ||||
| * | | Password infobar amendments | Chandni Verma | 2011-05-11 | 1 | -0/+19 |
| | | | | | | | | | | | | | | | Destroy password infobar on parting password protected chatrooms and insensitivate input-text-view when displaying a new infobar | ||||
| * | | Fire a "part-command-entered" signal from libempathy-gtk/empathy-chat.c to ↵ | Chandni Verma | 2011-05-07 | 2 | -30/+12 |
| | | | | | | | | | | | | | | | | | | be caught in src/empathy-chat-window.c Fixes linking issues: https://bugzilla.gnome.org/show_bug.cgi?id=643295 | ||||
* | | | Properly convert timestamps received from X11 (#650015) | Guillaume Desmottes | 2011-05-12 | 6 | -14/+14 |
| | | | | | | | | | | | | | | | X11 timestamps are guint32 while Telepathy uses gint64 timestamps. We should always use tp_user_action_time_from_x11() to do the conversion. | ||||
* | | | add empathy_get_current_action_time() | Guillaume Desmottes | 2011-05-12 | 2 | -0/+8 |
| |/ |/| | |||||
* | | theme_adium_remove_focus_marks: early return if there is no unread message | Guillaume Desmottes | 2011-05-11 | 1 | -4/+7 |
| | | |||||
* | | theme-adium: remove unread marks when sending a message | Guillaume Desmottes | 2011-05-11 | 1 | -0/+3 |
| | | |||||
* | | theme-adium: remove focus marks as soon as the chat is not focused (#649890) | Guillaume Desmottes | 2011-05-11 | 1 | -4/+4 |
| | | |||||
* | | add translators comment explaining the insufficient balance error (#649735) | Guillaume Desmottes | 2011-05-09 | 1 | -0/+2 |
| | | |||||
* | | Include gi18n-lib.h in library sources, not gi18n.h. | Gabor Kelemen | 2011-05-05 | 5 | -5/+7 |
| | | | | | | | | Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=649379 | ||||
* | | Adium: Fix wrong html fallbacks | Xavier Claessens | 2011-05-05 | 1 | -208/+131 |
| | | | | | | | | | | Fallbacks are actually more complex than I though. This is exactly how adium does the fallbacks | ||||
* | | Merge branch 'delivery-reports-rebase' | Danielle Madeley | 2011-05-05 | 2 | -21/+77 |
|\ \ | |||||
| * | | [chat] expose this property in EmpathyChat | Danielle Madeley | 2011-05-05 | 2 | -0/+46 |
| | | | |||||
| * | | Use dbus-error from delivery report for better errors | Danielle Madeley | 2011-05-05 | 1 | -21/+31 |
| | | | |||||
* | | | fix unused-but-set-variable warnings | Marc Plano-Lesay | 2011-05-05 | 2 | -15/+2 |
| | | | |||||
* | | | Merge branch 'sms-support-rebase' | Danielle Madeley | 2011-05-05 | 7 | -13/+254 |
|\| | | |||||
| * | | Only set the SMS button sensitive if we have SMS capability | Danielle Madeley | 2011-05-05 | 1 | -2/+63 |
| | | | |||||
| * | | contact-selector-dialog: add a selected-account property | Danielle Madeley | 2011-05-05 | 1 | -1/+24 |
| | | | |||||
| * | | Add an SMS button to the new-message dialog | Danielle Madeley | 2011-05-05 | 1 | -4/+39 |
| | | | |||||
| * | | Add "(SMS)" to the tab name for SMS channels | Danielle Madeley | 2011-05-05 | 1 | -1/+10 |
| | | | |||||
| * | | Change empathy_chat_get_name() from const char * -> char * | Danielle Madeley | 2011-05-05 | 2 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | | Change the name to empathy_chat_dup_name() to reflect this change. Note to reviewer: I think I've updated all the callers, but this is the commit to check carefully for new leaks :) | ||||
| * | | Add sms-channel property to empathy-chat | Danielle Madeley | 2011-05-05 | 2 | -2/+46 |
| | | | |||||
| * | | Move the code ensuring a requested sms channel to empathy-request-util | Chandni Verma | 2011-05-05 | 1 | -1/+1 |
| | | | | | | | | | | | | as empathy-dispatcher has been deleted in master | ||||
| * | | Add SMS entry to empathy-individual-menu | Danielle Madeley | 2011-05-05 | 3 | -1/+70 |
| |/ | |||||
* | | Adium: Correctly support action messages (/me) | Xavier Claessens | 2011-05-04 | 1 | -7/+15 |
| | | | | | | | | Fixes bug #649367 | ||||
* | | Adium: Fix selection of default variant | Xavier Claessens | 2011-05-04 | 2 | -53/+166 |
| | | | | | | | | | | | | | | | | | | | | For theme version >= 3, a variant CSS is mandatory. If none are set inf DefaultVariant, the first one from Variant/ should be used. For theme version <= 2, a variant CSS is optional, and by default they should not have one. If no variant is selected, fallback to main.css. This also prepare needed API to select other variants | ||||
* | | ThemeManager: Make sure to emit theme-changed only once when the theme changed | Xavier Claessens | 2011-05-03 | 1 | -10/+79 |
| | | | | | | | | | | Also avoid emiting the signal if it is just a variant change that can be applied on view. | ||||
* | | Adium: Also queue events when loading the page | Xavier Claessens | 2011-05-03 | 1 | -11/+21 |
| | | |||||
* | | Adium: Events must be queued until the Template.html loaded | Xavier Claessens | 2011-05-03 | 1 | -0/+7 |
| | | |||||
* | | Adium: Mark autoreply message | Xavier Claessens | 2011-05-03 | 1 | -2/+3 |
| | | |||||
* | | Adium: highlight messages starting with our name | Xavier Claessens | 2011-05-03 | 1 | -3/+3 |
| | | |||||
* | | Fix crash if contact_id is NULL when selecting its color | Xavier Claessens | 2011-05-03 | 1 | -3/+4 |
| | | |||||
* | | Adium: Temporally disable scrolling when appending backlog | Xavier Claessens | 2011-05-02 | 1 | -5/+11 |
| | | |||||
* | | coding style fix | Guillaume Desmottes | 2011-05-02 | 1 | -1/+1 |
| | | |||||
* | | theme-adium: implement %senderColor% (#541632) | Guillaume Desmottes | 2011-05-02 | 1 | -2/+31 |
| | | |||||
* | | Support new themes that have only Resources/Content.html | Xavier Claessens | 2011-05-02 | 1 | -39/+81 |
| | | | | | | | | Still fallback to legacy html files if global one is missing. | ||||
* | | Fix a crash if replacement is NULL | Xavier Claessens | 2011-05-02 | 1 | -2/+2 |
| | | |||||
* | | individual_store_get_individual_status_icon_with_icon_name: look in the ↵ | Guillaume Desmottes | 2011-05-02 | 1 | -1/+6 |
| | | | | | | | | cache before creating new pixbuf | ||||
* | | Display favorite offline contacts only in the Favorite group (#648914) | Guillaume Desmottes | 2011-05-02 | 1 | -5/+48 |
|/ | |||||
* | Use focus feature of adium themes | Xavier Claessens | 2011-04-27 | 4 | -6/+118 |
| | |||||
* | Add FIXMEs for things we don't implement yet from adium theme spec | Xavier Claessens | 2011-04-27 | 1 | -39/+123 |
| | | | | | This also replaces well known keywords that we don't implement yet by "", otherwise the html is broken and webkit does not render it correctly. | ||||
* | contact_list_store_chat_state_changed_cb(): tidy | Will Thompson | 2011-04-25 | 1 | -6/+4 |
| | | | | | | This doesn't fix bgo#647891, but I think it makes the loop clearer. Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | ||||
* | account-widget: remove all the code related to the enabled checkbox | Guillaume Desmottes | 2011-04-21 | 1 | -156/+2 |
| | |||||
* | Remove enabled toggle from account-widget | Danielle Madeley | 2011-04-21 | 1 | -0/+4 |
| | |||||
* | location-manager: use tp_asv_* | Guillaume Desmottes | 2011-04-20 | 1 | -19/+10 |
| | |||||
* | location-manager: use the self->priv pattern | Guillaume Desmottes | 2011-04-20 | 2 | -103/+94 |
| | |||||
* | location-manager: remove useless propety getter and setter | Guillaume Desmottes | 2011-04-20 | 1 | -34/+0 |
| | |||||
* | location_manager_dispose: use tp_clear_* | Guillaume Desmottes | 2011-04-20 | 1 | -35/+6 |
| | |||||
* | Merge branch 'timestamp-648188' | Guillaume Desmottes | 2011-04-20 | 8 | -57/+53 |
|\ | |||||
| * | chat_text_view_append_timestamp: use empathy_time_to_string_utc() | Guillaume Desmottes | 2011-04-19 | 1 | -5/+1 |
| | | |||||
| * | Port all timestamps from time_t to gint64 (#648188) | Guillaume Desmottes | 2011-04-19 | 7 | -45/+37 |
| | | |||||
| * | use tp_text_channel_send_message_async() | Guillaume Desmottes | 2011-04-18 | 1 | -8/+11 |
| | | |||||
| * | chat_send_error_cb: don't display the message if it's NULL | Guillaume Desmottes | 2011-04-18 | 1 | -3/+8 |
| | | |||||
* | | Bug 647056 — Removing a contact causes a segfault | Philip Withnall | 2011-04-18 | 1 | -1/+0 |
|/ | | | | | | Fix a double unref which was causing segfaults when removing contacts. Closes: bgo#647056 | ||||
* | Add translation context on some strings (#646131) | Guillaume Desmottes | 2011-04-18 | 1 | -1/+1 |
| | |||||
* | Base the search bar on GtkToolbar instead of GtkHBox in order not to resize ↵ | Vitaly Minko | 2011-04-07 | 2 | -75/+119 |
| | | | | the chat window when we activate it (#614319). | ||||
* | log_manager_got_entities_cb: don't use the currently selected account | Guillaume Desmottes | 2011-04-06 | 1 | -16/+13 |
| | | | | | | As the tpl_log_manager_get_entities_async() call is async, the selected account may have changed while it's running. So we have to explicitely pass the account which was selected when we started the call (#645586). | ||||
* | emulate '/me' command if CM doesn't support Action messages (#622118) | Guillaume Desmottes | 2011-04-06 | 1 | -2/+26 |
| | |||||
* | Bug 646227 — Possible overflow in persona-view:drag_data_get | Philip Withnall | 2011-04-05 | 3 | -40/+43 |
| | | | | | | | | | | | I think it was a fluke that this code worked in the first place, since it was accessing arrays with indices which were out of range, and which wouldn't have corresponded to the correct entries even if they were in range. This should fix the mapping between DND types and DND URIs/atoms in the contact list, individual and persona views. Closes: bgo#646227 | ||||
* | Revert "-Fix use of include <config.h> to make sure translations work" | Guillaume Desmottes | 2011-04-04 | 2 | -8/+0 |
| | | | | | | This reverts commit f0f99ffaa08240fbb72d7eed198368fd22fe4c47. Sorry, I didn't mean to push that... | ||||
* | -Fix use of include <config.h> to make sure translations work | Kjartan Maraas | 2011-04-04 | 2 | -0/+8 |
| | |||||
* | set a category on chat related notifications | Guillaume Desmottes | 2011-04-02 | 1 | -0/+1 |
| | | | | | That can be used by the Shell to filter out notifications it's handling itself directly (#645932). | ||||
* | move the Enabled translator comment just before the string | Guillaume Desmottes | 2011-03-30 | 1 | -2/+2 |
| | | | | If not, gettext doesn't find it... | ||||
* | give translators context for the 'Enabled' checkbox (#646131) | Guillaume Desmottes | 2011-03-30 | 1 | -0/+2 |
| | |||||
* | theme-adium: keep count of the pages loading instead of using a boolean | Guillaume Desmottes | 2011-03-28 | 1 | -4/+9 |
| | | | | | | Each time theme_adium_clear() is called, WebKit has to reload the page. If we do multi calls to clear() in a short interval, we used to think the page was loaded while it was the *old* one which was actually loaded. (#645670) | ||||
* | Calendar widget should be disabled if no contact selected (#645582) | Guillaume Desmottes | 2011-03-24 | 2 | -0/+10 |
| | |||||
* | account_chooser_filter_ready_cb: don't unref the account | Guillaume Desmottes | 2011-03-24 | 1 | -1/+0 |
| | | | | Our ref is already released in filter_result_callback_data_free (#645672). | ||||
* | Only add the 'extra-certificate-identities' parameter if gabble supports it. | Stef Walter | 2011-03-22 | 1 | -2/+6 |
| | |||||
* | Create GTalk accounts with extra-certificate-identities = 'talk.google.com' | Stef Walter | 2011-03-22 | 1 | -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 | ||||
* | account_chooser_update_iter: don't leak the TpAccount | Guillaume Desmottes | 2011-03-22 | 1 | -0/+2 |
| | |||||
* | Also show an avatar when blocking from a conversation | Emilio Pozuelo Monfort | 2011-03-22 | 3 | -3/+14 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=645069 | ||||
* | Use the right marshal file | Emilio Pozuelo Monfort | 2011-03-19 | 1 | -2/+2 |
| | |||||
* | Display an avatar on the block contact dialog | Emilio Pozuelo Monfort | 2011-03-18 | 3 | -68/+111 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=645069 | ||||
* | Allow to enter an email address as ICQ ID (#645014) | Guillaume Desmottes | 2011-03-17 | 1 | -2/+5 |
| | |||||
* | Contact Search: close the dialog when adding a contact | Emilio Pozuelo Monfort | 2011-03-17 | 1 | -0/+3 |
| |