summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterconversationpreview.cpp
AgeCommit message (Collapse)Author
2013-12-03MAINT-3476 FIX Opening large chat histories from conversation log eats up ↵PavelK ProductEngine
huge amounts of memory, leading to viewer crash.
2013-09-10MAINT-3117 FIXED crash in LLFloaterConversationPreview::showHistory() - ↵maksymsproductengine
optimization
2013-09-10Merge for MAINT-3117maksymsproductengine
2013-09-10MAINT-3117 FIXED crash in LLFloaterConversationPreview::showHistory()dmitrykproductengine
Updated fix with a more complex and stable version. Integrated solution from the CHUI-836.
2013-09-09MAINT-3117 FIXED crash in LLFloaterConversationPreview::showHistory()dmitrykproductengine
2013-09-05merge from viewer-chuimaksymsproductengine
2013-09-04MAINT-3095 FIXED Viewer crashes after opening Nearby chat history, if it is ↵dmitrykproductengine
empty
2013-09-03CHUI-836 FIXED [CHUIBUG]Opening chat history from the conversation log ↵maksymsproductengine
sometimes crashes the viewer
2013-08-15MAINT-2938 FIXED [CHUI] crash in LLFloaterConversationPreview::showHistory()maksymsproductengine
2013-07-09CHUI-978 FIXED Load data from chat log file in separate thread to prevent ↵Mnikolenko ProductEngine
viewer freeze
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2013-02-22CHUI-633 FIXED User is not able to open chat history by 'View chat history' ↵maksymsproductengine
menu item from pop-up menu of People floater
2013-01-23CHUI-424 FIXED Args for appendMessage() are added to respect ↵maxim@mnikolenko
Compact/Expanded mode
2012-11-09CHUI-337 FIXED: To avoid confusion with a classes "...conversation..." and ↵AlexanderP ProductEngine
in accordance with the naming convention in the project, some classes and corresponding files should be renamed: LLIMConversation -> LLFloaterIMSessionTab LLIMFloater -> LLFloaterIMSession LLNearbyChat -> LLFloaterIMNearbyChat LLIMFloaterContainer -> LLFloaterIMContainer LLNearbyChatBarListener -> LLFloaterIMNearbyChatListener LLNearbyChatHandler -> LLFloaterIMNearbyChatHandler
2012-09-19CHUI-338 FIXED (LLAvatarNameResponder warning shown in debug console when ↵Paul ProductEngine
using spinner to page through chat history viewer) - Trying to restore avatarID by its name before appending message to chat history. - Also prevented requesting avatar name by null LLUUID in LLAvatarIconCtrl::setValue
2012-09-13CHUI-334 FIXED (Date not shown in the chat log for current date entries)Paul ProductEngine
Before the "%Y/%m/%d" was always cutted from timestamp string for today's date. Now I added flag whether we should cut off timestamp or not.
2012-09-11CHUI-336 FIXED (Remove Description label and field from Chat history viewer)Paul ProductEngine
- Removed lineeditor and text box from code and xml
2012-09-10Attempt to fix Linux buildMerov Linden
2012-09-06CHUI-318 FIXED (User cannot navigate forward in chat history viewer once the ↵Paul ProductEngine
More History option is selected.) - Added spinner so that user could select desired history page. Also displaying total count of pages.
2012-08-31CHUI-157 FIXED (Implement menu bar for conversation floater)Paul ProductEngine
- Added View Nearby chat history option - Also replaced menu item "Add Friend / Remove" with two separate menus: Add Friend and Remove Friend. So if user is a Friend the Remove Friend option would be shown there. If the user is not a friend, the Add Friend option would be shown.
2012-08-28BUILDFIX: Correcting a linux build error.William Todd Stinson
2012-08-28CHUI-275 FIXED (Chat history viewer does not show entire user.txt IM log file)Paul ProductEngine
- Renamed LLLogChat::loadAllHistory to LLLogChat::loadChatHistory because it doesn't actually loads all history. Also added parameter to the function which is a flag whether to load all file's content or not. - Implemented displaying history by pages (as was decided on meeting page): Added showHistory() method to the LLFloaterConversationPreview which shows the chat history page by page starting from the last conversation (or may say starting from the last page). One page contains 100 entries. Added "More history..." button to display next page of history.
2012-07-27CHUI-151 FIXED (Implement conversation log)Paul ProductEngine
A brief explanation of what have been implemented. More information can be found in comments. 1. Created conversation history viewer (llfloaterconversationpreview) 2. Created LLConversation and LLConversationLog classes which represent and hold data of conversations (llconversationlog) 3. Created LLConversationLogList and LLConversationLogListItem which are the visual representation of LLConversationLog and LLConversation respectively 4. Created LLFloaterConversationLog - which holds and displays LLConversationLogList