Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-07-17 | Merge remote-tracking branch 'origin/release/webrtc-voice' into develop | Brad Linden | |
# Conflicts: # autobuild.xml | |||
2024-07-17 | viewer-private#251 Fixed state of folder creation in marketplace | Andrey Kleshchev | |
2024-07-17 | Lua api for adding new menu items to the Top menu | Maxim Nikolenko | |
2024-07-17 | #2036 BugSplat Crash #1494874: ↵ | Alexander Gavriliuk | |
LLScrollingPanelList::updatePanelVisiblilty()(220) | |||
2024-07-17 | Fix: Update calcDataSizeJ2C to pyramid-base file size estimation (#2032) | TommyTheTerrible | |
* Fix: Update calcDataSizeJ2C to pyramid-base file size estimation Used the loop from the previous LayerFactored method to create a more accurate file size estimation by walking up the pyramid tiles. Sizes are much larger in many cases and eliminate partial decoder issues with OpenJPEG. KDU not tested but expected to produce better files as well. Should also stop decode failures on tiny or very rectangular dimensions. --------- Co-authored-by: Andrey Lihatskiy <alihatskiy@productengine.com> | |||
2024-07-17 | Raised the 512x512 limitation for uploading snapshots to inventory to ↵ | Ayane | |
2048x2048 (#2025) | |||
2024-07-16 | #2039 BugSplat Crash #1494687: LLPipeline::calcNearbyLights(LLCamera&) | Alexander Gavriliuk | |
2024-07-16 | #2034 BugSplat Crash #1494883: LLCullResult::clear(3983) | Alexander Gavriliuk | |
2024-07-16 | viewer#2006 Fixed terrain textures not updating in the "Region/Estate" floater | Andrey Kleshchev | |
2024-07-16 | viewer#1975 Fixed "Allow Land Resell" option not switching | Andrey Kleshchev | |
2024-07-14 | Fix: Stop textures from being set as inactive if still on a face. (#2017) | TommyTheTerrible | |
Textures were being set to Inactive even if still in scene, causing them to be deleted and re-decoded in a loop. | |||
2024-07-12 | viewer#1990 Fixed "Main dictionary" option is switching to the previous value | Andrey Kleshchev | |
2024-07-12 | Make image_list_t iterator const (#2010) | Zi Ree | |
gcc complains about this iterator not being const | |||
2024-07-12 | Initialize array before use (#2011) | Zi Ree | |
gcc detects usage of this array as uninitialized, so make sure it's initialized. I am not sure if this is a legitimate warning, or if the code guarantees the array gets initialized before use in lines 140-142 and this is a performance optimization. | |||
2024-07-12 | Merge pull request #2009 from secondlife/lua-llsd-debug-setting | nat-goodspeed | |
Show description and actual value of LLSD type setting | |||
2024-07-12 | fix for 'Run' button | Mnikolenko Productengine | |
2024-07-12 | Show description and actual value of LLSD type setting | Mnikolenko Productengine | |
2024-07-12 | viewer#1988 "Set empty" for controls ignores "Apply to all" | Andrey Kleshchev | |
2024-07-11 | Merge pull request #2002 from secondlife/revert-1982-v-1885 | cosmic-linden | |
Revert "secondlife/viewer#1885: Terrain texture repeats: Remove feature flag dependency on simulator feature in favor of cap" | |||
2024-07-11 | Partially revert "secondlife/viewer#1885: Terrain texture repeats: Remove ↵ | cosmic-linden | |
feature flag dependency on simulator feature in favor of cap" | |||
2024-07-11 | Fix for tracy build. | RunitaiLinden | |
2024-07-11 | Fix for GLTF scenes not uploading (#1994) | Dave Parks | |
2024-07-11 | Merge pull request #1984 from secondlife/lua-no-reuse | nat-goodspeed | |
Remove ability to reuse a `LuaState` between `LLLUAmanager` functions. | |||
2024-07-11 | viewer#1253 Viewer tries to detach attachments in inventory on shutdown | Andrey Kleshchev | |
2024-07-11 | viewer#1975 Fixed "Allow Land Resell" option not switching | Andrey Kleshchev | |
2024-07-11 | Update llphysicsextensions_source to v1.0.66e6919 (#1985) | Andrey Lihatskiy | |
2024-07-11 | viewer#1965 Fixed selection swirls swirling forever when the UI is hidden. | Andrey Kleshchev | |
2024-07-11 | #1859 BugSplat Crash: SecondLifeViewer!<lambda>::operator()(61) | Alexander Gavriliuk | |
2024-07-10 | Merge pull request #1982 from secondlife/v-1885 | cosmic-linden | |
secondlife/viewer#1885: Terrain texture repeats: Remove feature flag dependency on simulator feature in favor of cap | |||
2024-07-10 | Merge branch 'lua-atexit-run' into lua-no-reuse. | Nat Goodspeed | |
We couldn't discard the "p.s." fiber.run() call from LuaState::expr() until we could count on fiber.lua's LL.atexit(fiber.run) call being executed after each Lua script or chunk, and we couldn't count on that until we made LLLUAmanager::runScriptFile() instantiate and destroy its LuaState on the C++ Lua-specific coroutine. Now that we've done that, use LL.atexit(fiber.run) instead of the whole special-case "p.s." in LuaState::expr(). | |||
2024-07-10 | Remove ability to reuse a LuaState between LLLUAmanager functions. | Nat Goodspeed | |
Remove LLLUAmanager::mumbleScriptLine() LuaState& parameters. Make startScriptLine(), waitScriptLine() and runScriptLine() exactly parallel to startScriptFile(), waitScriptFile() and runScriptFile(). That means that runScriptLine()'s C++ coroutine instantiates and destroys its own LuaState, which means that LL.atexit() functions will run on the Lua-specific C++ coroutine rather than (say) the viewer's main coroutine. Introduce LLLUAmanager::script_result typedef for std::pair<int, LLSD> and use in method returns. Remove LuaState::initLuaState(); move its logic back into the constructor. Remove initLuaState() calls in the expr() error cases: they're moot now that we won't get subsequent expr() calls on the same LuaState instance. Remove LLFloaterLUADebug "Use clean lua_State" checkbox and the cleanLuaState() method. Remove mState member. Remove explicit LuaState declarations from LLLUAmanager tests. Adapt one test for implicit LuaState: it was directly calling LuaState::obtainListener() to discover the LuaListener's reply-pump name. But since that test also captures two leap.request() calls from the Lua script, it can just look at the "reply" key in either of those requests. | |||
2024-07-10 | Neither alpha, tattoo nor universal wearable edit panels contain a param ↵ | Ansariel Hiller | |
list and a main panel (#1978) | |||
2024-07-10 | secondlife/viewer#1885: Update test plan | Cosmic Linden | |
2024-07-10 | secondlife/viewer#1885: Terrain texture repeats: Remove feature flag ↵ | Cosmic Linden | |
dependency on simulator feature in favor of cap | |||
2024-07-10 | Introduce LLCoros::RMutex, use for SettingsConfig::mRecorderMutex (#1980) | nat-goodspeed | |
in llerror.cpp. | |||
2024-07-10 | #1959 BugSplat Crash #1489790: VCRUNTIME140!memcmp(72) | Alexander Gavriliuk | |
2024-07-10 | Merge pull request #1939 from secondlife/lua-snapshot | Maxim Nikolenko | |
Lua api for Snapshot and demo script | |||
2024-07-10 | #1932 Fix a case where an IM toast wasn't displayed | Andrey Kleshchev | |
2024-07-10 | Remove orphaned constants gMinVideoRam and gMaxVideoRam (#1970) | Ansariel Hiller | |
2024-07-10 | Simplify passing keys to leap.request | Mnikolenko Productengine | |
2024-07-09 | Update meshoptimizer package to 0.21 (#1948) | Rye Mutt | |
2024-07-09 | Fix excessive clearing of shader cache when toggling mirrors (#1950) | Rye Mutt | |
2024-07-09 | Merge remote-tracking branch 'origin/release/2024.06-atlasaurus' into develop | Brad Linden | |
2024-07-09 | Merge pull request #1967 from secondlife/1826-llerror-hangs-viewer | Brad Linden | |
#1826 Fix for LL_ERRS crashing in mutex lock | |||
2024-07-09 | Update tracy profiler to 0.10 (#1946) | Rye Mutt | |
2024-07-09 | Fix broken hero probe feature table entries (#1951) | Rye Mutt | |
* Clean up other feature table warnings | |||
2024-07-09 | #1943 make sys free in texture console llmemorysavailphysicalmeminkb tell ↵ | Dave Parks | |
the truth (#1966) * Also fix for crash when applying MoaP to PBR material | |||
2024-07-09 | Review feedback change | RunitaiLinden | |
2024-07-09 | #1826 Fix for LL_ERRS crashing in mutex lock | RunitaiLinden | |
2024-07-09 | Merge branch 'release/luau-scripting' into lua-snapshot | Nat Goodspeed | |