summaryrefslogtreecommitdiff
path: root/indra/newview/llimview.cpp
AgeCommit message (Collapse)Author
2013-04-09CHUI-923 FIXED Show toasts if Conversation floater is focussed and current ↵Mnikolenko ProductEngine
conversation is not selected.
2013-04-05mergeNyx Linden
2013-04-02Merged in chui beta code.prep@lindenlab.com
2013-04-02pulling in sunshine-stable to sunshine-internal.Nyx Linden
2013-04-01CHUI-896 : ADD FIX : Line flashing and FUI button flashing not working ↵AlexanderP ProductEngine
correctly for CHUI notifications backed out 902caf2 and (partly) d498514; case "NOT_ON_TOP" was fixed
2013-03-29CHUI-807 : Trace add and remove sessionsMerov Linden
2013-03-29CHUI-807 : Add more defensive coding. Also trace in log the sessions created ↵Merov Linden
so we'll have a better idea of what people do with conversations if we see that crash again.
2013-03-29Another Chui beta6+ merge to deal with build issuesprep@lindenlab.com
2013-03-29Additional fix for CHUI-903Mnikolenko ProductEngine
2013-03-29Merged in Chui beta6+ fixesprep@lindenlab.com
2013-03-29CHUI-903 FIXED Don't show toasts if Session floater is torn-off and in focus.Mnikolenko ProductEngine
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2013-03-28CHUI-896 FIXED Line flashing and FUI button flashing not working correctly ↵AlexanderP ProductEngine
for CHUI notifications: added flashing of the line item after conv. floater opens
2013-03-27CHUI-486 ADD FIX Update Preferences -> Chat XUIAlexanderP ProductEngine
1) when preference is "Pop up" - added toast according to Kurt's comment from 22/Dec/12; 2) fixed line item flashing and "Chat" button flashing in other cases according to original matrix.
2013-03-27CHUI-895 FIXED Show toasts for messages if conversation is collapsed to ↵Mnikolenko ProductEngine
Input bar(regardless of other prefs).
2013-03-22CHUI-486 FIXED Update Preferences -> Chat XUI: implemented new bthavior; ↵AlexanderP ProductEngine
deleted spaghetti code
2013-03-21Folded in changes from sunshine-stableprep
2013-03-20Merge with viewer-chuiprep@lindenlab.com
2013-03-19CHUI 796 (User doesn't get all messages in 'do not disturb' mode): Now IM ↵Gilbert Gonzales
DND notifications will be stored as p2p, ad-hoc or group. When loading these notifications upon app start ad-hoc/group notifications will launch the conversation log and play a sound.
2013-03-15Pull merge from lindenlab/viewer-chuiMerov Linden
2013-03-15CHUI-807 : More defensive code. Don't assume anything while iterating ↵Merov Linden
through panels.
2013-03-15CHUI-831 ADD FIX Minimized conversation floater is not opened with Open ↵AlexanderP ProductEngine
Conversation Window preference if conversation receiving message is selected
2013-03-14mergingmberezhnoy
2013-03-14CHUI-844 (Collapsed conversation panel auto expands when a new IM ↵mberezhnoy
conversation starts) CHUI-713 ("Conversations" floater size doesn't persist between sessions)
2013-03-13CHUI-831 ADD FIX Minimized conversation floater is not opened with Open ↵alexanderpproductengine
Conversation Window preference if conversation receiving message is selected
2013-03-15CHUI-830 FIXED Button for collapsing torn-off floater(to a single input ↵Mnikolenko ProductEngine
line) is added. Show toasts for new messages for that conversation, regardless of other prefs.
2013-03-14CHUI-853 (Crashing on ejecting member in group): Upon receiving the ↵Gilbert Gonzales
rejection response message, the incorrect session id was being used to display the message. session_id was being used instead of new_session_id.
2013-03-13Merging LLCURL::Responder changes with CHUI changes. Fixed gcc 4.6 compile ↵Don Kjer
failures
2013-03-13Large changes to the LLCurl::Responder API, as well as pulling in some ↵Don Kjer
changes to common libraries from the server codebase: * Additional error checking in http handlers. * Uniform log spam for http errors. * Switch to using constants for http heads and status codes. * Fixed bugs in incorrectly checking if parsing LLSD xml resulted in an error. * Reduced spam regarding LLSD parsing errors in the default completedRaw http handler. It should not longer be necessary to short-circuit completedRaw to avoid spam. * Ported over a few bug fixes from the server code. * Switch mode http status codes to use S32 instead of U32. * Ported LLSD::asStringRef from server code; avoids copying strings all over the place. * Ported server change to LLSD::asBinary; this always returns a reference now instead of copying the entire binary blob. * Ported server pretty notation format (and pretty binary format) to llsd serialization. * The new LLCurl::Responder API no longer has two error handlers to choose from. Overriding the following methods have been deprecated: ** error - use httpFailure ** errorWithContent - use httpFailure ** result - use httpSuccess ** completed - use httpCompleted ** completedHeader - no longer necessary; call getResponseHeaders() from a completion method to obtain these headers. * In order to 'catch' a completed http request, override one of these methods: ** httpSuccess - Called for any 2xx status code. ** httpFailure - Called for any non-2xx status code. ** httpComplete - Called for all status codes. Default implementation is to call either httpSuccess or httpFailure. * It is recommended to keep these methods protected/private in order to avoid triggering of these methods without using a 'push' method (see below). * Uniform error handling should followed whenever possible by calling a variant of this during httpFailure: ** llwarns << dumpResponse() << llendl; * Be sure to include LOG_CLASS(your_class_name) in your class in order for the log entry to give more context. * In order to 'push' a result into the responder, you should no longer call error, errorWithContent, result, or completed. * Nor should you directly call httpSuccess/Failure/Completed (unless passing a message up to a parent class). * Instead, you can set the internal content of a responder and trigger a corresponding method using the following methods: ** successResult - Sets results and calls httpSuccess ** failureResult - Sets results and calls httpFailure ** completedResult - Sets results and calls httpCompleted * To obtain information about a the response from a reponder method, use the following getters: ** getStatus - HTTP status code ** getReason - Reason string ** getContent - Content (Parsed body LLSD) ** getResponseHeaders - Response Headers (LLSD map) ** getHTTPMethod - HTTP method of the request ** getURL - URL of the request * It is still possible to override completeRaw if you want to manipulate data directly out of LLPumpIO. * See indra/llmessage/llcurl.h for more information.
2013-03-12CHUI-831 Minimized conversation floater is not opened with Open Conversation ↵AlexanderP ProductEngine
Window preference if conversation receiving message is selected : force unminimized of the session's floater
2013-03-11Viewer-chui mergeprep
2013-03-05Fixing issues with not detecting when LLSD XML parsing fails. Changing most ↵Don Kjer
http error handlers to understand LLSD error responses. Fleshing out most http error handler message spam.
2013-03-04CHUI-806 (IM floater is not become as a top while geting message with ↵mberezhnoy
enabled 'Open conversation window' option)
2013-02-20CHUI-773 ADD FIX Conversation line item does not flash for unselected ↵AlexanderP ProductEngine
conversation when Flash Toolbar Button preference is selected : repair case "open and not on top"
2013-02-14CHUI-773 Conversation line item does not flash for unselected conversation ↵AlexanderP ProductEngine
when Flash Toolbar Button preference is selected: add flashing in "toast" case when session floater is open but not selected
2013-02-11CHUI-755 FIX Conversation log changes in a session are lost if viewer crashesCho
Added call to LLConversationLog::instance().cache() after LLLogChat::SaveHistory() in LLIMView::logToFile()
2013-02-07CHUI-736: When auto-exit DND mode upon startup, stored conversations are not ↵Gilbert Gonzales
highlighted. When the dnd im is processed, now flash the conversation line item.
2013-02-06CHUI-744 FIXED KeepConversationLogTranscripts setting is moved to ↵Mnikolenko ProductEngine
settings_per_account.xml
2013-02-04CHUI-677 : Added a warning printout in the log to capture context of this bug.Merov Linden
2013-02-01mergingmberezhnoy
2013-01-31CHUI-718 (User does not see own chat in conference IM)mberezhnoy
CHUI-704 (Entry in 'Conversation Log' floater with your avatar's name appears, after ejecting any member from group)
2013-01-31CHUI-612 FIXED Blank conversation names showing in conversation listmaksymsproductengine
2013-01-30mergingmberezhnoy
2013-01-30CHUI-704 (Entry in 'Conversation Log' floater with your avatar's name ↵mberezhnoy
appears, after ejecting any member from group)
2013-01-29Pull merge from lindenlab/viewer-chuiMerov Linden
2013-01-29CHUI-436 : Fixed : Do not skip yourself or group chat when checked Only ↵Merov Linden
friends and groups can call or IM me pref.
2013-01-29CHUI-88 I shouldn't see Conference IMs from people I muted. Fix: In order to ↵Gilbert Gonzales
mute a user who initiated a conference/group chat, the session must be created on the server side and then left.
2013-01-29merging latest changesCho
2013-01-29CHUI-644 FIX [CHUIBUG]Received IM's Don't Always Appear in Communication ↵Cho
Console Immediately. Removed new code from on_new_message in LLIMView and instead, changed condition in LLFloaterIMSession::newIMCallback to update messages whenever the floater is visible
2013-01-26undid accidental revert of someone else's fixCho