Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-04 | MAINT-5755 FIXED Activating Show Avatar Complexity disables all llSetText ↵ | Mnikolenko ProductEngine | |
(hovertext) until relog | |||
2015-11-03 | MAINT-5820: Add a success/failure result to HTTP body parse method and react ↵ | Rider Linden | |
to that rather than an "undefined" LLSD | |||
2015-11-03 | stopp SLVoice from logging when the timeout for logouts expires. | Bjoseph Wombat | |
2015-11-02 | MAINT-5812: cbegin & cend are not available on all platforms. | Rider Linden | |
2015-11-02 | MAINT-5812: Correctly pull a string from the raw body. Only compare ↵ | Rider Linden | |
languages if detected_language is blank. | |||
2015-11-02 | MAINT-5743 Fixed Remove gpu_table and references to it from viewer packaging | andreykproductengine | |
2015-10-31 | Re-enable llprocess tests, leaving only llleap tests commented out. | Nat Goodspeed | |
2015-10-31 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2015-10-30 | MAINT-5807 WIP - initialize some uninitialized members of LLModelLoader. | Brad Payne (Vir Linden) | |
2015-10-30 | merge changes for 3.8.6-release | Oz Linden | |
2015-10-30 | Merge | AndreyL ProductEngine | |
2015-10-30 | MAINT-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-29 | Merged lindenlab/viewer-lion into default | Andrey Lihatskiy | |
2015-10-28 | Merged lindenlab/viewer-lion into default | Ruslan Teliuk | |
2015-10-28 | MAINT-5762 FIXED Groups - Message about number of groups you can join does ↵ | Mnikolenko ProductEngine | |
not recognize that your account is premium | |||
2015-10-27 | Merge | Rider Linden | |
2015-10-27 | MAINT-5754: For MoaP and MediaCtrls forward all events including KEYUP and ↵ | Rider Linden | |
KEYDOWN to the CEF plugin. | |||
2015-10-27 | Merged lindenlab/viewer-release into default | Rider Linden | |
2015-10-27 | Merged lindenlab/viewer-lion into default | Ruslan Teliuk | |
2015-10-27 | MAINT-3491 FIXED If ALM is enabled while in wireframe mode, disabling ↵ | ruslantproductengine | |
wireframe mode results in a black screen. | |||
2015-10-27 | Merged lindenlab/viewer-lion into default | Ruslan Teliuk | |
2015-10-27 | Merged lindenlab/viewer-lion into default | Andrey Lihatskiy | |
2015-10-27 | MAINT-5758 FIXED "Ban Member" from the group chatters list context menu | AndreyL ProductEngine | |
is greyed out once you have performed a ban, until you load the group members list from group info. | |||
2015-10-27 | MAINT-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-27 | MAINT-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-27 | Merge downstream, version 3.8.7 | AndreyL ProductEngine | |
2015-10-26 | Merge with head of this branch after viewer-release | callum_linden | |
2015-10-26 | Merge with head of viewer release (3.8.6 changes) | callum_linden | |
2015-10-26 | increment viewer version to 3.8.7 | Oz Linden | |
2015-10-26 | Added tag 3.8.6-release for changeset 5a5bd148943b | Oz Linden | |
2015-10-26 | Merge | AndreyL ProductEngine | |
2015-10-26 | Merged viewer-xcode-7 | AndreyL ProductEngine | |
2015-10-26 | MAINT-5760 Save favorite landmarks after renaming | Mnikolenko ProductEngine | |
2015-10-23 | MAINT-5791: Change the way the TOS dialog is retrieved after the site-alive ↵ | Rider Linden | |
test coro. Use handles rather than findTypedInstance. | |||
2015-10-23 | Merged lindenlab/viewer-lion into default | Ruslan Teliuk | |
2015-10-23 | MAINT-5464 FIXED Do not add badge to links that have a port number specified. | AndreyL ProductEngine | |
2015-10-22 | Pull in LLCEFLib changes for OS X cookies (partial) and local web storage quotas | Callum Prentice | |
2015-10-22 | MAINT-5775 FIX Split out cookies and cache directories into separate folders ↵ | callum_linden | |
and move cache to same place as viewer cache | |||
2015-10-22 | MAINT-5788: Do not call set active if TOS window closed before site alive ↵ | Rider Linden | |
test returns. | |||
2015-10-21 | MAINT-5780: Be sure that the LLViewerMediaImpl instance does not get deleted ↵ | Rider Linden | |
while the MIME discovery coroutine is executing. If the refcount on the instance is 1 perform no processing. | |||
2015-10-21 | Fix windows line endings | callum_linden | |
2015-10-21 | MAINT-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(). | |||
2015-10-21 | MAINT-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(). | |||
2015-10-21 | MAINT-5759 FIXED URL links in the UI with non-English characters, ↵ | Mnikolenko ProductEngine | |
diacritics, don't get parsed correctly. | |||
2015-10-20 | silly typo that builds on windows - this fixes mac/linux builds | callum_linden | |
2015-10-20 | Merge with tip of viewer-release | callum_linden | |
2015-10-20 | MAINT-5711 FIX2 auto login for profiles - final part retrieves the URL to ↵ | callum_linden | |
set cookie for from the message sent over by login.cgi | |||
2015-10-19 | MAINT-5711 FIX profiles and marketplace are asking for a login each session | callum_linden | |
2015-10-19 | MAINT-5732: Behavior #2. Be sure that the internet stream is stopped before ↵ | Rider Linden | |
destroying the streaming audio interface. Otherwise FMODEX blocks on close. | |||
2015-10-19 | Merged lindenlab/viewer-lion into default | Ruslan Teliuk | |