summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-11-10MergeRider Linden
2015-11-10Added code to initiate controlled shutdown of plugins with timeouts for ↵Rider Linden
misbeahving plugin.
2015-11-10MAINT-5829 FIXED About Land floater defectandreykproductengine
2015-11-09Fix MAINT-5773 Surface Plugins Enabled as a preference and default to OFFcallum_linden
2015-11-09pull in new LLCEFLib code with fix for OS X keyboardCallum Prentice
2015-11-09Undo the clobbering that the PR did :)callum_linden
2015-11-07Mergerider
2015-11-07MAINT-5754: Finish key modifier experiment. Still not working.rider
2015-11-06Pull in LLCEFLib with working OS X cookies and tweak keyboard code to build ↵callum_linden
- needs some love to work...
2015-11-06MAINT-5754: Basic keyboard functionality on the Mac. Still incompleterider
2015-11-05SL-192 Edit Experience Profile shows up once an Exp is acquiredandreykproductengine
2015-11-04Merge MAINT-5807 form viewer-bearAndreyL ProductEngine
2015-11-04MAINT-5821 FIXED Giant spew of XUI messages in SecondLife.logMnikolenko ProductEngine
2015-11-04MAINT-5807 WIP - show skin weights checkbox also not properly initialized.Brad Payne (Vir Linden)
2015-11-04MAINT-5755 FIXED Activating Show Avatar Complexity disables all llSetText ↵Mnikolenko ProductEngine
(hovertext) until relog
2015-11-02MAINT-5743 Fixed Remove gpu_table and references to it from viewer packagingandreykproductengine
2015-11-02MAINT-5620 double clicking on Graphics Preset title triggers favoriteandreykproductengine
2015-10-30MAINT-5807 WIP - initialize some uninitialized members of LLModelLoader.Brad Payne (Vir Linden)
2015-10-30MergeAndreyL ProductEngine
2015-10-30MAINT-5796 FIXED Double clicking on anything in COF removes it from your ↵Mnikolenko ProductEngine
avatar - including skin, shape, hairbase and eyes - results in bakefailed avatar
2015-10-29Merged lindenlab/viewer-lion into defaultAndrey Lihatskiy
2015-10-28Merged lindenlab/viewer-lion into defaultRuslan Teliuk
2015-10-28MAINT-5762 FIXED Groups - Message about number of groups you can join does ↵Mnikolenko ProductEngine
not recognize that your account is premium
2015-10-27MergeRider Linden
2015-10-27MAINT-5754: For MoaP and MediaCtrls forward all events including KEYUP and ↵Rider Linden
KEYDOWN to the CEF plugin.
2015-10-27Merged lindenlab/viewer-lion into defaultRuslan Teliuk
2015-10-27MAINT-3491 FIXED If ALM is enabled while in wireframe mode, disabling ↵ruslantproductengine
wireframe mode results in a black screen.
2015-10-27Merged lindenlab/viewer-lion into defaultRuslan Teliuk
2015-10-27correct merge error spotted by AnsarielOz Linden
2015-10-27merge fix for BUG-7387Oz Linden
2015-10-27Merged lindenlab/viewer-lion into defaultAndrey Lihatskiy
2015-10-27MAINT-5758 FIXED "Ban Member" from the group chatters list context menuAndreyL ProductEngine
is greyed out once you have performed a ban, until you load the group members list from group info.
2015-10-27MAINT-5760 FIXED Favorites sort order reverts every session and no favorites ↵Mnikolenko ProductEngine
display at the login screen for single name "Resident" accounts.
2015-10-27MAINT-5760 FIXED Favorites sort order reverts every session and no favorites ↵Mnikolenko ProductEngine
display at the login screen for single name "Resident" accounts.
2015-10-27Merge downstream, version 3.8.7AndreyL ProductEngine
2015-10-26Merge with head of this branch after viewer-releasecallum_linden
2015-10-26Merge with head of viewer release (3.8.6 changes)callum_linden
2015-10-26merge changes for 3.8.6-releaseOz Linden
2015-10-26merge changes for MAINT-5673Oz Linden
2015-10-26increment viewer version to 3.8.7Oz Linden
2015-10-26Added tag 3.8.6-release for changeset 5a5bd148943bOz Linden
2015-10-26MergeAndreyL ProductEngine
2015-10-26Merged viewer-xcode-7AndreyL ProductEngine
2015-10-26MAINT-5760 Save favorite landmarks after renamingMnikolenko ProductEngine
2015-10-23Merged lindenlab/viewer-lion into defaultRuslan Teliuk
2015-10-23MAINT-5464 FIXED Do not add badge to links that have a port number specified.AndreyL ProductEngine
2015-10-22Pull in LLCEFLib changes for OS X cookies (partial) and local web storage quotasCallum Prentice
2015-10-22MAINT-5775 FIX Split out cookies and cache directories into separate folders ↵callum_linden
and move cache to same place as viewer cache
2015-10-21Fix windows line endingscallum_linden
2015-10-21MAINT-4360 FIXED (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().