Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-01 | merge conflict fix | Mnikolenko Productengine | |
2022-02-28 | Merge branch 'master' into DRTVWR-544-maint | Andrey Lihatskiy | |
# Conflicts: # indra/llaudio/llstreamingaudio_fmodstudio.cpp # indra/newview/llviewerregion.cpp | |||
2022-02-28 | Increment viewer version to 6.5.4 | Nat Goodspeed | |
following promotion of DRTVWR-557 | |||
2022-02-28 | SL-16939 FIXED Graphics driver version is not displayed for Portuguese language | Mnikolenko Productengine | |
2022-02-23 | Debug Fmod with logging #2 | Andrey Kleshchev | |
2022-02-23 | Debug Fmod with logging | Andrey Kleshchev | |
2022-02-14 | Restored SL-14961 | Andrey Kleshchev | |
SL-14961 works better for windows than rethrow | |||
2022-02-12 | SL-4488 Fixed ambiguity mapped weights to vertices in uploader | Andrey Kleshchev | |
Were not displaying and uploading correctly. | |||
2022-02-11 | SL-10190: Add menu commands to force AV or exception in coroutine. | Nat Goodspeed | |
"Bad memory access" and "unhandled exception" are the two categories of error that we expect might be different in a coroutine than in the viewer's main fiber. Without this change, we've had no reliable way to force either of those to occur. This will require translation work for two new menu items. # Conflicts: # indra/newview/skins/default/xui/en/menu_viewer.xml | |||
2022-02-11 | SL-10190: Slightly reduce conditional clutter in llcoros.{h,cpp}. | Nat Goodspeed | |
Rename 'winlevel()' to 'sehandle()'; change it from a static member function to a free function, thus eliminating the conditional in llcoros.h. Elsewhere than Windows, provide a zero-cost pass-through sehandle() implementation, eliminating the conditional in toplevel(). # Conflicts: # indra/llcommon/llcoros.cpp # indra/llcommon/llcoros.h | |||
2022-02-11 | SL-10190: Introduce LLCoros::saveException() and rethrow(). | Nat Goodspeed | |
This mechanism uses a queue of std::exception_ptrs to transport an (otherwise) uncaught exception from a terminated coroutine to the thread's main fiber. The main loop calls LLCoros::rethrow() just after giving some cycles to ready coroutines that frame. # Conflicts: # indra/llcommon/llcoros.cpp # indra/llcommon/llcoros.h # indra/newview/llappviewer.cpp | |||
2022-02-11 | Revert "SL-14961 Coroutine crash was not reported to bugsplat" | Andrey Kleshchev | |
Will be replaced with retrow from nat | |||
2022-02-11 | SL-1370 Add more memory logging to mesh repository | Andrey Kleshchev | |
2022-02-10 | SL-16789 FIXED [MAC] only default cursor is shown after nstalling the Viewer ↵ | Mnikolenko Productengine | |
in a directory with a non-ASCII name | |||
2022-02-09 | SL-16827 Play doesn't start audio if audio reached end | Andrey Kleshchev | |
2022-02-09 | SL-16827 Time slider not working for some music | Andrey Kleshchev | |
2022-02-09 | SL-13470 Media on a prim loops when it should not | Andrey Kleshchev | |
2022-02-08 | Merged in SL-98 (pull request #864) | Howard Stearns | |
SL-98 - Render a "ground plane" in the model upload preview, so users can see any added offset Approved-by: Andrey Kleshchev Approved-by: Andrey Lihatskiy | |||
2022-02-08 | SL-98 - Remove dead code | Howard Stearns | |
2022-02-08 | Merge branch 'DRTVWR-555' into DRTVWR-553+555 | Andrey Lihatskiy | |
# Conflicts: # autobuild.xml # indra/newview/llappviewer.cpp # indra/newview/viewer_manifest.py | |||
2022-02-08 | SL-16757 FIXED [Mac] third-person cursor doesn't return after switching away ↵ | Mnikolenko ProductEngine | |
from app and back | |||
2022-02-07 | SL-16778 handle shutdown exceptions | Andrey Kleshchev | |
These exceptions are expected and do not need to be logged | |||
2022-02-05 | SL-16799 Clean up use of hardcoded folder names | Andrey Kleshchev | |
2022-02-04 | SL-98 - Remove special new tab-specific display behavior | Howard Stearns | |
2022-02-04 | SL-98 - move new renderGroundPlane from LLVOAvatar to LLModelPreview | Howard Stearns | |
2022-02-04 | SL-98 - Guessing at what might make MS compiler happier. | Howard Stearns | |
2022-02-04 | SL-98 - Render a "ground plane" in the model upload preview, so users can ↵ | Howard Stearns | |
see any added offset | |||
2022-02-03 | SL-16755 Show alert that download is not supported instead of failing silently | Andrey Kleshchev | |
2022-02-03 | DRTVWR-555 Sign SLVersionChecker with the hardened runtime | Andrey Lihatskiy | |
2022-02-02 | SL-16630 Notarization script update | Andrey Lihatskiy | |
(cherry picked from commit 5fcb811aa2b455cebf18830cf0cdef14025dacdb) | |||
2022-02-02 | SL-11011 Multiselect, scroll to selection and search fix for estate's ban list | Andrey Kleshchev | |
2022-02-02 | SL-16758 Show light controls regardless of current graphic settings | Mnikolenko Productengine | |
2022-02-02 | SL-14769 Allow to log-in, even if there's an inventory error | Mnikolenko Productengine | |
2022-02-02 | SL-16746 Avatar animation preview shouldn't show skirt | Andrey Kleshchev | |
2022-02-02 | SL-16755 Show alert that download is not supported instead of failing silently | Andrey Kleshchev | |
2022-02-01 | SL-16638 don't allow downloading files from the built-in browser | Mnikolenko Productengine | |
2022-02-01 | SL-16344 #6 Fixed 'choose media' button not working in some cases | Andrey Kleshchev | |
2022-02-01 | SL-13792: Cannot mix print statement and print function. | Nat Goodspeed | |
'from __future__ import print_function' not only makes the print() function available, it also makes the Python 2 print statement invalid syntax. Until we merge with the Python 3 branch (soon!), don't import print_function: instead revert to 'print >> sys.stderr' statements. | |||
2022-02-01 | SL-13792: _greenlet.so is no longer exposed in Mac viewer app bundle. | Nat Goodspeed | |
Instead we have a new bundled executable SLVersionChecker, so that must be signed instead of _greenlet.so. | |||
2022-01-31 | SL-13792: Use new Python 3 SLVersionChecker. | Nat Goodspeed | |
On Mac, execute the packaged SLVersionChecker directly rather than invoking system Python on our manually-bundled scripts. | |||
2022-01-31 | SL-16681 Better handling of locked files by NSIS Installer | Andrey Kleshchev | |
1. When SL window closes it doesn't mean that process died so gave it a bit more time to terminate 2. Added a retry logic in case first run happened too early for some reason 3. Replaced ok/cancel on locked file with abort/retry/ignorei | |||
2022-01-31 | SL-16729 FIXED Keyframes preview does not work in automatic mode | Mnikolenko Productengine | |
2022-01-28 | SL-16728 FIXED animations are not stopped after pressing the Alt + Shift + A | Mnikolenko Productengine | |
2022-01-28 | SL-16715 - viewerstats, added more detail about failure cases in inventory | Brad Payne (Vir Linden) | |
2022-01-27 | SL-16669 FIXED Wrong context menu is opened for objects owned by the group | Mnikolenko Productengine | |
2022-01-26 | SL-16698 Replace tabs with spaces which are used in the editor | Mnikolenko Productengine | |
2022-01-26 | OPEN-358 Readable error | Andrey Kleshchev | |
2022-01-25 | SL-3007 mac build fix | Andrey Kleshchev | |
2022-01-25 | SL-16695 Fixed report Abuse floater's screenshot encroaching onto tittle | Andrey Kleshchev | |
2022-01-24 | SL-3007 Ability to report abuse from chat | Andrey Kleshchev | |