Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-19 | MAINT-1986: merge in server-trunk fixes | Nat Goodspeed | |
2012-12-18 | MAINT-1986: patch OPSDEV-111 fix (rev 9346b73d6843) from server-trunk | Nat Goodspeed | |
2012-12-18 | MAINT-1986: patch DEV-50942 fix (rev 28828ba0f0be) from server-trunk. | Nat Goodspeed | |
2012-12-17 | increment version to 3.4.5 | Oz Linden | |
2012-11-26 | merge changes for DRTVWR-249 | Oz Linden | |
2012-11-20 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-11-20 | merge changes for DRTVWR-246 | Oz Linden | |
2012-11-19 | increment version to 3.4.4 | Oz Linden | |
2012-11-16 | Some Mac header #defines macros like check and equivalent -- gack!! | Nat Goodspeed | |
Given that third-party libraries (such as Boost) can and do use those names, properly namespace-scoped, it's unpardonable to break any such innocent usage with a macro. Given the pervasiveness of the need, introduce a header file with the requisite #undef directives. | |||
2012-11-16 | Boost 1.52 no longer supports Boost.Filesystem v2 -- don't request. | Nat Goodspeed | |
Instead of compatibility mode, #defining BOOST_FILESYSTEM_VERSION to 2 only gets you a compile error these days. | |||
2012-11-13 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-11-13 | merge changes for DRTVWR-238 | Oz Linden | |
2012-11-08 | merge up to viewer-development | Oz Linden | |
2012-11-07 | Automated merge with http://bitbucket.org/lindenlab/viewer-beta | Dave Parks | |
2012-11-07 | MAINT-1815 Fix for excessive memory usage in Mayfair. Disable tcmalloc. ↵ | Dave Parks | |
Disable private memory pools. Make viewer large address aware on windows. Reviewed by Kelly | |||
2012-11-07 | Merge. Refresh DRTVWR-209 with 3.4.2-beta1 code. | Monty Brandenberg | |
Two fairly simple conflicts: dead stats sending code in the texture fetch code (new llcorehttp library) and the cleanup code in llappviewer was moved around in 3.4.x. | |||
2012-11-06 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-11-05 | increment version to 3.4.3 | Oz Linden | |
2012-10-19 | merge back late fix for MAINT-1753 | Oz Linden | |
2012-10-18 | MAINT-1753: Correcting behavior of ll_aligned_realloc_16() on Linux to avoid ↵ | William Todd Stinson | |
memory corruption in the case that the new memory size requested is smaller than the old memory size. Also, adding check to ensure that the aligned malloc returns a non-null value before memcopying. | |||
2012-10-15 | pull back 3.4.1-beta7 fixes | Oz Linden | |
2012-10-11 | MAINT-1684: Correcting the calls to ll_aligned_free() which should have ↵ | William Todd Stinson | |
actually been to ll_aligned_free_16(). | |||
2012-10-11 | MAINT-1684: Attempt at correcting the linux crash on startup. Replacing the ↵ | William Todd Stinson | |
memory allocations and frees in the LLPrivateMemoryPool with aligned memory allocations and frees. | |||
2012-10-10 | pull back 3.4.1-beta6 fixes | Oz Linden | |
2012-10-04 | merge changes for DRTVWR-222 | Oz Linden | |
2012-10-03 | Fix for mac/linux build | Dave Parks | |
2012-10-03 | Fix non-thread-safe refcounting of LLHTTPClient::Responder and fix ↵ | Dave Parks | |
out-of-order deletion of LLTextureFetch on shutdown | |||
2012-10-02 | Instrument debug builds on windows to help track down source of heap corruption | Dave Parks | |
2012-10-01 | Only enable breakpad error handing if crash reporting is enabled | Dave Parks | |
2012-09-20 | Pull and merge from ↵ | William Todd Stinson | |
ssh://hg@bitbucket.org/stinson_linden/viewer-beta-drtvwr-179. | |||
2012-09-12 | re-merge changes to disable tcmalloc | Oz Linden | |
2012-09-12 | merge increment of version number | Oz Linden | |
2012-09-12 | increment version to 3.4.2 | Oz Linden | |
2012-09-12 | MAINT-1503 Minimal set of changes needed to safely disable tcmalloc | Dave Parks | |
2012-09-12 | initial attempt to restore changes that make removing tcmalloc possible; not ↵ | Oz Linden | |
tested | |||
2012-09-10 | Backing out the changes contributing to DRTVWR-167 and DRTVWR-179 from the ↵ | William Todd Stinson | |
repository. | |||
2012-09-07 | DRTVWR-209 Merge of viewer-development with SH-3316 drano-http code. | Monty Brandenberg | |
This was yet another refresh from v-d because of significant changes to lltexturefetch that would not have been resolvable by casual application of any merge tool. There are still a few questions outstanding but this is the initial, optimistic merge. | |||
2012-08-31 | Fix longstanding LLURI::buildHTTP() bug when passing string path. | Nat Goodspeed | |
The LLURI::buildHTTP() overloads that take an LLSD 'path' accept 'undefined', LLSD::String and (LLSD::Array of LLSD::String). A sequence of path components passed in an Array is constructed into a slash-separated path. There are unit tests in lluri_test.cpp to exercise that case. To my amazement, there were NO unit tests covering the case of an LLSD::String path. The code for that case escaped and appended the entire passed string. While that might be fine for a 'path' consisting of a single undecorated path component, the available documentation does not forbid one from passing a path containing slashes as well. But this had the dubious effect of replacing every slash with %2F. In particular, decomposing a URL string with one LLURI instance and constructing another like it using LLURI::buildHTTP() was not symmetrical. Having consulted with Richard, I made the string-path logic a bit more nuanced: - The passed path string is split on slashes. Every path component is individually escaped, then recombined with slashes into the final path. - Duplicate slashes are eliminated. - The presence or absence of a trailing slash in the original path string is carefully respected. Now that we've nailed down how it ought to behave -- added unit tests to ensure that it DOES behave that way!! | |||
2012-08-15 | merge back beta fixes | Oz Linden | |
2012-08-13 | Merge from viewer-development. | Monty Brandenberg | |
2012-08-08 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-08-08 | Add implementation comments to LLHandle. | Nat Goodspeed | |
I recently tried to wade through llhandle.h and got somewhat perplexed. Armed with an explanation from Richard, I've added notes to the file to try to make it a bit less mysterious. | |||
2012-08-08 | Move llhandle.h into llcommon; same generality as llpointer.h. | Nat Goodspeed | |
Leaving llhandle.h in llui restricts the set of viewer project directories which could potentially use it, and there's nothing whatsoever UI-specific about it. | |||
2012-08-03 | Merge with lindenlab/viewer-development | simon@Simon-PC.lindenlab.com | |
2012-08-03 | Merge of viewer-development (3.4.1). | Monty Brandenberg | |
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-07-31 | Merge in viewer-development | simon@Simon-PC.lindenlab.com | |
2012-07-28 | Automated merge with http://hg.secondlife.com/viewer-development | Nat Goodspeed | |
2012-09-28 | Re-enabling tcmalloc in the build. | William Todd Stinson | |
2012-07-27 | increment version to 3.4.1 | Oz Linden | |