Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-02-15 | Viewer#779 Make RenderMaxVRAMBudget more consistent | Andrey Kleshchev | |
2024-02-15 | Merge pull request #798 from secondlife/helpcmd | nat-goodspeed | |
Add help() function to Lua "builtins." | |||
2024-02-15 | Engage new viewer-build-util/which-branch with relnotes output. | Nat Goodspeed | |
Put whatever release notes we retrieve into the generated release page. | |||
2024-02-15 | Yet another lightning -> lighting typo fixed | PanteraPolnocy | |
2024-02-15 | Update cla.yaml allowlist to clear spurious errors (#804) | Brad Linden | |
2024-02-14 | Update cla.yaml allowlist to clear spurious errors (#804) | Brad Linden | |
2024-02-14 | viewer#780 Fix bulk removal of local textures | Andrey Kleshchev | |
2024-02-13 | Add leaphelp() Lua builtin function for help on LEAP operations. | Nat Goodspeed | |
leaphelp() (no argument) shows a list of all LEAP APIs. leaphelp(API) shows further help for a specific API. Both forms query LuaListener's LeapListener and report its responses. In future we might reimplement leaphelp() as a Lua function. Add LuaState::getListener() method, which checks whether there's a LuaListener associated with this LuaState and returns a pointer if so. Add LuaState::obtainListener() method, which finds or creates a LuaListener for this LuaState and returns its pointer. Both the above use logic migrated from the Lua listen_events() entry point, which now calls obtainListener() instead. | |||
2024-02-13 | Removing orphaned XML files from translation directories | Pantera | |
Spring cleanup | |||
2024-02-13 | Merge branch 'release/luau-scripting' into helpcmd. | Nat Goodspeed | |
2024-02-13 | Add help() function to Lua "builtins." | Nat Goodspeed | |
help() with no argument lists all our viewer builtins. help(function, function, ...) shows help text for each named function. Each argument can be either a string or the function in question (e.g. help(help)). To support Lua-related text containing line breaks, make LLTextEditor:: pasteTextWithLinebreaks() a public template method. Change the existing implementation, which specifically accepts (const LLWString&), into its LLWString specialization. The generic template passes llconvert(arg) to that specialization, the one real implementation. Make LLFloaterLUADebug methods call pasteTextWithLinebreaks() instead of insertText(), which ignores newline characters. To allow help() to accept an actual function as well as a string name, add a lookup-by-function-pointer map to LuaFunction. (A Lua function does not store a name.) Make the constructor store an entry in the new lookup map as well as in the original registry map. Change LuaFunction::getRegistry() and getRegistered() to getState() and getRState(), respectively. Each returns a std::pair, but the first binds non-const references while the second binds const references. | |||
2024-02-13 | Merge branch 'll_convert' into helpcmd. | Nat Goodspeed | |
2024-02-13 | Change ll_convert<TOTYPE>(string) to just ll_convert(string). | Nat Goodspeed | |
As a function parameter, an assignment expression or a `return` expression, `ll_convert()` can infer its target type. When it's important to specify the TOTYPE explicitly, rename the old `ll_convert()` function template to `ll_convert_to()`. Fix existing usage. | |||
2024-02-13 | Issue #71 Login failures cause growing black zone in the top | Andrey Kleshchev | |
2024-02-12 | WIP: Changes towards supporting Lua console help text. | Nat Goodspeed | |
2024-02-12 | #779 Emoji picker is an unintuitive UX disaster | Alexander Gavriliuk | |
2024-02-12 | VS build fix: missed values | Andrey Lihatskiy | |
2024-02-12 | even more misc: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | more misc: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | miscellaneous: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | misc: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llmath: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | miscellaneous: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llinventory: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llrender: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llplugin: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llfilesystem: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llimage: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | llaudio: BOOL (int) to real bool | Lars Næsbye Christensen | |
2024-02-12 | Fixing 'tooltip' typo in attribute name | Pantera Północy | |
2024-02-12 | Fixing the 'lightning' -> 'lighting' typo | Pantera Północy | |
Unless, of course, we have some dedicated lightning effects - then I will stand corrected. ~ | |||
2024-02-12 | Update luau package to public repo builds. | Nat Goodspeed | |
2024-02-12 | Fix LUA 3p libraries pointing to publicly available URLs | Ansariel | |
2024-02-12 | Make LLFloaterLUADebug assume 'Execute' button on LUA String Enter | Maxim Nikolenko | |
2024-02-12 | Merge pull request #787 from secondlife/cmdline-lua | nat-goodspeed | |
Add command-line switches --lua "chunk" and --luafile pathname. | |||
2024-02-10 | Triage Issue #49 Fix MacOS build failure | Andrey Kleshchev | |
2024-02-10 | Triage Issue #49 Better inspection of data urls in media | Andrey Kleshchev | |
2024-02-10 | Triage Issue #49 Better inspection of media urls | Andrey Kleshchev | |
Part 1: Ability to copy urls from nearby media for inspection | |||
2024-02-09 | Add command-line switches --lua "chunk" and --luafile pathname. | Nat Goodspeed | |
--lua "chunk" runs the specified Lua chunk at startup time. --luafile pathname runs the specified Lua script file at startup time. You may specify more than one --lua or --luafile switch on the command line. | |||
2024-02-09 | Make LLLUAmanager::runScriptFile() use filename as description. | Nat Goodspeed | |
Since the description shows up in the log output, it's better to see just the script filename than to see "runScriptFile('filename')". | |||
2024-02-09 | Fix ad-hoc voice | Roxie Linden | |
2024-02-09 | Merge pull request #784 from secondlife/v-773 | cosmic-linden | |
Fix RenderTerrainPBREnabled requiring restart and respect simulator feature PBRTerrainEnabled | |||
2024-02-09 | secondlife/viewer#773: Fix RenderTerrainPBREnabled requiring restart and ↵ | Cosmic Linden | |
respect simulator feature PBRTerrainEnabled | |||
2024-02-09 | https://github.com/secondlife/jira-archive-internal/issues/70847 Fix for ↵ | RunitaiLinden | |
more inaccurate than usual alpha sorting (#781) | |||
2024-02-09 | Merge branch 'main' into release/luau-scripting | Nat Goodspeed | |
2024-02-09 | Merge branch 'main' of github.com:secondlife/viewer | Nat Goodspeed | |
2024-02-09 | Merge pull request #778 from secondlife/release/gltf-maint2 | RunitaiLinden | |
Release/gltf maint2 | |||
2024-02-09 | Merge branch 'release/materials_featurette' into release/gltf-maint2 | Brad Linden | |
2024-02-09 | Merge pull request #23 from secondlife/console-persist | nat-goodspeed | |
Make LLFloaterLUADebug store a persistent LuaState. | |||
2024-02-09 | Make LLFloaterLUADebug store a persistent LuaState. | Nat Goodspeed | |
That means that as you use the floater, variables that you assign and functions that you define are available to subsequent Lua chunks. |