Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-03 | Changes from code review with Nat | Rider Linden | |
2015-09-03 | Region experience allow/disallow. | Rider Linden | |
2015-09-03 | Correct use of filename vs. path in llfeaturemanager coroutine. | Rider Linden | |
2015-09-03 | Moved group experiences into experience cache. Use coros and new HTTP libs. | Rider Linden | |
2015-09-03 | MAINT-5268 (Rotating an object that's used as grid reference goes crazy) | ruslantproductengine | |
2015-09-03 | MAINT-5378 fixing minor issues | andreykproductengine | |
2015-09-02 | Add support for copy/cut/paste into and out of browser | callum_linden | |
(Note - feature in LLQtWebKit (canPaste, canCut etc.) not present so right click menu always enables options | |||
2015-09-02 | Closed branch MAINT-5575 | Rider Linden | |
--HG-- branch : MAINT-5575 | |||
2015-09-02 | Moved find experience into experience cache (moved cache recording into ↵ | Rider Linden | |
cache and out of UI) changed from responder to coroutine. | |||
2015-09-02 | Use boost assign to initialize default pool sizes. | Rider Linden | |
2015-09-02 | MAINT-5297 FIXED Allow global toggle of 'View People Icons' | Andrey Lihatskiy | |
2015-09-02 | Move associated experience fetching into the ExperienceCache as a coro ↵ | Rider Linden | |
remove the responder. | |||
2015-09-02 | MAINT-5570: add explanation links to complexity messages (using temporary ↵ | Oz Linden | |
wiki links) | |||
2015-09-02 | request that tpvs not change avatar complexity calculation | Oz Linden | |
2015-09-01 | In Linux build skip url entry test | Rider Linden | |
2015-09-01 | Remove debugging crud | callum_linden | |
2015-09-01 | get update llceflib with cookie/cache code and implement cache/cookie ↵ | callum_linden | |
folders in viewer | |||
2015-09-01 | One of the tests defined a namespace in order to fake out the libraries. ↵ | Rider Linden | |
Removed it. | |||
2015-09-01 | Merge | Rider Linden | |
2015-09-01 | MAINT-5575: Convert the Experience cache into a coro based singleton. | Rider Linden | |
--HG-- branch : MAINT-5575 | |||
2015-09-02 | MAINT-5297 Allow global toggle of 'View People Icons' - Global switch part | AndreyL ProductEngine | |
--HG-- branch : develop | |||
2015-09-01 | MAINT-5297 Allow global toggle of 'View People Icons' - Chat window part | AndreyL ProductEngine | |
--HG-- branch : develop | |||
2015-09-01 | Created a branch | AndreyL ProductEngine | |
--HG-- branch : develop | |||
2015-09-01 | merge | Brad Payne (Vir Linden) | |
2015-09-01 | MAINT-5570 FIXED [QuickGraphics] Visual complexity notifications are confusing. | andreykproductengine | |
2015-09-02 | merge | Oz Linden | |
2015-09-01 | Merged lindenlab/viewer-lion into default | Andrey Lihatskiy | |
2015-09-01 | MAINT-5556 FIXED Active listing folder stays listed, with empty Version folder | Mnikolenko ProductEngine | |
2015-08-31 | add defaults for avatar rendering controls | Oz Linden | |
2015-08-31 | fix type | Oz Linden | |
2015-08-31 | add some debug logging, fix broken indentation | Oz Linden | |
2015-08-31 | Merge with viewer-release | callum_linden | |
2015-08-31 | SL-133 WIP, SL-134 WIP - more handling for out-of-range joints | Brad Payne (Vir Linden) | |
2015-08-31 | MAINT-5378 Added message for case when everyone can see you again | andreykproductengine | |
2015-08-31 | Some initial changes to convert the experience cache to a singleton | Rider Linden | |
--HG-- branch : MAINT-5575 | |||
2015-08-30 | Backed out changeset: f471282aa065 | ruslantproductengine | |
--HG-- branch : MAINT-4360 | |||
2015-08-28 | MAINT-5575: Begin conversion to Singleton<> for Experience Cache. Commited ↵ | Rider Linden | |
on branch so that I don't trigger a build of it until I'm ready. --HG-- branch : MAINT-5575 | |||
2015-08-28 | Merged lindenlab/viewer-lion into default | Andrey Lihatskiy | |
2015-08-28 | MAINT-5574: Added default parameter for callbalk on AISAPI interface. | Rider Linden | |
Better check on callback exsit in coroutine Don't create AISAPI::completion_t if there is no call back passed. | |||
2015-08-28 | MAINT-4360 (Setting LogTextureDownloadsToSimulator causes a viewer crash) | ruslantproductengine | |
The fix in fllowing: LLTextureFetch has object LLTextureInfo which is has Recorder object. The recorder object activate (Recorder::handleStart()) self AccumulatorBufferGroup (Recorder::mBuffers into the current (LLTrace::get_thread_recorder()) ThreadRecorder object which created (as I understand) one per thread, and time to time send accumulated data to the master ThreadRecorder. The problem is that LLTextureFetch also can uses from the main thread. I decide add parameter to CTOR LLTextureInfo(bool postponeStartRecoreder) - if it false the recorder start immediatly in LLTextureInfo CTOR body, if true we need to start it manually. Also I add another one LLTextureInfo in LLTextureFetch::mTextureInfoMainThread which is intended for accumulate data from the main thread. The postponed Recorder started/stoped from LLTextureFetch::startThread()/endThread(). --HG-- branch : MAINT-4360 | |||
2015-08-28 | MAINT-4483 (Mesh uploader allows Low LODs to have more triangles than High LODs) | ruslantproductengine | |
The fix in fllowing: LLTextureFetch has object LLTextureInfo which is has Recorder object. The recorder object activate (Recorder::handleStart()) self AccumulatorBufferGroup (Recorder::mBuffers into the current (LLTrace::get_thread_recorder()) ThreadRecorder object which created (as I understand) one per thread, and time to time send accumulated data to the master ThreadRecorder. The problem is that LLTextureFetch also can uses from the main thread. I decide add parameter to CTOR LLTextureInfo(bool postponeStartRecoreder) - if it false the recorder start immediatly in LLTextureInfo CTOR body, if true we need to start it manually. Also I add another one LLTextureInfo in LLTextureFetch::mTextureInfoMainThread which is intended for accumulate data from the main thread. The postponed Recorder started/stoped from LLTextureFetch::startThread()/endThread(). --HG-- branch : MAINT-4360 | |||
2015-08-28 | MAINT-5557 FIXED [QuickGraphics] Estimates of how many users can show you ↵ | andreykproductengine | |
are incorrect immediately after changing an outfit. | |||
2015-08-28 | MAINT-5443 FIXED Appearance menu does not display gestures in outfit | andreykproductengine | |
2015-08-28 | MAINT-5548 FIXED Don't update snapshot when resizing Viewer if snapshot ↵ | Mnikolenko ProductEngine | |
floater is closed. | |||
2015-08-27 | Convert LSL script preview compilation exp request | Rider Linden | |
2015-08-27 | MAINT-5331 FIXED Advanced Graphics Preferences floater is too tall | Mnikolenko ProductEngine | |
2015-08-27 | build fix | Mnikolenko ProductEngine | |
2015-08-26 | Convert exp floater to use coroutines | Rider Linden | |
Convert script queue compilation exp request | |||
2015-08-26 | refine messages per MAINT-5376 (no percentage) | Oz Linden | |
2015-08-26 | MAINT-5532 related crash fix and some log improvements | andreykproductengine | |