summaryrefslogtreecommitdiff
path: root/indra
AgeCommit message (Collapse)Author
2015-12-01MAINT-1109 Toggling graphics options causes viewer memory to increase, ↵ruslantproductengine
eventually causing the rendering pipeline to fall over and crashing the viewer Te reason of memory leak - unloaded shaders. Fixed.
2015-12-01linux build fixMnikolenko ProductEngine
2015-11-27MAINT-5871 FIXED Duplicate Calling Card created for each friend on login.andreykproductengine
2015-11-30MAINT-5760 Favorites should be saved if you log-in after cleaning settings ↵Mnikolenko ProductEngine
and logout without any changes to favorites.
2015-11-26Merged in andreyl_productengine/viewer-lion-marchcat (pull request #10)Andrey Lihatskiy
MAINT-5903
2015-11-25MAINT-5903 FIXED Resident's name is not automatically filled into the ↵AndreyL ProductEngine
resident chooser for the group invite if he isn't in the friends list and not in the same region
2015-11-24SL-192 Edit Experience Profile shows up once an Exp is acquiredandreykproductengine
2015-11-24MergeAndreyL ProductEngine
2015-11-24MAINT-5892 Added the comments to the function parametersAndreyL ProductEngine
2015-11-24MAINT-5893 FIXED Issue with muted agent's attached lighting still rendering.Mnikolenko ProductEngine
2015-11-23MAINT-5688 FIXED Viewer crashes when user in DnD calling to another user ↵Mnikolenko ProductEngine
also in DnD
2015-11-23MAINT-5892 FIXED Alt camming on rigged mesh makes the camera judder, get ↵AndreyL ProductEngine
stuck or fly off into the distance.
2015-11-19MAINT-5297 Backed out changeset: bfef055de5f5AndreyL ProductEngine
2015-11-19MAINT-5297 Backed out changeset: dd9e3cbf10e5AndreyL ProductEngine
2015-11-19MAINT-5847 Backed out changeset: 114068a17d38AndreyL ProductEngine
2015-11-19MAINT-5064 FIXED Mesh upload attempt causes viewer to freezeandreykproductengine
2015-11-18MAINT-5876 FIXED Facial expressions & Preview while not working in many ↵Mnikolenko ProductEngine
languages when importing animations
2015-11-17MAINT-5495 linux build fixandreykproductengine
2015-11-17MAINT-5870 FIXED Texture mapping drop down overlaps color thumbnail.andreykproductengine
2015-11-13MAINT-5495 FIXED Drag and Drop no copy items from object contents to ↵andreykproductengine
inventory creates multiple pop ups
2015-11-17MAINT-5837 FIXED Hovering text is displayed when the avatar is blockedMnikolenko ProductEngine
2015-11-12Merged lindenlab/viewer-lion into defaultAndrey Lihatskiy
2015-11-12MAINT-5847 FIXED Crash on attempt to IM related to global toggle of people iconsAndreyL ProductEngine
2015-11-11MAINT-5728 fix for dae uploading crashandreykproductengine
2015-11-11Backed out changeset: a79540758404ruslantproductengine
Need backed out this changes because it influence on material update see: MAINT-5818 Also this lead to the following: UserA and UserB logged in same location. UserA edit normal/specular map texture offsets while UserB is not observe this changes.
2015-11-10MAINT-5829 FIXED About Land floater defectandreykproductengine
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-10-30MAINT-5807 WIP - initialize some uninitialized members of LLModelLoader.Brad Payne (Vir Linden)
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-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-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-27Merge downstream, version 3.8.7AndreyL ProductEngine
2015-10-26increment viewer version to 3.8.7Oz 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-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().