Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-05 | merge | Brad Payne (Vir Linden) | |
2013-11-20 | SH-4611 WIP | Brad Payne (Vir Linden) | |
2013-11-12 | Merge. Refresh from viewer-release after 3.6.10 release | Monty Brandenberg | |
2013-11-12 | SH-4030 FIX | Brad Payne (Vir Linden) | |
2013-11-11 | Automated merge with http://bitbucket.org/lindenlab/viewer-release | Richard Linden | |
2013-11-07 | fix for SH-3959: Make sure baked textures cache and load from cache correctly. | Xiaohong Bao | |
2013-09-11 | SH-4490 More 'humane' error code presentation from llcorehttp callers | Monty Brandenberg | |
Added toTerseString() conversion on HttpStatus to generate a string that's more descriptive than the hex value of the HttpStatus value but still forms a short, searchable token (e.g. "Http_503" or "Core_7"). Using this throughout the viewer now, no live cases of toHex(), I believe. | |||
2013-08-26 | Merge. Pull in viewer-release after SSA merge. | Monty Brandenberg | |
2013-08-22 | merge | Brad Payne (Vir Linden) | |
2013-08-18 | SH-4433 WIP: Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
continued conversion to units system made units perform type promotion correctly and preserve type in arithmetic e.g. can now do LLVector3 in units added typedefs for remaining common unit types, including implicits | |||
2013-08-15 | moved unit types out of LLUnits namespace, since they are prefixed | Richard Linden | |
2013-08-14 | BUILDFIX: added header for numeric_limits support on gcc | Richard Linden | |
added convenience types for units F32Seconds, etc. | |||
2013-10-04 | MAINT-3270 FIXED crash in LLControlCache<unsigned int>::LLControlCache: ↵ | maksymsproductengine | |
Control named RenderAutoMuteFunctionsnot found | |||
2013-08-09 | second phase summer cleaning | Richard Linden | |
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc. | |||
2013-07-18 | Merge. Refresh from viewer-release. | Monty Brandenberg | |
2013-07-15 | SH-4299Interesting: High fps shown temporarily off scale in statistics console | Richard Linden | |
various fixes to lltrace start() on started recording no longer resets fixed various instances of unit forgetfullness in lltrace recording split now has gapless timing scene monitor now guarantees min sample time renamed a bunch of stats added names to debug thread view on windows | |||
2013-07-08 | SH-4299 WIP: Interesting: High fps shown temporarily off scale in statistics ↵ | Richard Linden | |
console added percentage/ratio units added auto-range and auto tick calculation to stat bar to automate display stats | |||
2013-06-28 | SH-4299 FIX Interesting: High fps shown temporarily off scale in statistics ↵ | Richard Linden | |
console added ability to force uniqueness of LLCopyOnWritePointer converted more variables to units added convenience function for unit constants | |||
2013-06-20 | Automated merge with http://bitbucket.org/lindenlab/viewer-release | Dave Parks | |
2013-06-19 | Fixups for the transplant of the HttpHeader changes from sunshine. | Monty Brandenberg | |
2013-06-19 | merge 3.5.0-release | Oz Linden | |
2013-06-13 | SH-4250 WIP - logging tweaks and cleanup | Brad Payne (Vir Linden) | |
2013-06-05 | merge with viewer-release | Richard Linden | |
2013-05-29 | SH-3931 WIP Interesting: Add graphs to visualize scene load metrics | Richard Linden | |
fixed copy construction behavior of Recordings to not zero out data split measurement into event and sample, with sample representing a continuous function | |||
2013-04-30 | Merge 3.5.1 into Materials | Graham Madarasz | |
2013-04-18 | SH-4128 WIP - use the AISv3 inventory cap when available for cof link ↵ | Brad Payne (Vir Linden) | |
deletion, hook in to callback mechanism so all link operations should be done before outfit is worn. | |||
2013-04-17 | SH-4061 WIP - request headers for server-bake images | Brad Payne (Vir Linden) | |
2013-04-16 | SH-4061 WIP - fix for build issues on mac, reset the retry policy on success. | Brad Payne (Vir Linden) | |
2013-04-16 | SH-4061 WIP - cleanup | Brad Payne (Vir Linden) | |
2013-04-15 | SH-4061 - integrated LLHttpRetryPolicy with new corehttp header parsing | Brad Payne (Vir Linden) | |
2013-04-15 | SH-4061 WIP - comments, timing of retries | Brad Payne (Vir Linden) | |
2013-04-15 | SH-4061 WIP - moved all retry logic into lltexturefetch, some cleanup. Debug ↵ | Brad Payne (Vir Linden) | |
setting now defines a fake failure rate. | |||
2013-04-15 | SH-4061 WIP - simulated failures/image fetch retries | Brad Payne (Vir Linden) | |
2013-04-15 | SH-4106 Significantly upgrade the HttpHeaders interface for SSB. | Monty Brandenberg | |
Header container moves from a vector of raw lines to a vector of string pairs representing name/value pairs in headers. For incoming headers, we normalize the name to lowercase and trim it. Values are only left-trimmed. Outgoing headers are left as-is. Simple find() method for the common case, forward and reverse iterators for those few who need to do it themselves. The HTTP status line (e.g. 'HTTP/1.1 200 Ok') is no longer treated as a header to be returned to caller. Unit tests, as usual, were a bear but they absolutely ensured outgoing HTTP header conformance after the change. Grunt work paid off. LLTextureFetch was also given a second options structure for texture fetches. Same as the original but with header return to caller requested. Baked textures should use this, the other 20,000 texture fetch requests should continue to use the original. | |||
2013-06-19 | SH-4252 Add second policy class for large mesh asset downloads | Monty Brandenberg | |
Added second mesh class as well as an asset upload class. Refactored initialization to use less code and more data to cleanly get http started. Modified mesh to use the new http class for large requests (>2MB for now). Added additional timeout setting to llcorehttp to distinguish connection timeout from transport timeout and are now using transport timeout values for large asset downloads that may need more time. | |||
2013-04-15 | SH-4106 Significantly upgrade the HttpHeaders interface for SSB. | Monty Brandenberg | |
Header container moves from a vector of raw lines to a vector of string pairs representing name/value pairs in headers. For incoming headers, we normalize the name to lowercase and trim it. Values are only left-trimmed. Outgoing headers are left as-is. Simple find() method for the common case, forward and reverse iterators for those few who need to do it themselves. The HTTP status line (e.g. 'HTTP/1.1 200 Ok') is no longer treated as a header to be returned to caller. Unit tests, as usual, were a bear but they absolutely ensured outgoing HTTP header conformance after the change. Grunt work paid off. LLTextureFetch was also given a second options structure for texture fetches. Same as the original but with header return to caller requested. Baked textures should use this, the other 20,000 texture fetch requests should continue to use the original. | |||
2013-04-11 | Merge | simon | |
2013-04-11 | SH-4061 WIP - started adding retry to texture fetch, making retry policy ↵ | Brad Payne (Vir Linden) | |
compatible with old and new http libraries | |||
2013-04-10 | SH-4061 WIP - less log spamming for (expected and normal) map tile failures. | Brad Payne (Vir Linden) | |
2013-04-10 | SH-4061 WIP - capture http status codes from requests, restrict SB fetch ↵ | Brad Payne (Vir Linden) | |
retries to 5xx errors | |||
2013-04-08 | SH-4061 FIX - texture fetch failures added retry logic and fault injection ↵ | Brad Payne (Vir Linden) | |
for testing | |||
2013-04-04 | Renaming HTTP_HEADER_* into HTTP_IN_HEADER_* and HTTP_OUT_HEADER_* to make ↵ | Don Kjer | |
it more clear which header strings should be used for incoming vs outgoing situations. Using constants for commonly used llhttpnode context strings. | |||
2013-03-27 | pulling in sunshine-stable | Nyx Linden | |
2013-03-22 | SH-3850 WIP - fixed some warnings | Brad Payne (Vir Linden) | |
2013-03-22 | SH-3850 WIP - added some additional debugging output to try to catch gray ↵ | Brad Payne (Vir Linden) | |
textures | |||
2013-03-22 | merge with viewer-release | Richard Linden | |
2013-03-20 | merging in changes from sunshine-stable | Nyx Linden | |
2013-03-19 | still more build failure fixing | Brad Payne (Vir Linden) | |
2013-03-18 | SH-3980 FIX - fixed most cases of server-bake blurring by disabling caching ↵ | Brad Payne (Vir Linden) | |
of server bakes. A better solution is desirable, may not be for initial release | |||
2013-03-18 | Fix for build error | Brad Payne (Vir Linden) | |