summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-27Micro fix for string.xmlAlexanderP ProductEngine
2012-07-27Pull and merge from ssh://stinson@hg.lindenlab.com/richard/viewer-chui/.Todd Stinson
2012-07-27build fixRichard Linden
2012-07-27Updating comments for merge conflicts after reviewing with Richard.Todd Stinson
2012-07-27Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-27CHUI-256 FIX Invalid param warnings in llfolderview when adding and deleting ↵Richard Linden
items from object inventory
2012-07-27Fixed line endings in files added in CHUI-151.Seth ProductEngine
2012-07-27fixed line endingsRichard Linden
2012-07-27Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-27CHUI-253 FIX Not able to view the contents of a Buy Contents object for saleRichard Linden
2012-07-27Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release.Todd Stinson
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
2012-07-27CHUI-204 FIXED (Conversations panel can be re-sized too small with all ↵Paul ProductEngine
conversations torn off) - Increased min width of conversations panel by 10 pixels
2012-07-27CHUI-198 FIXED (Hitting minimize option on conversations floater closes ↵Paul ProductEngine
floater, not minimize) - Removed code which was hiding floater on minimizing floater.
2012-07-26Pull and merge from ssh://stinson@hg.lindenlab.com/richard/viewer-chui/.Todd Stinson
2012-07-26CHUI-251: Adding back in the root 'Contents' folder under the Build floater ↵Todd Stinson
Content tab.
2012-07-26CHUI-251: Resetting the object inventory panel after deleting the last object.Todd Stinson
2012-07-26Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-26made Deprecated params write-onlyRichard Linden
2012-07-25Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-25optimization of LLSD param parsingRichard Linden
2012-07-25CHUI-252 FIX Deleting an item from object contents in build tools crashes viewerRichard Linden
also improved selection behavior for object contents when deleting/adding items
2012-07-25CHUI-222 FIX Selecting None in inventory filters does not update until ↵Richard Linden
inventory selected
2012-07-25another change to force a new ticket, disable some codeticket featuresOz Linden
2012-07-25clean up BuildParams and change to force a new ticketOz Linden
2012-07-25CHUI-239 FIX Viewer crash when opening object with contentsRichard Linden
2012-07-25increment version to 3.4.0Oz Linden
2012-07-25tag merge of DRTVWR-182Oz Linden
2012-07-25pull latest pathfinding changes from integration branchOz Linden
2012-07-25update to latest builds of llphysicsextensionssOz Linden
2012-07-25CHUI-230 [FIXED] Torn off conversation window size resizes when viewer ↵AlexanderP ProductEngine
window is resized
2012-07-24CHUI-206 FIX Viewer crash when selecting to cut inventory item, then ↵Richard Linden
selecting to cut another inventory item Seems to work now, without filtering de-optimization
2012-07-24Adding a group identifier to the group objects in the pathfinding linksets ↵Todd Stinson
and characters floaters.
2012-07-24Backed out changeset: a20e437a726cRichard Linden
2012-07-24CHUI-211: Problem was due to a non-heap variable being deleted and then ↵Gilbert Gonzales
referenced later (which was found by ProductEngine). Also the crash occurred at a specifc location llpangelobjectinventory::reset() during a static_cast, so now using a dynamic_cast as a safeguard.
2012-07-24CHUI-209 FIX for properly updating folder names in folder view after they ↵Seth ProductEngine
have been renamed. The old display name should be cleared before refreshing the views for both items and folders in folder view, otherwise the old name will be used upon renaming.
2012-07-24fix for gcc buildsRichard Linden
2012-07-24merge up to latest viewer-pathfinding (including 3.3.4)Oz Linden
2012-07-24merge to viewer-developmentoOz Linden
2012-07-23Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-23CHUI-227 FIX Teleport offers sent are not receivedRichard Linden
cleaned up serialization of LLSD to param block so that it can round-trip also, optimized LLXMLNode and fixed an assert
2012-07-23Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release.Todd Stinson
2012-07-23PATH-781: Pulling in the new 'owner_is_group' field into the pathfinding object.Todd Stinson
2012-07-23pull back 3.3.4 release tagOz Linden
2012-07-23Added tag 3.3.4-release for changeset 28e100d0379aOz Linden
2012-07-23Fix for path-826. Safeguarding against a mull weight being usedprep
2012-07-21fix finding havok libs in relwithdebinfo mode (uses release unless ↵Oz Linden
LL_DEBUG_HAVOK is used
2012-07-20refactor to build llphysicsextensions_tpv package for sublicenseesOz Linden
2012-07-20CHUI-207 FIXED Emptying Lost and Found and Trash in inventory crashes viewerAlexanderP ProductEngine
2012-07-19MAINT-1175: Use workaround for comparing std::type_info* on gcc < 4.4.Nat Goodspeed
We now specialize std::less<const std::type_info*> to use std::type_info::before(), and on Windows and Mac that Just Works. It even works on Linux when using gcc 4.4+: more recent implementations of gcc's std::type_info::before() apparently do name()-string comparisons internally. It doesn't work so well on Linux with gcc 4.1, though, and that's the compiler we still use on our Linux build-farm machines. But rather than give up, perform explicit name()-string comparison in that case.