Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-08-28 | Merge branch 'main' into release/luau-scripting. | Nat Goodspeed | |
2024-08-28 | Merge pull request #2416 from secondlife/lua-lazymod | nat-goodspeed | |
Allow UI to have lazily-loaded submodules. | |||
2024-08-27 | code clean up | Mnikolenko Productengine | |
2024-08-27 | Merge branch 'release/luau-scripting' into lua-inventory | Maxim Nikolenko | |
2024-08-26 | Increment viewer version to 7.1.10 | Nat Goodspeed | |
following promotion of secondlife/viewer #1829: 2024.06 Atlasaurus | |||
2024-08-26 | clean up Lua prefix | Mnikolenko Productengine | |
2024-08-24 | Update test scripts to reference UI.Floater, not standalone Floater. | Nat Goodspeed | |
2024-08-23 | Massage results from UI.popup() for ease of use. | Nat Goodspeed | |
In particular, where the raw leap.request().response call would return {OK_okcancelbuttons=true}, just return the string 'OK' or 'Cancel'. Update existing consumer scripts. | |||
2024-08-23 | Encapsulate the lazy submodule idiom as util.submoduledir(). | Nat Goodspeed | |
2024-08-23 | Look for lazy UI submodules in a require/UI subdirectory. | Nat Goodspeed | |
This way encourages "UI = require 'UI'; UI.Floater" instead of just "Floater = require 'Floater'". Moreover, now we don't need UI to maintain a list of allowed submodules; that's effected by membership in the subdirectory. | |||
2024-08-23 | Allow UI to have lazily-loaded submodules. | Nat Goodspeed | |
Equip UI with an __index metamethod. When someone references an unknown key/field in UI, require() that module and cache it for future reference. Add util.setmetamethods() as a way to find or create a metatable on a specified table containing specified metamethods. Exercise the new functionality by referencing UI.popup in test_popup.lua. | |||
2024-08-22 | #2397 Sanity clamp haze contribution to avoid NaN like blowouts. (#2402) | Dave Parks | |
2024-08-22 | Fix for #2385: say, shout and whisper messages from the script should be ↵ | Mnikolenko Productengine | |
displayed consistently | |||
2024-08-21 | mac build fix | Mnikolenko Productengine | |
2024-08-21 | Bump featuretable versions to fix secondlife/viewer#2345 (#2386) | Brad Linden | |
also fixed mac High entry for RenderMirrors that got missed | |||
2024-08-21 | Merge branch 'release/luau-scripting' into lua-inventory | Maxim Nikolenko | |
2024-08-21 | Add item limit for collectDescendentsIf func; add demo script | Mnikolenko Productengine | |
2024-08-20 | Fix a couple more set_interrupts_counter() calls. | Nat Goodspeed | |
2024-08-20 | Defend timers.Timer(iterate=True) against long callbacks. | Nat Goodspeed | |
Specifically, defend against a callback that runs so long it suspends at a point after the next timer tick. | |||
2024-08-20 | Fix for #2237: intermittent Lua data stack overflow. | Nat Goodspeed | |
Use a static unordered_map to allow a function receiving (lua_State* L) to look up the LuaState instance managing that lua_State. We've thought about this from time to time already. LuaState's constructor creates the map entry; its destructor removes it; the new static getParent(lua_State* L) method performs the lookup. Migrate lluau::set_interrupts_counter() and check_interrupts_counter() into LuaState member functions. Add a new mInterrupts counter for them. Importantly, LuaState::check_interrupts_counter(), which is indirectly called by a lua_callbacks().interrupt function, no longer performs any Lua stack operations. Empirically, it seems the Lua engine is capable of interrupting itself at a moment when re-entry confuses it. Change previous lluau::set_interrupts_counter(L, 0) calls to LuaState::getParent(L).set_interrupts_counter(0). Also add LuaStackDelta class, and a lua_checkdelta() helper macro, to verify that the Lua data stack depth on exit from a block differs from the depth on entry by exactly the expected amount. Sprinkle lua_checkdelta() macros in likely places. | |||
2024-08-20 | Merge branch 'release/2024.06-atlasaurus' of github.com:secondlife/viewer ↵ | Roxie Linden | |
into roxie/webrtc-fix-mac-p2p-hang | |||
2024-08-20 | removed unnecessary comment | Roxie Linden | |
2024-08-20 | Fix hang when incoming p2p or group calls throw up dialog. | Roxie Linden | |
There were changes in atlasaurus that resulted in a hang for incoming p2p and group calls which throw up dialogs. The changes revolved around mutex, coroutines, job queues, and such. The fix was to do any processing that may result in callbacks from the webrtc code in a queued job instead of a coroutine. | |||
2024-08-20 | #2345 Fix for mirrors not being disabled from previous viewer versions. | Jonathan "Geenz" Goodman | |
2024-08-20 | Add collectDescendentsIf api for Lua | Mnikolenko Productengine | |
2024-08-19 | #2345 Disable mirrors from the feature table regardless of quality level. ↵ | Jonathan "Geenz" Goodman | |
(#2352) | |||
2024-08-19 | Merge pull request #2324 from secondlife/roxie/webrtc-log-devices | Roxanne Skelly | |
[WebRTC] Log WebRTC devices on webrtc initialization. | |||
2024-08-19 | viewer#2296 Don't show 'are you sure you want to leave the call' when ↵ | Andrey Kleshchev | |
shutting down | |||
2024-08-16 | Log WebRTC devices on webrtc initialization. | Roxie Linden | |
2024-08-15 | First batch of Inventory api; raise interrupts limit | Mnikolenko Productengine | |
2024-08-15 | Merge remote-tracking branch 'origin/release/webrtc-voice' into ↵ | Brad Linden | |
release/2024.06-atlasaurus # Conflicts: # indra/newview/llpanelpeople.cpp | |||
2024-08-15 | #2307 BugSplat Crash #1504734: LLViewerTexture::getNumFaces() | Alexander Gavriliuk | |
2024-08-15 | Merge branch 'release/luau-scripting' into viewer-lua-2237 | Nat Goodspeed | |
2024-08-15 | Introduce lluau_checkstack(L, n); use instead of luaL_checkstack(). | Nat Goodspeed | |
luaL_checkstack() accepts a third parameter which is included in the stack overflow error message. We've been passing nullptr, leading to messages of the form "stack overflow ((null))". lluau_checkstack() implicitly passes __FUNCTION__, so we can distinguish which underlying luaL_checkstack() call encountered the stack overflow condition. Also, when calling each atexit() function, pass Luau's debug.traceback() function as the lua_pcall() error handler. This should help diagnose errors in atexit() functions. | |||
2024-08-14 | Don't call virtual functions in a derived class constructor | Roxie Linden | |
2024-08-14 | Voice dot not always visible after crossing region boundaries. | Roxie Linden | |
For issue #2064 The connection to the voice server was not upgraded/downgraded to primary/secondary when crossing region boundaries, so the server sent the wrong value and the viewer chose not to display a voice dot. | |||
2024-08-14 | viewer#2204 crash at connectionStateMachine | Andrey Kleshchev | |
2024-08-14 | viewer-private#260 The 'Speak' button looks disabled during IM voice chat | Andrey Kleshchev | |
p2p channels was reusing obsolete channel info | |||
2024-08-13 | viewer-private#262 webrtc crashes on shutdown #2 | Andrey Kleshchev | |
2024-08-13 | viewer-private#262 webrtc crashes on shutdown | Andrey Kleshchev | |
removeObserver failed to remove an im session floater | |||
2024-08-13 | Remove unused setting BrowserWebSecurityDisabled | Andrey Kleshchev | |
2024-08-13 | clean up and add comment | Mnikolenko Productengine | |
2024-08-13 | Merge pull request #2265 from secondlife/lua-groupchat-throttle | Maxim Nikolenko | |
Add Throttle and LogThrottle classes to manage throttled APIs. | |||
2024-08-12 | #2263 BugSplat Crash #1503400: SecondLifeViewer!LLDrawable::getFace(320) | Alexander Gavriliuk | |
2024-08-12 | Add Throttle and LogThrottle classes to manage throttled APIs. | Nat Goodspeed | |
2024-08-12 | #2257 BugSplat Crash #1503682: ↵ | Alexander Gavriliuk | |
SecondLifeViewer!LLFloaterIMSessionTab::enableDisableCallBtn(438) | |||
2024-08-12 | Merge branch 'release/luau-scripting' into lua-groupchat | Maxim Nikolenko | |
2024-08-09 | Merge remote-tracking branch 'origin/release/webrtc-voice' into ↵ | Brad Linden | |
release/2024.06-atlasaurus # Conflicts: # .github/workflows/build.yaml # indra/newview/CMakeLists.txt # indra/newview/llspeakers.cpp # indra/newview/llvoicechannel.cpp # indra/newview/llvoicechannel.h # indra/newview/llvoiceclient.cpp # indra/newview/llvoiceclient.h # indra/newview/llvoicewebrtc.cpp | |||
2024-08-09 | Fix spaces in indra/newview/lllocalbitmaps.cpp | Andrey Kleshchev | |
Co-authored-by: Andrey Lihatskiy <alihatskiy@productengine.com> | |||
2024-08-09 | viewer#1750 Crash at LLGLTFMaterial::operator= | Andrey Kleshchev | |