Skip to content

Rye/linden264 - #372

Merged
RyeMutt merged 267 commits into
developfrom
rye/linden264
Aug 27, 2026
Merged

Rye/linden264#372
RyeMutt merged 267 commits into
developfrom
rye/linden264

Conversation

@RyeMutt

@RyeMutt RyeMutt commented Aug 27, 2026

Copy link
Copy Markdown
Member

Description

Related Issues

  • Please link to a relevant GitHub issue for additional context.
    • Bug Fix: Link to an issue that includes reproduction steps and testing guidance.
    • Feature/Enhancement: Link to an issue with a write-up, rationale, and requirements.

Issue Link:


Checklist

Please ensure the following before requesting review:

  • I have provided a clear title and detailed description for this pull request.
  • If useful, I have included media such as screenshots and video to show off my changes.
  • I have tested the changes locally and verified they work as intended.
  • All new and existing tests pass.
  • Code follows the project's style guidelines.
  • Documentation has been updated if needed.
  • Any dependent changes have been merged and published in downstream modules
  • I have reviewed the contributing guidelines.

Additional Notes

akleshchev and others added 30 commits April 21, 2026 22:50
Velopack's uninstall can't be canceled, so instead it now checks for presense of a running window, makes sure window matches velopack's path, then sends a shutdown message. Window gets the message, verifies path, initiates shutdown.
* #5690 fix viewer trying to fetch group chat history for p2p IM
* #5690 cache "FetchGroupChatHistory" setting
secondlife/viewer#5702: Ensure non-visible preloaded media has PRIORITY_HIDDEN
Might be better to throw a 'missing files' error here, but we normally continue in such cases, so I'm just logging the incident.
I'm not sure if viewer should actually be shutting down on this, but as
a minimum we should be updating or clearing marker files. If viewer
crashes because of a hibernation, it isn't our problem. Viewer isn't
built for that and we can't maintain 'heartbeats' in hibernation.
We can't be absolutely certain about the source in this case, but at least try to distinguish termination caused by task manager from 'unknowns'.
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 8.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4...v8)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Bumps [BugSplat-Git/symbol-upload](https://github.com/bugsplat-git/symbol-upload) from 10.3.0 to 10.3.2.
- [Release notes](https://github.com/bugsplat-git/symbol-upload/releases)
- [Commits](BugSplat-Git/symbol-upload@2a0d2b8...33f604b)

---
updated-dependencies:
- dependency-name: BugSplat-Git/symbol-upload
  dependency-version: 10.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v8...v9)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
LLSD are thread unsafe, don't pass them across threads.
Attempt to catch an inventory and name cache shutdown crash that we see in bugsplat.
akleshchev and others added 6 commits August 25, 2026 23:05
235 upstream commits. Most of the work was deciding which side of a
conflict owned each behaviour, and finding the places where upstream's
code merged cleanly onto APIs this viewer no longer has.

Ported rather than taken, because the backend they target is gone here:

  - OS hibernation prevention grows an SDL backend. Upstream ships one
    file per platform; only the Windows one survives here, so the macOS
    and Linux halves move into LLAppViewerSDL as an IOPMAssertion and a
    logind Inhibit fd, with SDL3 owning the screen-saver half on both.
  - Following the OS default audio device is gated on the output device
    preference being empty. Upstream has no such preference, so their
    version would drag a user off a device they had pinned.
  - Tabular figures ask HarfBuzz for the 'tnum' feature instead of
    measuring the widest digit: glyph entries here are keyed by glyph
    index and cannot carry the character upstream's version needs.
  - The LLSD formatter keeps its buffered Sink and gains upstream's
    failure handling, minus the stream exception mask -- Sink flushes
    from its destructor, so an enabled mask would throw from one.

Kept from upstream even where the mechanism differed: the JSON body for
Azure translation (URL escaping was mangling the text) now goes through
LlsdToJson; the colour picker keeps its own copy menu but takes their
hex parser, which accepts a leading '#'; scaleDown's macOS flush moves
to where this tree actually retires the old texture.

LLProcess drops APR for boost::process v2, so vcpkg gains boost-process.

Upstream's licenses-*.txt update is corrupt in their tree -- diff
artifacts pasted in and the DejaVu block truncated -- so only the
WebRTC block comes across. Their top-level Voice preferences tab and
the colour picker's format combo are both dropped: the equivalent
controls already exist here, in the Sound panel and the right-click
menu respectively.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Memory safety first. LLProcess' new async_write handed asio a raw pointer
into a live streambuf and held it for the whole operation; appending
through get_ostream() meanwhile calls overflow() -> reserve(), which
memmoves the pending bytes to offset 0 and can reallocate. The size
snapshot the comment relied on fixes the length, not the address, and
LLLeap answers stdout on stdin from inside the same poll_one() loop. The
write now owns its buffer.

Two regressions where taking upstream's file wholesale reverted work
this tree had already done:

  - bufferInboundPacket returned 0 for a runt SOCKS datagram, which
    ends drainUdpSocket's loop and leaves the rest of the kernel buffer
    unread; the under-reported count then defeats the adaptive
    CheckMessagesMaxTime backpressure. The socket-read size and the
    usable-payload size are now separate, because the function also
    gates the ACK harvest.
  - Windows crash exits were classified EXITED, losing the
    STATUS_ACCESS_VIOLATION test that told a crash from a return code.

Defects in the ports themselves:

  - The SDL backend must not touch SDL_{Disable,Enable}ScreenSaver.
    That flag is one absolute global which llwindowsdl already drives
    from window focus, so both hibernation modes did the opposite of
    what they promise after the first alt-tab, and DEFAULT could never
    restore SDL's own initial state.
  - A logind "sleep" inhibitor taken as "block" refuses every suspend,
    including closing the lid. Windows asks for ES_SYSTEM_REQUIRED and
    macOS for NoIdleSleep, which stop only the idle timer; "idle" is
    the logind equivalent. The system bus connection is also unref'd
    now, and no longer able to _exit() the viewer if it drops.
  - The OpenAL default-device event fires for capture devices too, so
    changing the default microphone reopened the output device.
  - LLFontFreetype::wghtAxisSet returned the requested axis flag rather
    than the one the face applied, which is what its comment promised.
  - A synthetic packet injected by the message log carries no real
    sequence number, so it must not advance the circuit's inbound state.

Two things that only looked like hardening. The macOS flush in
scaleDown preceded no GL call at all -- free_tex_image is CPU
accounting and deleteTextures defers by frames -- and this tree never
respecifies the source texture, so upstream's hazard cannot arise here.
The null glyph-slot guard returned early from renderGlyph while its
caller dereferenced the slot regardless.

Also: the alpha classifier counted samples it no longer takes, so an
odd-dimensioned texture could never reach the "all clumped at one end
of the range" escapes and a uniformly faint decal was treated as a
1-bit mask; the zerocode overflow guards no longer underflow on a
destination under 256 bytes, and its test now asserts the partial
output is discarded rather than merely bounded, which is what actually
distinguishes the fix; macOS gets the local-network usage description
WebRTC voice needs, which had nowhere to land because our plist is
renamed; and the PBR repeats/rotation spinners line up with their
Blinn-Phong equivalents again.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
26.4 added getStartupLogFileName() so a custom log file is used from the
first line, but it reads the command line two ways that only work on
Windows: gSavedSettings, which has no controls yet because this runs
from LLAppViewer's constructor, and GetCommandLineW. macOS and Linux
parse --logfile into UserLogFile and then ignore it, because the
listener that would act on the value is registered after the value is
set and so never fires.

The entry point already has argv before it constructs the viewer, so it
hands it over and the scan is shared by all platforms. Windows keeps
asking the OS when that yields nothing, since its native entry point
receives a command tail rather than argv.

The option spellings the old Windows-only scan accepted are preserved
and now apply everywhere: "--logfile X", "--logfile=X", and the "-opt"
and "/opt" variants, with ':' allowed alongside '='.

Separately: Develop > Selected Material Info gives up
Ctrl+Alt+Shift+M. 26.4's new Mute/unmute sound claims the same
accelerator and wins on document order, so the shortcut on the older
item had stopped working while its menu label still advertised it.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 361 files, which is 261 over the limit of 100.

To get a review, reduce the PR to 100 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 87a80c41-b2ea-404a-b128-5e107d06a9a8

📥 Commits

Reviewing files that changed from the base of the PR and between 946dd96 and 0b3af14.

⛔ Files ignored due to path filters (6)
  • indra/newview/app_settings/shaders/class3/deferred/materialF.glsl is excluded by !**/*.glsl
  • indra/newview/skins/default/textures/toolbar_icons/howto.png is excluded by !**/*.png
  • indra/newview/skins/default/textures/widgets/ComboButton_Off.png is excluded by !**/*.png
  • indra/newview/skins/default/textures/widgets/ComboButton_Selected.png is excluded by !**/*.png
  • indra/newview/skins/default/textures/widgets/SegmentedBtn_Left_Off.png is excluded by !**/*.png
  • indra/newview/skins/default/textures/widgets/SegmentedBtn_Left_Selected.png is excluded by !**/*.png
📒 Files selected for processing (361)
  • doc/external-editor-json-rpc.md
  • indra/cmake/Boost.cmake
  • indra/cmake/Linking.cmake
  • indra/llappearance/llpolymesh.cpp
  • indra/llappearance/lltexlayer.cpp
  • indra/llappearance/llwearable.cpp
  • indra/llaudio/llaudioengine_openal.cpp
  • indra/llaudio/llaudioengine_openal.h
  • indra/llcharacter/llcharacter.cpp
  • indra/llcharacter/llcharacter.h
  • indra/llcharacter/llvisualparam.h
  • indra/llcommon/llapr.cpp
  • indra/llcommon/llcoros.cpp
  • indra/llcommon/llerror.h
  • indra/llcommon/llprocess.cpp
  • indra/llcommon/llprocess.h
  • indra/llcommon/llprocessor.cpp
  • indra/llcommon/llprocessor.h
  • indra/llcommon/llqueuedthread.cpp
  • indra/llcommon/llqueuedthread.h
  • indra/llcommon/llsdserialize_xml.cpp
  • indra/llcommon/llsys.cpp
  • indra/llcommon/llsys.h
  • indra/llcommon/llthread.cpp
  • indra/llcommon/llwatchdog.cpp
  • indra/llcommon/llwatchdog.h
  • indra/llcommon/tests/llprocess_test.cpp
  • indra/llcommon/tests/llsdserialize_test.cpp
  • indra/llcorehttp/CMakeLists.txt
  • indra/llcorehttp/httpstats.cpp
  • indra/llcorehttp/httpstats.h
  • indra/llcorehttp/lljsonrpcws.cpp
  • indra/llcorehttp/lljsonrpcws.h
  • indra/llcorehttp/tests/llcorehttp_test.cpp
  • indra/llcorehttp/tests/test_jsonrpcws.hpp
  • indra/llfilesystem/lldiskcache.cpp
  • indra/llfilesystem/lllfsthread.cpp
  • indra/llinventory/llinventory.cpp
  • indra/llkdu/llimagej2ckdu.cpp
  • indra/llmath/llvolume.cpp
  • indra/llmath/llvolume.h
  • indra/llmessage/CMakeLists.txt
  • indra/llmessage/llcircuit.cpp
  • indra/llmessage/llpacketbuffer.h
  • indra/llmessage/llpacketring.cpp
  • indra/llmessage/llpacketring.h
  • indra/llmessage/llqueryflags.h
  • indra/llmessage/lltemplatemessagebuilder.cpp
  • indra/llmessage/llzerocode.h
  • indra/llmessage/message.cpp
  • indra/llmessage/message.h
  • indra/llmessage/net.cpp
  • indra/llmessage/tests/llzerocode_test.cpp
  • indra/llphysicsextensionsos/llphysicsextensions.cpp
  • indra/llplugin/llpluginclassmedia.cpp
  • indra/llplugin/llpluginclassmedia.h
  • indra/llplugin/llpluginprocessparent.cpp
  • indra/llplugin/llpluginprocessparent.h
  • indra/llprimitive/llprimitive.cpp
  • indra/llprimitive/llprimitive.h
  • indra/llrender/alfontshaping.cpp
  • indra/llrender/llfontfreetype.cpp
  • indra/llrender/llfontfreetype.h
  • indra/llrender/llfontgl.cpp
  • indra/llrender/llgl.cpp
  • indra/llrender/llimagegl.cpp
  • indra/llrender/llimagegl.h
  • indra/llrender/llshadermgr.cpp
  • indra/llrender/lluiimage.cpp
  • indra/llrender/lluiimage.h
  • indra/llrender/lluiimage.inl
  • indra/llrender/llvertexbuffer.cpp
  • indra/llui/CMakeLists.txt
  • indra/llui/llflyoutbutton.cpp
  • indra/llui/llfolderview.cpp
  • indra/llui/llfolderviewitem.cpp
  • indra/llui/llfolderviewitem.h
  • indra/llui/llgestureautocompletehelper.cpp
  • indra/llui/llgestureautocompletehelper.h
  • indra/llui/lltextbase.cpp
  • indra/llui/lltextbase.h
  • indra/llui/lltexteditor.cpp
  • indra/llui/lltexteditor.h
  • indra/llui/lltextvalidate.cpp
  • indra/llui/lltextvalidate.h
  • indra/llui/lltoolbar.cpp
  • indra/llui/lltoolbar.h
  • indra/llui/llurlaction.cpp
  • indra/llui/llurlaction.h
  • indra/llwebrtc/llwebrtc.cpp
  • indra/llwebrtc/llwebrtc_impl.h
  • indra/llwindow/CMakeLists.txt
  • indra/llwindow/llwindowcallbacks.cpp
  • indra/llwindow/llwindowcallbacks.h
  • indra/llwindow/llwindowmacosx_iokit.h
  • indra/llwindow/llwindowwin32.cpp
  • indra/llwindow/llwindowwin32.h
  • indra/llxml/llcontrol.cpp
  • indra/llxml/llcontrol.h
  • indra/media_plugins/cef/media_plugin_cef.cpp
  • indra/newview/CMakeLists.txt
  • indra/newview/Info-AlchemySDL.plist
  • indra/newview/VIEWER_VERSION.txt
  • indra/newview/app_settings/cmd_line.xml
  • indra/newview/app_settings/commands.xml
  • indra/newview/app_settings/settings.xml
  • indra/newview/app_settings/toolbars.xml
  • indra/newview/licenses-linux.txt
  • indra/newview/licenses-mac.txt
  • indra/newview/licenses-win32.txt
  • indra/newview/llagent.cpp
  • indra/newview/llaisapi.cpp
  • indra/newview/llaisapi.h
  • indra/newview/llappviewer.cpp
  • indra/newview/llappviewer.h
  • indra/newview/llappviewersdl.cpp
  • indra/newview/llappviewersdl.h
  • indra/newview/llappviewerwin32.cpp
  • indra/newview/llappviewerwin32.h
  • indra/newview/llavataractions.cpp
  • indra/newview/llavataractions.h
  • indra/newview/llchathistory.cpp
  • indra/newview/llchatitemscontainerctrl.cpp
  • indra/newview/llcommandlineparser.cpp
  • indra/newview/llcompilequeue.cpp
  • indra/newview/lldrawable.cpp
  • indra/newview/lldrawpool.cpp
  • indra/newview/lldrawpoolalpha.cpp
  • indra/newview/lldrawpoolavatar.cpp
  • indra/newview/lleventpoll.cpp
  • indra/newview/llfeaturemanager.cpp
  • indra/newview/llfilepicker_mac.mm
  • indra/newview/llfloaterbuycurrency.cpp
  • indra/newview/llfloatercolorpicker.cpp
  • indra/newview/llfloatercolorpicker.h
  • indra/newview/llfloateremojipicker.cpp
  • indra/newview/llfloatergestureautocompletepicker.cpp
  • indra/newview/llfloatergestureautocompletepicker.h
  • indra/newview/llfloaterhowto.cpp
  • indra/newview/llfloaterimcontainer.cpp
  • indra/newview/llfloaterimnearbychat.cpp
  • indra/newview/llfloaterimnearbychathandler.cpp
  • indra/newview/llfloaterimsessiontab.h
  • indra/newview/llfloaterinspect.cpp
  • indra/newview/llfloaterland.cpp
  • indra/newview/llfloaterland.h
  • indra/newview/llfloaterobjectweights.cpp
  • indra/newview/llfloaterobjectweights.h
  • indra/newview/llfloaterreporter.cpp
  • indra/newview/llfloaterreporter.h
  • indra/newview/llfloatersnapshot.cpp
  • indra/newview/llfloatersnapshot.h
  • indra/newview/llfloaterworldmap.cpp
  • indra/newview/llfloaterworldmap.h
  • indra/newview/llgltfmateriallist.cpp
  • indra/newview/llgroupmgr.cpp
  • indra/newview/llhudnametag.cpp
  • indra/newview/llimprocessing.cpp
  • indra/newview/llimview.cpp
  • indra/newview/llinventorybridge.cpp
  • indra/newview/llinventorybridge.h
  • indra/newview/llinventoryfilter.h
  • indra/newview/llinventorymodel.cpp
  • indra/newview/llinventorymodel.h
  • indra/newview/llinventoryobserver.h
  • indra/newview/llinventorypanel.cpp
  • indra/newview/lllogininstance.cpp
  • indra/newview/llmachineid.cpp
  • indra/newview/llmanipscale.cpp
  • indra/newview/llmaterialeditor.cpp
  • indra/newview/llmediactrl.cpp
  • indra/newview/llmediactrl.h
  • indra/newview/llmutelist.cpp
  • indra/newview/llmutelist.h
  • indra/newview/llnotificationstorage.cpp
  • indra/newview/lloutfitslist.cpp
  • indra/newview/llpaneldirgroups.cpp
  • indra/newview/llpanelgrouproles.cpp
  • indra/newview/llpanelgrouproles.h
  • indra/newview/llpanellandmedia.cpp
  • indra/newview/llpanellogin.cpp
  • indra/newview/llpanelmaininventory.cpp
  • indra/newview/llpanelmarketplaceinboxinventory.cpp
  • indra/newview/llpanelobjectinventory.cpp
  • indra/newview/llpanelplaces.cpp
  • indra/newview/llpanelprofilepicks.cpp
  • indra/newview/llpanelprofilepicks.h
  • indra/newview/llpanelsnapshot.cpp
  • indra/newview/llpanelvoicedevicesettings.cpp
  • indra/newview/llpreviewscript.cpp
  • indra/newview/llpreviewtexture.cpp
  • indra/newview/llpublishedobjectmgr.cpp
  • indra/newview/llpublishedobjectmgr.h
  • indra/newview/llscripteditorws.cpp
  • indra/newview/llscripteditorws.h
  • indra/newview/llselectmgr.cpp
  • indra/newview/llselectmgr.h
  • indra/newview/llstartup.cpp
  • indra/newview/llstatusbar.cpp
  • indra/newview/llsyntaxid.cpp
  • indra/newview/lltexturefetch.cpp
  • indra/newview/lltoolbrush.cpp
  • indra/newview/lltooldraganddrop.cpp
  • indra/newview/lltoolmorph.cpp
  • indra/newview/lltoolmorph.h
  • indra/newview/lltranslate.cpp
  • indra/newview/llurlfloaterdispatchhandler.cpp
  • indra/newview/llvelopack.cpp
  • indra/newview/llviewerassetstorage.cpp
  • indra/newview/llviewercontrollistener.cpp
  • indra/newview/llviewercontrollistener.h
  • indra/newview/llviewerfloaterreg.cpp
  • indra/newview/llviewerinventory.cpp
  • indra/newview/llviewerinventory.h
  • indra/newview/llviewerjoint.cpp
  • indra/newview/llviewerjointmesh.cpp
  • indra/newview/llviewerjointmesh.h
  • indra/newview/llviewermedia.cpp
  • indra/newview/llviewermenu.cpp
  • indra/newview/llviewermenu.h
  • indra/newview/llviewermenufile.cpp
  • indra/newview/llviewermessage.cpp
  • indra/newview/llviewernetwork.cpp
  • indra/newview/llviewernetwork.h
  • indra/newview/llviewerobject.cpp
  • indra/newview/llviewerobject.h
  • indra/newview/llviewerobjectlist.cpp
  • indra/newview/llviewerparcelmgr.cpp
  • indra/newview/llviewerregion.cpp
  • indra/newview/llviewershadermgr.cpp
  • indra/newview/llviewerstats.cpp
  • indra/newview/llviewertexteditor.cpp
  • indra/newview/llviewertexturelist.cpp
  • indra/newview/llviewerthrottle.cpp
  • indra/newview/llviewerthrottle.h
  • indra/newview/llviewerwindow.cpp
  • indra/newview/llviewerwindow.h
  • indra/newview/llvoavatar.cpp
  • indra/newview/llvoavatar.h
  • indra/newview/llvoavatarself.cpp
  • indra/newview/llvoavatarself.h
  • indra/newview/llvocache.cpp
  • indra/newview/llvoicechannel.cpp
  • indra/newview/llvoiceclient.cpp
  • indra/newview/llvoicewebrtc.cpp
  • indra/newview/llvoicewebrtc.h
  • indra/newview/llvovolume.cpp
  • indra/newview/llvovolume.h
  • indra/newview/llwindowlistener.cpp
  • indra/newview/llwindowlistener.h
  • indra/newview/llworld.cpp
  • indra/newview/pipeline.cpp
  • indra/newview/skins/alchemy/textures/textures.xml
  • indra/newview/skins/default/textures/textures.xml
  • indra/newview/skins/default/xui/da/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/da/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/da/panel_script_ed.xml
  • indra/newview/skins/default/xui/de/floater_how_to.xml
  • indra/newview/skins/default/xui/de/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/de/notifications.xml
  • indra/newview/skins/default/xui/de/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/de/panel_script_ed.xml
  • indra/newview/skins/default/xui/de/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/de/strings.xml
  • indra/newview/skins/default/xui/en/floater_about_land.xml
  • indra/newview/skins/default/xui/en/floater_color_picker.xml
  • indra/newview/skins/default/xui/en/floater_create_landmark.xml
  • indra/newview/skins/default/xui/en/floater_edit_ext_day_cycle.xml
  • indra/newview/skins/default/xui/en/floater_gesture_autocomplete_picker.xml
  • indra/newview/skins/default/xui/en/floater_how_to.xml
  • indra/newview/skins/default/xui/en/floater_inventory_settings.xml
  • indra/newview/skins/default/xui/en/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/en/floater_object_weights.xml
  • indra/newview/skins/default/xui/en/floater_script_queue.xml
  • indra/newview/skins/default/xui/en/floater_snapshot.xml
  • indra/newview/skins/default/xui/en/floater_translation_settings.xml
  • indra/newview/skins/default/xui/en/floater_world_map.xml
  • indra/newview/skins/default/xui/en/menu_conversation_log_view.xml
  • indra/newview/skins/default/xui/en/menu_login.xml
  • indra/newview/skins/default/xui/en/menu_object_icon.xml
  • indra/newview/skins/default/xui/en/menu_url_objectim.xml
  • indra/newview/skins/default/xui/en/menu_viewer.xml
  • indra/newview/skins/default/xui/en/notifications.xml
  • indra/newview/skins/default/xui/en/panel_group_roles.xml
  • indra/newview/skins/default/xui/en/panel_inbox_inventory.xml
  • indra/newview/skins/default/xui/en/panel_landmark_info.xml
  • indra/newview/skins/default/xui/en/panel_outfit_gallery.xml
  • indra/newview/skins/default/xui/en/panel_outfits_list.xml
  • indra/newview/skins/default/xui/en/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/en/panel_script_ed.xml
  • indra/newview/skins/default/xui/en/panel_tools_texture.xml
  • indra/newview/skins/default/xui/en/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/en/strings.xml
  • indra/newview/skins/default/xui/en/widgets/flyout_button.xml
  • indra/newview/skins/default/xui/es/floater_how_to.xml
  • indra/newview/skins/default/xui/es/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/es/notifications.xml
  • indra/newview/skins/default/xui/es/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/es/panel_script_ed.xml
  • indra/newview/skins/default/xui/es/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/es/strings.xml
  • indra/newview/skins/default/xui/fr/floater_how_to.xml
  • indra/newview/skins/default/xui/fr/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/fr/notifications.xml
  • indra/newview/skins/default/xui/fr/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/fr/panel_script_ed.xml
  • indra/newview/skins/default/xui/fr/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/fr/strings.xml
  • indra/newview/skins/default/xui/it/floater_how_to.xml
  • indra/newview/skins/default/xui/it/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/it/notifications.xml
  • indra/newview/skins/default/xui/it/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/it/panel_script_ed.xml
  • indra/newview/skins/default/xui/it/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/it/strings.xml
  • indra/newview/skins/default/xui/ja/floater_how_to.xml
  • indra/newview/skins/default/xui/ja/floater_inventory_settings.xml
  • indra/newview/skins/default/xui/ja/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/ja/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/ja/panel_script_ed.xml
  • indra/newview/skins/default/xui/ja/strings.xml
  • indra/newview/skins/default/xui/pl/floater_how_to.xml
  • indra/newview/skins/default/xui/pl/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/pl/notifications.xml
  • indra/newview/skins/default/xui/pl/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/pl/panel_script_ed.xml
  • indra/newview/skins/default/xui/pl/strings.xml
  • indra/newview/skins/default/xui/pt/floater_how_to.xml
  • indra/newview/skins/default/xui/pt/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/pt/floater_settings_debug.xml
  • indra/newview/skins/default/xui/pt/notifications.xml
  • indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/pt/panel_script_ed.xml
  • indra/newview/skins/default/xui/pt/settings_comments.xml
  • indra/newview/skins/default/xui/pt/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/pt/strings.xml
  • indra/newview/skins/default/xui/ru/floater_how_to.xml
  • indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/ru/notifications.xml
  • indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/ru/panel_script_ed.xml
  • indra/newview/skins/default/xui/ru/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/ru/strings.xml
  • indra/newview/skins/default/xui/tr/floater_how_to.xml
  • indra/newview/skins/default/xui/tr/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/tr/notifications.xml
  • indra/newview/skins/default/xui/tr/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/tr/panel_script_ed.xml
  • indra/newview/skins/default/xui/tr/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/tr/strings.xml
  • indra/newview/skins/default/xui/zh/floater_how_to.xml
  • indra/newview/skins/default/xui/zh/floater_live_lsleditor.xml
  • indra/newview/skins/default/xui/zh/notifications.xml
  • indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
  • indra/newview/skins/default/xui/zh/panel_script_ed.xml
  • indra/newview/skins/default/xui/zh/sidepanel_item_info.xml
  • indra/newview/skins/default/xui/zh/strings.xml
  • indra/newview/skins/gemini/textures/textures.xml
  • indra/newview/tests/llslurl_test.cpp
  • indra/newview/tests/llviewernetwork_test.cpp
  • indra/vcpkg.json

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.