Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-16 | SH-3275 WIP Run viewer metrics for object update messages | Richard Linden | |
clean up of llstats stuff | |||
2012-07-12 | SH-3275 WIP Run viewer metrics for object update messages | Richard Linden | |
improved update logging API and output format | |||
2012-07-05 | MAINT-436 FIXED Set focus to line editor if it exists in alert toast | maxim_productengine | |
2012-08-06 | MAINT-73 FIXED Hide Stand/Stop flying panel after pressing Ctrl-Shift-U | maxim_productengine | |
2012-08-03 | Merge back changes from viewer-lion with latest viewer-development | simon@Simon-PC.lindenlab.com | |
2012-08-03 | Merge with lindenlab/viewer-development | simon@Simon-PC.lindenlab.com | |
2012-08-02 | merge | Brad Payne (Vir Linden) | |
2012-08-02 | MAINT-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-01 | Merge back viewer-lion, which has viewer-development and down-stream fixes | simon@Simon-PC.lindenlab.com | |
2012-08-01 | Merge MAINT-1270 fix | simon@Simon-PC.lindenlab.com | |
2012-07-31 | Merge in viewer-development | simon@Simon-PC.lindenlab.com | |
2012-07-31 | MAINT-1305 llDialog tooltip typo | Kelly Washington | |
2012-07-30 | Fix linux build crankiness | simon@Simon-PC.lindenlab.com | |
2012-07-30 | merge | Dave Parks | |
2012-07-30 | MAINT-570 Fix for linux build. | Dave Parks | |
2012-07-28 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-07-28 | Automated merge with ssh://hg.lindenlab.com/nat/viewer-maint-1175 | Nat Goodspeed | |
2012-07-27 | MAINT-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-27 | increment version to 3.4.1 | Oz Linden | |
2012-07-25 | MAINT-1042: Blocking asset avatar prevents future uploads. Reviewed by Kelly. | simon@Simon-PC.lindenlab.com | |
2012-07-25 | increment version to 3.4.0 | Oz Linden | |
2012-07-25 | MAINT-615 Fix for texture animation freezing under certain situations. | Dave Parks | |
2012-07-25 | MAINT-611 Differentiate between mobile and not mobile NVIDIA GPUs in the gpu ↵ | Dave Parks | |
table. | |||
2012-07-25 | pull latest pathfinding changes from integration branch | Oz Linden | |
2012-07-24 | Adding a group identifier to the group objects in the pathfinding linksets ↵ | Todd Stinson | |
and characters floaters. | |||
2012-07-24 | merge up to latest viewer-pathfinding (including 3.3.4) | Oz Linden | |
2012-07-24 | merge to viewer-developmento | Oz Linden | |
2012-07-23 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release. | Todd Stinson | |
2012-07-23 | PATH-781: Pulling in the new 'owner_is_group' field into the pathfinding object. | Todd Stinson | |
2012-07-23 | Fix for path-826. Safeguarding against a mull weight being used | prep | |
2012-07-21 | fix finding havok libs in relwithdebinfo mode (uses release unless ↵ | Oz Linden | |
LL_DEBUG_HAVOK is used | |||
2012-07-20 | MAINT-570 Remove unused memory tracking system LLMemType | Kelly Washington | |
follow up to fix test compiles. | |||
2012-07-20 | MAINT-570 Remove unused memory tracking system LLMemType | Dave Parks | |
2012-07-20 | refactor to build llphysicsextensions_tpv package for sublicensees | Oz Linden | |
2012-07-19 | MAINT-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-18 | MAINT-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-18 | Setting 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-18 | Updating the build tools floater to better handle multi-line creator and ↵ | Todd Stinson | |
owner names. | |||
2012-07-18 | merge | Dave Parks | |
2012-07-18 | MAINT-628 Fix for seams in high res snapshots when lighting and shadows is ↵ | Dave Parks | |
enabled. | |||
2012-07-18 | MAINT-1175: merge backout LLRegistrySingleton<std::type_info::name()> | Nat Goodspeed | |
2012-07-18 | Backed out changeset a25bfa87418d (using std::type_info::name()) | Nat Goodspeed | |
The changeset above touched every consumer of the two LLRegistrySingletons originally defined with std::type_info* as keys. Those two LLRegistrySingletons were changed to use const char* as keys, then all consumers were changed to pass std::type_info::name() instead of the plain std::type_info* pointer -- to deal with the observed fact that on Linux, a given type might produce different std::type_info* pointers in different load modules. Since then, Richard turned up the fascinating fact that at least some implementations of gcc's std::type_info::before() method already accommodate this peculiarity. It seems worth backing out the (dismayingly pervasive) change to see if properly using std::type_info::before() as the map comparator will work just as well, with conceptually simpler source code. This backout is transitional: we don't expect things to build/run properly until we've cherry-picked certain other pertinent changes. | |||
2012-07-18 | merge back fixes from 3.3.4-beta5 | Oz Linden | |
2012-07-17 | merge | simon@Simon-PC.lindenlab.com | |
2012-07-17 | MAINT-1276: Add ability to paste LSL tooltips into scripts. Reviewed by Kelly | simon@Simon-PC.lindenlab.com | |
2012-07-17 | MAINT-1223 More aggressive rebuilding of render batches when alpha color ↵ | Dave Parks | |
values change. | |||
2012-07-17 | pull back fixes for 3.3.4-beta4 | Oz Linden | |
2012-07-16 | MAINT-1175: Pass boost::unordered_map hash/equals functors for char*. | Nat Goodspeed | |
boost::unordered_map<const char*, ...> does NOT, by default, "do the right thing." Give it hash and equality functors that do. | |||
2012-07-16 | MAINT-1270 Fix for some flexi prims becoming flat at some LoDs | Dave Parks | |
2012-07-16 | MAINT-1270 Fix for some flexi prims becoming flat at some LoDs | Dave Parks | |