summaryrefslogtreecommitdiff
path: root/indra
AgeCommit message (Collapse)Author
2012-08-08MAINT-328 FIXED Use stopTracking() before each new beaconmaxim_productengine
2012-08-08MAINT-403 FIXED Trash button is now disabled if neither landmark nor folder ↵maxim_productengine
isn't selected.
2012-08-08MAINT-1069 FIXED Change "follows" attribute for scroll list to "left|top|right"maxim_productengine
2012-08-08MAINT-257 FIXED Increase minimum width to avoid overlapingmaxim_productengine
2012-08-08MAINT-1334 FIXED Enable "Close all windows" menu item if Snapshot floater is ↵maxim_productengine
opened. Close Snapshot floater by close all command.
2012-08-08MAINT-269 FIXED Check if current agent is owner of the parcel before ↵maxim_productengine
enabling "Buy pass"
2012-08-08MAINT-44 FIXED Change value for MiniMapAutoCenter in settings.xml to persist ↵maxim_productengine
after restart
2012-08-08MAINT-65 FIXED Disable "Edit" in context menu if wearable has status "no modify"maxim_productengine
2012-08-08MAINT-481 FIXED Disable creating new folders in Favorites foldermaxim_productengine
2012-08-08MAINT-297 FIXED Reset selection after collapsing all foldersmaxim_productengine
2012-08-08MAINT-1121 FIXED Disable "Open" if several calling cards are selected.maxim_productengine
2012-07-05MAINT-436 FIXED Set focus to line editor if it exists in alert toastmaxim_productengine
2012-08-06MAINT-73 FIXED Hide Stand/Stop flying panel after pressing Ctrl-Shift-Umaxim_productengine
2012-08-03Merge back changes from viewer-lion with latest viewer-developmentsimon@Simon-PC.lindenlab.com
2012-08-03Merge with lindenlab/viewer-developmentsimon@Simon-PC.lindenlab.com
2012-08-02mergeBrad Payne (Vir Linden)
2012-08-02MAINT-515 FIX, CHOP-100 FIX - technically we are avoiding these issues ↵Brad Payne (Vir Linden)
rather than fixing them; changing llcommon to be statically linked avoids the symbol issues with llcommon.dll
2012-08-01Merge back viewer-lion, which has viewer-development and down-stream fixessimon@Simon-PC.lindenlab.com
2012-08-01Merge MAINT-1270 fixsimon@Simon-PC.lindenlab.com
2012-07-31Merge in viewer-developmentsimon@Simon-PC.lindenlab.com
2012-07-31MAINT-1305 llDialog tooltip typoKelly Washington
2012-07-30Fix linux build crankinesssimon@Simon-PC.lindenlab.com
2012-07-30mergeDave Parks
2012-07-30MAINT-570 Fix for linux build.Dave Parks
2012-07-28Automated merge with http://hg.secondlife.com/viewer-developmentNat Goodspeed
2012-07-28Automated merge with ssh://hg.lindenlab.com/nat/viewer-maint-1175Nat Goodspeed
2012-07-27MAINT-1175 FIX Severe performance issues on 3.3.2 (258114) Release and 3.3.3 ↵Richard Linden
(259197) Beta in "Add scroll list item" removed linear scan for namelist items and used weak reference (LLHandle) instead
2012-07-27increment version to 3.4.1Oz Linden
2012-07-25MAINT-1042: Blocking asset avatar prevents future uploads. Reviewed by Kelly.simon@Simon-PC.lindenlab.com
2012-07-25increment version to 3.4.0Oz Linden
2012-07-25MAINT-615 Fix for texture animation freezing under certain situations.Dave Parks
2012-07-25MAINT-611 Differentiate between mobile and not mobile NVIDIA GPUs in the gpu ↵Dave Parks
table.
2012-07-25pull latest pathfinding changes from integration branchOz Linden
2012-07-24Adding a group identifier to the group objects in the pathfinding linksets ↵Todd Stinson
and characters floaters.
2012-07-24merge up to latest viewer-pathfinding (including 3.3.4)Oz Linden
2012-07-24merge to viewer-developmentoOz Linden
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-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-20MAINT-570 Remove unused memory tracking system LLMemTypeKelly Washington
follow up to fix test compiles.
2012-07-20MAINT-570 Remove unused memory tracking system LLMemTypeDave Parks
2012-07-20refactor to build llphysicsextensions_tpv package for sublicenseesOz Linden
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.
2012-07-18MAINT-1175: Ditch LLTypeInfoLookup, make map<const type_info*> work.Nat Goodspeed
Instead of forbidding std::map<const std::type_info*, ...> outright (which includes LLRegistry<const std::type_info*, ...> and LLRegistrySingleton<const std::type_info*, ...>), try to make it work by specializing std::less<const std::type_info*> to use std::type_info::before(). Make LLRegistryDefaultComparator<T> use std::less<T> so it can capitalize on that specialization.
2012-07-18Setting the description column of the linkset floater to be a fixed width. ↵Todd Stinson
Having multiple dynamic width columns apparently prevents other columns from being manually resized by the user.
2012-07-18Updating the build tools floater to better handle multi-line creator and ↵Todd Stinson
owner names.
2012-07-18mergeDave Parks
2012-07-18MAINT-628 Fix for seams in high res snapshots when lighting and shadows is ↵Dave Parks
enabled.
2012-07-18MAINT-1175: merge backout LLRegistrySingleton<std::type_info::name()>Nat Goodspeed