Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-01 | MAINT-4761 FIXED viewer crash (Crash after selecting 'Skin weights' checkbox ↵ | vyacheslavsproductengine | |
when uploading the second model.) | |||
2015-04-28 | Merge viewer-release, become version 3.7.29 | Mnikolenko ProductEngine | |
2015-04-24 | MAINT-4796 FIXED Crash in LLModelLoader::loadFromSLM | andreykproductengine | |
2015-04-13 | merge changes for 3.7.27-release | Oz Linden | |
2015-04-10 | restore the ll[io]fstream because we need them as wrappers on Windows for ↵ | Oz Linden | |
wide char paths; on other platforms they are now just typedefs to the std classes | |||
2015-04-07 | replace llifstream and llofstream with std::ifstream and std::ofstream ↵ | Oz Linden | |
respectively | |||
2015-04-07 | convert llifstream and llofstream to std::ifstream and std::ofstream ↵ | Oz Linden | |
respectively | |||
2015-03-26 | MAINT-3818 FIXED Certain dae files that used to display skin weights ↵ | ruslantproductengine | |
successfully now crash when ticking skin weights in model preview on ALL viewers | |||
2015-01-13 | merge changes for 3.7.24-release | Oz Linden | |
2014-12-02 | merge | Brad Payne (Vir Linden) | |
2014-12-02 | MAINT-3494 FIXED Generate Normals checkbox does not control generation of ↵ | ruslantproductengine | |
normals. Patchset #3 (remove std::move()) | |||
2014-11-28 | MAINT-3494 FIXED Generate Normals checkbox does not control generation of ↵ | ruslantproductengine | |
normals. | |||
2014-10-30 | SL-93 - WIP on managing pelvis fixups using new joint offset framework | Brad Payne (Vir Linden) | |
2014-10-18 | Update to build on Xcode 6.0: remove lots of unused variables | callum_linden | |
2014-10-08 | Switched to keying joint offsets by mesh id | Brad Payne (Vir Linden) | |
2014-10-08 | Switched to keying joint offsets by mesh id | Brad Payne (Vir Linden) | |
2014-09-05 | MAINT-4158 cleanup | Brad Payne (Vir Linden) | |
2014-08-28 | MAINT-4158 WIP - track position overrides requested by attachments so they ↵ | Brad Payne (Vir Linden) | |
can be undone intelligently | |||
2014-08-27 | WIP on attachment offset management in joints | Brad Payne (Vir Linden) | |
2014-09-05 | MAINT-4158 cleanup | Brad Payne (Vir Linden) | |
2014-08-28 | MAINT-4158 WIP - track position overrides requested by attachments so they ↵ | Brad Payne (Vir Linden) | |
can be undone intelligently | |||
2014-08-27 | WIP on attachment offset management in joints | Brad Payne (Vir Linden) | |
2014-05-13 | sunshine-external merge WIP | Brad Payne (Vir Linden) | |
2014-02-12 | merge with release | Richard Linden | |
2014-02-11 | merge | Brad Payne (Vir Linden) | |
2013-12-11 | OPEN-113 Use better way of testing for stub that will not impact TPVs. | Jonathan Yap | |
2013-12-11 | OPEN-113 Build > Upload > Model > Calculate weights & fee is not disabled in ↵ | Jonathan Yap | |
OS built viewers | |||
2013-11-12 | SH-4620 FIX Droplist and spinner overlap edit field and “Browse” button ↵ | Richard Linden | |
in the Upload Model window bad visibility setting logic | |||
2013-11-05 | further fix of inventory keyboard focus and tab order calculations | Richard Linden | |
2013-10-16 | merge | Brad Payne (Vir Linden) | |
2013-10-08 | merge from viewer-release | Richard Linden | |
2013-08-09 | second phase summer cleaning | Richard Linden | |
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc. | |||
2013-06-20 | merge with release | Richard Linden | |
2013-06-05 | merge with viewer-release | Richard Linden | |
2013-04-11 | Merge in downstream code (chui fixes, materials) | simon | |
2013-03-22 | merge with viewer-release | Richard Linden | |
2013-03-13 | Merging LLCURL::Responder changes with CHUI changes. Fixed gcc 4.6 compile ↵ | Don Kjer | |
failures | |||
2013-03-13 | Large changes to the LLCurl::Responder API, as well as pulling in some ↵ | Don Kjer | |
changes to common libraries from the server codebase: * Additional error checking in http handlers. * Uniform log spam for http errors. * Switch to using constants for http heads and status codes. * Fixed bugs in incorrectly checking if parsing LLSD xml resulted in an error. * Reduced spam regarding LLSD parsing errors in the default completedRaw http handler. It should not longer be necessary to short-circuit completedRaw to avoid spam. * Ported over a few bug fixes from the server code. * Switch mode http status codes to use S32 instead of U32. * Ported LLSD::asStringRef from server code; avoids copying strings all over the place. * Ported server change to LLSD::asBinary; this always returns a reference now instead of copying the entire binary blob. * Ported server pretty notation format (and pretty binary format) to llsd serialization. * The new LLCurl::Responder API no longer has two error handlers to choose from. Overriding the following methods have been deprecated: ** error - use httpFailure ** errorWithContent - use httpFailure ** result - use httpSuccess ** completed - use httpCompleted ** completedHeader - no longer necessary; call getResponseHeaders() from a completion method to obtain these headers. * In order to 'catch' a completed http request, override one of these methods: ** httpSuccess - Called for any 2xx status code. ** httpFailure - Called for any non-2xx status code. ** httpComplete - Called for all status codes. Default implementation is to call either httpSuccess or httpFailure. * It is recommended to keep these methods protected/private in order to avoid triggering of these methods without using a 'push' method (see below). * Uniform error handling should followed whenever possible by calling a variant of this during httpFailure: ** llwarns << dumpResponse() << llendl; * Be sure to include LOG_CLASS(your_class_name) in your class in order for the log entry to give more context. * In order to 'push' a result into the responder, you should no longer call error, errorWithContent, result, or completed. * Nor should you directly call httpSuccess/Failure/Completed (unless passing a message up to a parent class). * Instead, you can set the internal content of a responder and trigger a corresponding method using the following methods: ** successResult - Sets results and calls httpSuccess ** failureResult - Sets results and calls httpFailure ** completedResult - Sets results and calls httpCompleted * To obtain information about a the response from a reponder method, use the following getters: ** getStatus - HTTP status code ** getReason - Reason string ** getContent - Content (Parsed body LLSD) ** getResponseHeaders - Response Headers (LLSD map) ** getHTTPMethod - HTTP method of the request ** getURL - URL of the request * It is still possible to override completeRaw if you want to manipulate data directly out of LLPumpIO. * See indra/llmessage/llcurl.h for more information. | |||
2013-03-08 | SH-3959 WIP - pass information about type of fetched image - server bake, ↵ | Brad Payne (Vir Linden) | |
host bake, map tile, etc - down the chain so LLTextureFetchWorker can adjust behavior as needed | |||
2013-03-07 | For MAINT-2436 and MAINT-2388 contribs from STORM-1935 and STORM-1936 | Graham Madarasz (Graham) | |
2013-03-06 | For MAINT-1842 fix model validation to check for NaNs | Graham Madarasz | |
2013-01-24 | merging in viewer-beta. | Nyx Linden | |
Most of the merge was clean, a couple conflicts. Brought over a couple patches manually for llpolymesh. | |||
2012-11-15 | SH-3406 WIP convert fast timers to lltrace system | Richard Linden | |
eliminated min and max macros from windows.h got rest of viewer to compile against llfasttimer changes | |||
2012-10-23 | MAINT-1567 cleanup some gcc warnings | Dave Parks | |
2012-10-23 | MAINT-1567 Fix for incorrect triangle and hull counts in mesh importer. | Dave Parks | |
Reviewed by VoidPointer | |||
2012-10-16 | MAINT-643 Fix for incorrect lighting and colors in preview displays. | Dave Parks | |
2012-10-12 | MAINT-1568 Fix for inconsistent triangle counts when changing LoD sources in ↵ | Dave Parks | |
model importer | |||
2012-10-11 | Updating linux build to gcc4.6 | Don Kjer | |
2012-09-04 | Split gl-specific LLViewerTexture implementation into llrender/LLGLViewerTexture | Don Kjer | |
2012-07-24 | merge to viewer-developmento | Oz Linden | |