Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-01 | #824 Don't fix tabs in files with no tabs | Andrey Lihatskiy | |
2024-05-01 | #824 Add c,py,glsl to the script's default file types | Andrey Lihatskiy | |
2024-04-29 | Use s3 hosted slvoice autobuild dependencies | Bennett Goble | |
Pull SLVoice from s3 so that the OSS build configurations work. | |||
2024-04-29 | Adapt llimageworker_test for updated virtual method API. | Nat Goodspeed | |
This was a broken test that got all the way to viewer release and the main branch. (cherry picked from commit a33a9d29380e6c1a0a9cc539be309d47adef4acf) | |||
2024-04-29 | Allow getting the value of debug settings via Lua script | Mnikolenko Productengine | |
2024-04-29 | Allow changing debug settings via Lua script | Mnikolenko Productengine | |
2024-04-29 | #824 Process source files in bulk: replace tabs with spaces, convert CRLF to ↵ | Andrey Lihatskiy | |
LF, and trim trailing whitespaces as needed | |||
2024-04-29 | #824 Add a script to convert tabs to spaces in the code files | Andrey Lihatskiy | |
2024-04-29 | #824 Add indent_with_spaces hook for source files | Andrey Lihatskiy | |
2024-04-26 | viewer#1308 LLFloaterView::restoreAll Crash | Andrey Kleshchev | |
2024-04-25 | Adapt llimageworker_test for updated virtual method API. | Nat Goodspeed | |
This was a broken test that got all the way to viewer release and the main branch. (cherry picked from commit a33a9d29380e6c1a0a9cc539be309d47adef4acf) | |||
2024-04-24 | Merge 'main' into release/luau-scripting on promotion of Maint YZ | Nat Goodspeed | |
2024-04-24 | Merge pull request #1323 from secondlife/main | Vir Linden | |
Update from main | |||
2024-04-24 | viewer#1309 Handle deprecated avatar properties messages | Andrey Kleshchev | |
since server still sends those in some cases | |||
2024-04-24 | Merge pull request #1313 from secondlife/marchcat/x-merge | Andrey Lihatskiy | |
Release (Maint YZ) -> Maint X merge | |||
2024-04-24 | Merge branch 'main' into marchcat/x-merge | Andrey Lihatskiy | |
2024-04-24 | Increment viewer version to 7.1.7 | Nat Goodspeed | |
following promotion of secondlife/viewer #736 | |||
2024-04-24 | Merge release/maint-yz to main on promotion of secondlife/viewer #736: ↵ | Nat Goodspeed | |
Maintenance YZ 7.1.6.8745209917 | |||
2024-04-20 | viewer#1290 Fix missing variable reinitializations | Andrey Kleshchev | |
2024-04-19 | Update build.yaml | Vir Linden | |
2024-04-19 | viewer#1290 Fix snapToMessageHeight crash | Andrey Kleshchev | |
2024-04-19 | https://github.com/secondlife/viewer/issues/1286 - branch var from ↵ | Vir Linden | |
github.repository | |||
2024-04-19 | https://github.com/secondlife/viewer/issues/1286 - branch var from ↵ | Vir Linden | |
github.repository | |||
2024-04-19 | https://github.com/secondlife/viewer/issues/1286 - determine viewer_channel ↵ | Vir Linden | |
from branch name in builds | |||
2024-04-19 | Merge pull request #1262 from secondlife/lua-kill-coro | nat-goodspeed | |
Reintroduce `LLCoros::killreq()` to request killing a named coroutine. | |||
2024-04-19 | secondlife/viewer#1249 Erratic Emoji Picker Behavior | Alexander Gavriliuk | |
2024-04-19 | Revert "SL-20140 Setting shape hand size to 36 won't save" | Andrey Lihatskiy | |
This reverts commit 810a3d24c2e3671f926091c062b101bdec6a1517. (secondlife/jira-archive-internal#70482) | |||
2024-04-18 | Add llluamanager_test.cpp test that terminates runaway Lua script. | Nat Goodspeed | |
Also tweak existing Lua interleaved-responses test to accommodate new Lua periodic suspend behavior. | |||
2024-04-18 | Move {set,check}_interrupts_counter() to lluau namespace. | Nat Goodspeed | |
Use in LuaState::expr() so we can catch a runaway in-memory Lua chunk as well as a script read from a file. | |||
2024-04-18 | Remove redundant LLEventPump::inventName() call. | Nat Goodspeed | |
2024-04-18 | In debug.h, add debug_expr() macro for inline expressions. | Nat Goodspeed | |
Break out LOGTEST_enabled() inline function because it's used for both Debug and debug_expr(). | |||
2024-04-18 | Fix LuaListener member initialization order. | Nat Goodspeed | |
2024-04-17 | Reintroduce LLCoros::killreq() to request killing a named coroutine. | Nat Goodspeed | |
Make LLCoros constructor echo "LLApp" status-change events on new "LLCoros" event pump. Rename LLCoros::kill() to killreq() because this operation only registers a request for the named coroutine to terminate next time it calls checkStop(). Add a new CoroData member to record the name of the coroutine requesting termination. killreq() sets that and also posts "killreq" to "LLCoros". Add an optional final-cleanup callback to LLCoros::checkStop(). Make checkStop() check for a pending killreq() request as well as viewer termination. Introduce new LLCoros::Killed exception for that case. Introduce LLCoros::getStopListener(), with two overloads, to encapsulate some of the messy logic to listen (perhaps temporarily) for viewer shutdown. Both overloads are for use by code at the source end of a queue or promise or other resource for which coroutines might still be waiting at viewer shutdown time. One overload is specifically for when the caller knows the name of the one and only coroutine that will wait on the resource (e.g. because the caller IS that coroutine). That overload honors killreq(). Use getStopListener() to simplify the four existing places where we set up such a listener. Add a fifth: also make WorkQueue listen for viewer shutdown (resolving a TODO comment). Remove LLLUAmanager::terminateScript(), getTerminationList() and the static sTerminationList. In the Lua interrupt callback, instead of checking sTerminationList, call LLCoros::checkStop(). Change LLFloaterLUAScripts terminate-script logic to call LLCoros::killreq() instead of posting on "LLLua" and calling LLLUAmanager::terminateScript(). Drop LLApp::setStatus() posting to "LLLua" LLEventPump: the above makes that moot. | |||
2024-04-17 | Fix broken llimageworker_test.cpp. | Nat Goodspeed | |
Please run integration tests before pushing to GitHub! | |||
2024-04-17 | viewer#1143 Crash at LLReflectionMap::autoAdjustOrigin #2 | Andrey Kleshchev | |
2024-04-17 | Fix typo in settings names (#1257) | Ansariel Hiller | |
2024-04-16 | Merge branch 'main' into release/luau-scripting | Nat Goodspeed | |
2024-04-16 | Merge pull request #1224 from nerodevo/autobuild-revert | Andrey Lihatskiy | |
Revert removal of llphysicsextension_stub for Windows | |||
2024-04-16 | Merge pull request #1247 from secondlife/lua-interrupts | Maxim Nikolenko | |
Call suspend() periodically to avoid viewer freeze | |||
2024-04-16 | Merge branch 'main' into autobuild-revert | nat-goodspeed | |
2024-04-16 | Call suspend() periodically to avoid viewer freeze | Mnikolenko Productengine | |
2024-04-16 | Merge pull request #1246 from secondlife/vir-linden-patch-2 | Vir Linden | |
https://github.com/secondlife/viewer/issues/1214 - Update cla.yaml | |||
2024-04-16 | https://github.com/secondlife/viewer/issues/1214 - Update cla.yaml | Vir Linden | |
2024-04-16 | Change windows to windows64 again | nerodevo | |
Missed the second change... Here it is. | |||
2024-04-16 | Change windows to windows64 | nerodevo | |
2024-04-15 | Merge pull request #1236 from secondlife/marchcat/yz-merge | Andrey Lihatskiy | |
Marchcat/yz merge | |||
2024-04-15 | Merge branch 'main' into marchcat/yz-merge | Andrey Lihatskiy | |
2024-04-15 | CI: adopt xz compression | Bennett Goble | |
Move towards packaging artifacts with xz, which offers higher compression ratios and faster decode time. | |||
2024-04-15 | CI: Remove python-version from matrix | Bennett Goble | |
Drop python version from matrix configuration as it's always 3.11. | |||
2024-04-15 | Remove unused fix-incredibuild.py | Bennett Goble | |