Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-08-06 | Introduce a custom coroutine/fiber scheduler to prioritize UI. | Nat Goodspeed | |
The viewer's main thread's main fiber is responsible for coordinating just about everything. With the default round_robin fiber scheduling algorithm, launching too many additional fibers could starve the main fiber, resulting in visible lag. This custom scheduler tracks when it switches to and from the main fiber, and at each context switch, how long it's been since the last time the main fiber ran. If that exceeds a certain timeslice, it jumps the main fiber to the head of the queue and resumes that instead of any other ready fiber. | |||
2024-08-06 | As bugspat upload is broken for dylibs within .dSYM bundles, upload the ↵ | Roxie Linden | |
dylibs directly | |||
2024-08-06 | code clean up | Mnikolenko Productengine | |
2024-08-06 | viewer-private#261 (Vivox) Viewer doesn't reconnect to voice chat | Andrey Kleshchev | |
If state was 'ringing' viewer failed to set mSessionTerminateRequested on cancel so the call kept sort of going | |||
2024-08-06 | Merge branch 'release/luau-scripting' into lua-ui-visibility | Maxim Nikolenko | |
2024-08-06 | Force ReleaseOS builds on Linux | Andrey Lihatskiy | |
2024-08-06 | Merge branch 'develop' into marchcat/b-sync | Andrey Lihatskiy | |
# Conflicts: # .github/workflows/build.yaml # autobuild.xml # indra/cmake/Audio.cmake # indra/cmake/Copy3rdPartyLibs.cmake # indra/llxml/llxmltree.cpp # indra/newview/viewer_manifest.py | |||
2024-08-06 | Convert LLUI and LLRender2D to LLSimpleton to reduce overhead during ui draw ↵ | Rye Mutt | |
(#2202) | |||
2024-08-06 | Ignore VmallocTotal as it's fixed, huge Number. (#2200) | Nicky Dasmijn | |
Not ignoring it will cause a lot of log spam due to conversion/parse errors. | |||
2024-08-06 | Merge pull request #2185 from secondlife/lua-login2 | nat-goodspeed | |
Add 'LLPanelLogin' 'login', 'savedLogins' operations. | |||
2024-08-06 | Download osx artifacts to working directory | Roxie Linden | |
2024-08-05 | allow paths with spaces | Roxie Linden | |
2024-08-05 | Missed file | Roxie Linden | |
2024-08-05 | missing quotes | Roxie Linden | |
2024-08-05 | Build mac symbols for multiple binaries/dynamic libraries and upload them ↵ | Roxie Linden | |
all to bugsplat | |||
2024-08-05 | Allow getting the list of floater names, hide top menu items; add demo script | Mnikolenko Productengine | |
2024-08-05 | viewer#2195 Voice morphs 'not supported' notification lacks description | Andrey Kleshchev | |
2024-08-05 | Fix a couple problems with "LLPanelLogin" listener (thanks Maxim!). | Nat Goodspeed | |
Convert plain grid (e.g. "agni") to domain form (e.g. "util.agni.lindenlab.com"). Fix a typo in `savedLogins()`: "login_list", not "login.list". login.lua now returns a table with two functions: `login.login()` and `login.savedLogins()`. Defend Lua caller against trying to engage login features too late in startup sequence: in addition to waiting for "STATE_LOGIN_WAIT", produce an error if `startup.state()` is beyond that state. Since by then `LLPanelLogin` is destroyed, `leap.request("LLPanelLogin", ...)` would get no response, causing the calling Lua script to hang until viewer shutdown. | |||
2024-08-05 | Fixed unwanted implicit cast from U32 to U16 causing possible crash (#2193, ↵ | TJ | |
#2194) | |||
2024-08-05 | Remove remainder of unused packet data code from LLTextureFetch | Andrey Kleshchev | |
Downloading packets from server was removed in favor of HTTP | |||
2024-08-05 | Merge pull request #2190 from RyeMutt/color-debug-floater | Andrey Lihatskiy | |
Introduce LLUIColorTable debug-settings-alike floater and fix various color system bugs | |||
2024-08-05 | macOS build fix attempt | Rye Mutt | |
2024-08-04 | Fix chat text segments not dynamically updating when colors changed in ↵ | Rye Mutt | |
preferences | |||
2024-08-04 | Fix various issues with text segments not updating UI color | Rye Mutt | |
2024-08-04 | Fix various issues with ui elements not updating colors dynamically | Rye Mutt | |
2024-08-04 | Optimization and cleanup of various color finds during draw | Rye Mutt | |
2024-08-04 | Add LLUIColorTable debug-settings-like floater for easing skin design | Rye Mutt | |
2024-08-05 | Update ogg_vorbis to 1.3.5-1.3.7 (#2186) | Rye Mutt | |
2024-08-05 | Reduce Avatar Loading Checks (#2187) | TommyTheTerrible | |
This simple trick stops checking if the avatar is loaded if the avatar is loaded, decreasing calculation times and increasing FPS. | |||
2024-08-05 | Merge pull request #2188 from Nicky-D/feature/warning_cleansweep | Andrey Lihatskiy | |
Feature/warning cleansweep | |||
2024-08-03 | Covert gRandomGenerator into a unique_ptr. Having a static object of type ↵ | Nicky | |
LLRandFlagFib2281 needs a lot of space in the TLB, which is usually fine. Unless libcef gets loaded... CEF is compiled with static TLS/TLS model initial-exec and then having gRandomGenerator allocation so much space in the TLB will exhaust the available space and CEF cannot be loaded. | |||
2024-08-03 | Change another case of a regex sequence needing to be a raw string | Nicky | |
2024-08-03 | Merge remote-tracking branch 'll/marchcat/b-develop' into ↵ | Nicky | |
feature/warning_cleansweep | |||
2024-08-03 | Cast RAND_MAX into F32 to avoid any implicit casting | Nicky | |
2024-08-03 | Use python raw string literals to remove any ambiguity with standard escape ↵ | Nicky | |
sequences like \n | |||
2024-08-03 | Remove -wno-dangling-pointer, compiling with GCC 13.3, 12, 11 and clang did ↵ | Nicky | |
not yield such a warning. Furthermore this warning should not just be disabled but rather dealt with when it comes up | |||
2024-08-02 | Add 'LLPanelLogin' 'login', 'savedLogins' operations. | Nat Goodspeed | |
'login' accepts optional 'username', 'slurl', 'grid'. 'savedLogins' returns the list of saved usernames in both display form and internal form. Make LLPanelLogin::getUserName() accept (const LLPointer<LLCredential>&). There's a whole separate discussion pending as to whether const LLPointer<T> should provide access to non-const T methods. Similarly, make LLCredential::getIdentifier() a const method. These two changes enable read-only access to credentials. Make LLPanelLogin methods capture and reuse LLGridManager::instance() as appropriate. Add require/login.lua and test_login.lua. | |||
2024-08-02 | Search --luafile script on LuaCommandPath. | Nat Goodspeed | |
2024-08-02 | Merge pull request #2184 from Ansariel/altasaurus_underflow | Brad Linden | |
Fix integer underflow causing issues with wearables | |||
2024-08-03 | Display parcel name when clicking on a parcel on the world map (#2131) | Ansariel Hiller | |
2024-08-02 | Fix integer underflow causing issues with wearables | Ansariel | |
2024-08-02 | Merge branch 'release/luau-scripting' into lua-login2 | Nat Goodspeed | |
2024-08-02 | Use dedicated property to determine if build is called from a fork (#2183) | Andrey Lihatskiy | |
2024-08-02 | Lua api for showing/hiding floater; rename demo scripts | Mnikolenko Productengine | |
2024-08-02 | Update vlc to version 3.0.21 (#2181) | Andrey Lihatskiy | |
2024-08-02 | Lua api for adjusting toolbars | Mnikolenko Productengine | |
2024-08-02 | Merge pull request #2047 from secondlife/lua-top-menu | Maxim Nikolenko | |
Lua api for adding new menu items to the Top menu | |||
2024-08-02 | Merge pull request #2180 from secondlife/lua-top-parents | nat-goodspeed | |
Add 'UI' 'getParents' op to list top-menu 'parent_menu' names. | |||
2024-08-02 | Add 'UI' 'getParents' op to list top-menu 'parent_menu' names. | Nat Goodspeed | |
2024-08-02 | Merge pull request #2174 from secondlife/lua-callables | nat-goodspeed | |
Add UI.callables() and corresponding entry point. |