Skip to content

feat(amf): add amd_max_au_size option - #4926

Merged
ReenigneArcher merged 5 commits into
LizardByte:masterfrom
pollopopo:feature/amd-max-au-size
Aug 21, 2026
Merged

ReenigneArcher merged 5 commits into
LizardByte:masterfrom
pollopopo:feature/amd-max-au-size

Conversation

@pollopopo

@pollopopo pollopopo commented Mar 29, 2026 •

Copy link
Copy Markdown
Contributor

Description

Adds a new optional AMF encoder parameter amd_max_au_size that exposes the existing FFmpeg/AMF maximum Access Unit size option to Sunshine users. This is not a silver bullet — it is an additional tool in the toolbox for users who have exhausted other options and are still experiencing stream instability, particularly on problematic Wi-Fi connections.

Most users will never need this setting. The existing rate control modes (VBR_LATENCY, CBR) and other options (enforce_hrd, vbaq, preanalysis) should be the first line of troubleshooting. This option is intended as a last resort for difficult network conditions where standard rate control cannot prevent occasional oversized frames from disrupting the stream.

Background

Sunshine uses FEC (Forward Error Correction) to protect video frames against packet loss. FEC has a hard limit: each block supports max 255 data shards, with max 4 blocks per frame. When an encoded frame exceeds this limit (~889 KB at default settings), FEC is disabled for that frame:

// stream.cpp line 1373
if (fec_blocks_needed > MAX_FEC_BLOCKS) {
    BOOST_LOG(warning) << "Skipping FEC for abnormally large encoded frame...";
    fecPercentage = 0;
}

Additionally, large encoded frames produce large packet bursts that can overwhelm Wi-Fi TX queues, causing packet loss even when the link has sufficient average bandwidth.

Standard rate control modes (VBR, CBR) treat bitrate targets as soft constraints and can still produce occasional frame size spikes during high-complexity scenes. For most users on decent networks, these spikes are harmless. But on congested or unreliable Wi-Fi, they can be the difference between a stable and unstable stream.

What this PR does

Exposes the AMF max_au_size encoder option, which sets a hard, hardware-enforced cap on the maximum encoded frame size in bits. This maps to AMF_VIDEO_ENCODER_MAX_AU_SIZE (H.264) and AMF_VIDEO_ENCODER_HEVC_MAX_AU_SIZE (HEVC). AV1 does not support this option and has been excluded.

  • Disabled by default — no change to existing behavior for any user
  • Optional — uses std::optional<int>, completely ignored when not set (FFmpeg default: -1)
  • Zero overhead — the cap is enforced by the AMF hardware encoder, not in software
  • Follows existing patterns — same implementation approach as amd_enforce_hrd, amd_vbaq, etc.

When to use it

This setting is for users who:

  • Are streaming over Wi-Fi and experiencing dropped frames or stuttering
  • Have already tried adjusting bitrate, rate control mode, FEC percentage, and other standard settings
  • Are still seeing instability due to occasional frame size spikes

It is not a replacement for proper rate control configuration and network optimization.

Trade-offs

When the cap is hit, the encoder is forced to reduce quality for that frame, which may cause brief visual quality drops. The value also effectively limits the maximum bitrate regardless of what is configured in the client. Users should set it as high as their network reliably handles — not lower than necessary.

Choosing a value

The value is in bits. It controls the maximum size of any single encoded frame. Start with 800000 (~97 KB per frame, ~46 Mbps at 60fps) and increase until you find the highest value that remains stable on your network.

Value Max frame size Max bitrate at 60fps
800000 ~97 KB ~46 Mbps
1000000 ~122 KB ~58 Mbps
1600000 ~195 KB ~93 Mbps

Screenshot

New "AMF Max AU Size (bits)" field appears in the AMD AMF Encoder > Rate Control Settings section of the Web UI.

Issues Fixed or Closed

Roadmap Issues

Type of Change

  • feat: New feature (non-breaking change which adds functionality)
  • fix: Bug fix (non-breaking change which fixes an issue)
  • docs: Documentation only changes
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semicolons, etc.)
  • refactor: Code change that neither fixes a bug nor adds a feature
  • perf: Code change that improves performance
  • test: Adding missing tests or correcting existing tests
  • build: Changes that affect the build system or external dependencies
  • ci: Changes to CI configuration files and scripts
  • chore: Other changes that don't modify src or test files
  • revert: Reverts a previous commit
  • BREAKING CHANGE: Introduces a breaking change (can be combined with any type above)

Checklist

  • Code follows the style guidelines of this project
  • Code has been self-reviewed
  • Code has been commented, particularly in hard-to-understand areas
  • Code docstring/documentation-blocks for new or existing methods/components have been added or updated
  • Unit tests have been added or updated for any new or modified functionality

AI Usage

  • None: No AI tools were used in creating this PR
  • Light: AI provided minor assistance (formatting, simple suggestions)
  • Moderate: AI helped with code generation or debugging specific parts
  • Heavy: AI generated most or all of the code changes

Copilot AI review requested due to automatic review settings March 29, 2026 17:58

This comment was marked as low quality.

@ReenigneArcher ReenigneArcher added the ai PR has signs of heavy ai usage (either indicated by user or assumed) label Mar 29, 2026
@ReenigneArcher

This comment was marked as resolved.

@sonarqubecloud

Copy link
Copy Markdown

@LizardByte-bot

Copy link
Copy Markdown
Member

It looks like this PR has been idle for 90 days. If it's still something you're working on or would like to pursue, please leave a comment or update your branch. Otherwise, we'll be closing this PR in 10 days to reduce our backlog. Thanks!

Add a new optional AMF encoder parameter `amd_max_au_size` that caps
the maximum encoded frame (Access Unit) size in bytes.

When the AMF encoder (especially under CQP rate control) produces
oversized frames, they can exceed the FEC shard limit
(DATA_SHARDS_MAX=255 per block, max 4 blocks). When this happens,
FEC error correction is skipped for those frames entirely
(stream.cpp line 1373). On Wi-Fi networks, these large unprotected
frames are highly susceptible to packet loss, causing visible
dropped frames, stuttering, and stream instability.

By setting `amd_max_au_size` (e.g. 800000 bytes), the hardware
encoder itself enforces the frame size cap, ensuring every frame
stays within FEC protection limits. This works with all rate
control modes (CQP, CBR, VBR) and all three codecs (H.264, HEVC,
AV1). Disabled by default (0 or empty) to preserve existing
behavior.

Tested on AMD RDNA4 (RX 9070 XT) streaming over 5GHz Wi-Fi with
CQP mode. Setting max_au_size to 800000 eliminated FEC bypass
warnings and significantly improved stream stability.
Address review feedback:
- max_au_size is in bits per FFmpeg AMF documentation, not bytes
- AV1 encoder (av1_amf) does not support max_au_size, removed
- Updated UI description, docs, and recommended value accordingly
- FFmpeg default is -1 (disabled), aligned placeholder
800000 bits (~97 KB/frame, ~46 Mbps at 60fps) is the correct
recommended value for Wi-Fi streaming, not 6400000.

Added formula for users to calculate based on their bandwidth:
  (target_bitrate_mbps / fps / 1.2) * 1000000
where 1.2 accounts for ~20% FEC overhead.
Adds explicit validation for `amd_max_au_size` so only unset or values >= -1 are applied, matching FFmpeg/AMF expectations. Updates the web config input bounds and wording to clarify this as a last-resort FEC protection cap (H.264/HEVC only), and refreshes configuration docs with improved sizing guidance. Also expands unit coverage for codec option mapping and config parsing edge cases, including range boundaries.
@ReenigneArcher
ReenigneArcher force-pushed the feature/amd-max-au-size branch from bc8906e to 8a0a285 Compare August 21, 2026 14:14
@ReenigneArcher ReenigneArcher changed the title feat(amf): add max_au_size option to prevent FEC bypass on Wi-Fi feat(amf): add max_au_size option Aug 21, 2026
@ReenigneArcher ReenigneArcher changed the title feat(amf): add max_au_size option feat(amf): add amd_max_au_size option Aug 21, 2026
@codecov

codecov Bot commented Aug 21, 2026 •

Copy link
Copy Markdown

Bundle Report

Changes will decrease total bundle size by 267 bytes (-0.01%) ⬇️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
sunshine-esm 878.67kB -267 bytes (-0.03%) ⬇️

Affected Assets, Files, and Routes:

view changes for bundle: sunshine-esm

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/logo-*.js -15 bytes 384.71kB -0.0%
assets/config-*.js -252 bytes 73.54kB -0.34%

Files in assets/logo-*.js:

  • ./src_assets/common/assets/web/public/assets/locale/en.json → Total Size: 46.52kB

Files in assets/config-*.js:

  • ./src_assets/common/assets/web/config.html → Total Size: 0 bytes

  • ./src_assets/common/assets/web/configs/tabs/encoders/AmdAmfEncoder.vue → Total Size: 9.62kB

@codecov

codecov Bot commented Aug 21, 2026 •

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 83.33333% with 2 lines in your changes missing coverage. Please review.
✅ Project coverage is 33.81%. Comparing base (3dfbfe0) to head (e09df6b).
✅ All tests successful. No failed tests found.

Files with missing lines Patch % Lines
src/video.cpp 0.00% 0 Missing and 2 partials ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #4926      +/-   ##
==========================================
+ Coverage   32.50%   33.81%   +1.31%     
==========================================
  Files         104      104              
  Lines       25003    25065      +62     
  Branches    11078    11087       +9     
==========================================
+ Hits         8126     8476     +350     
- Misses      13894    14804     +910     
+ Partials     2983     1785    -1198     
Flag Coverage Δ
Archlinux 0.00% <0.00%> (ø)
FreeBSD-amd64 19.45% <77.77%> (+1.06%) ⬆️
Homebrew-macos-14 30.69% <100.00%> (+2.58%) ⬆️
Homebrew-macos-15 31.40% <100.00%> (+2.57%) ⬆️
Homebrew-macos-26 31.50% <100.00%> (+2.56%) ⬆️
Homebrew-ubuntu-24.04 20.76% <100.00%> (+1.69%) ⬆️
Linux-AppImage 20.17% <100.00%> (+1.70%) ⬆️
Windows-AMD64 25.76% <100.00%> (+1.96%) ⬆️
Windows-ARM64 21.64% <63.63%> (+1.11%) ⬆️
macOS-arm64 25.48% <ø> (+0.10%) ⬆️
macOS-x86_64 26.13% <ø> (+0.11%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/config.cpp 59.82% <100.00%> (+35.62%) ⬆️
src/config.h 25.00% <ø> (+13.88%) ⬆️
src/video.cpp 54.31% <0.00%> (-0.06%) ⬇️

... and 58 files with indirect coverage changes


Continue to review full report in Codecov by Harness.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3dfbfe0...e09df6b. Read the comment docs.

@github-actions

github-actions Bot commented Aug 21, 2026 •

Copy link
Copy Markdown

@github-actions

github-actions Bot commented Aug 21, 2026 •

Copy link
Copy Markdown
Last Updated 2026-08-21 19:22:37 UTC
Source Run CI Run #5063
Commit e09df6bd26a6bf8c3e4026339cb134a589081b3f

Screenshot Comparison

PR #4926 screenshots vs screenshots baseline.

Matrix: AppImage

Image Baseline PR
sunshine_tray_initial.png
sunshine_tray_menu.png
sunshine_tray_pairing_request.png
sunshine_tray_paused.png
sunshine_tray_stopped.png
sunshine_tray_streaming.png
sunshine_tray_tooltip.png

Matrix: Windows-AMD64

Image Baseline PR
sunshine_tray_initial.png
sunshine_tray_menu.png
sunshine_tray_pairing_request.png
sunshine_tray_paused.png
sunshine_tray_stopped.png
sunshine_tray_streaming.png
sunshine_tray_tooltip.png

Matrix: Windows-ARM64

Image Baseline PR
sunshine_tray_initial.png
sunshine_tray_menu.png
sunshine_tray_pairing_request.png
sunshine_tray_paused.png
sunshine_tray_stopped.png
sunshine_tray_streaming.png
sunshine_tray_tooltip.png

Matrix: macOS-arm64

Image Baseline PR
sunshine_tray_initial.png
sunshine_tray_menu.png
sunshine_tray_pairing_request.png
sunshine_tray_paused.png
sunshine_tray_stopped.png
sunshine_tray_streaming.png
sunshine_tray_tooltip.png

Matrix: macOS-x86_64

Image Baseline PR
sunshine_tray_initial.png
sunshine_tray_menu.png
sunshine_tray_pairing_request.png
sunshine_tray_paused.png
sunshine_tray_stopped.png
sunshine_tray_streaming.png
sunshine_tray_tooltip.png

@sonarqubecloud

Copy link
Copy Markdown

@ReenigneArcher
ReenigneArcher merged commit f0ad7cd into LizardByte:master Aug 21, 2026
62 of 63 checks passed
eball added a commit to Above-Os/Sunshine that referenced this pull request Sep 20, 2026
* build(homebrew): force cuda on Linux (LizardByte#5345)

* chore(deps): update vmactions/freebsd-vm action to v1.4.9 (LizardByte#5348)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/cache action to v6.1.0 (LizardByte#5349)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5347)

* chore(deps): update vmactions/freebsd-vm action to v1.5.0 (LizardByte#5352)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): avoid UAF crashes during video reinit (reproducible on Vulkan) (LizardByte#5346)

* build(FreeBSD): adjust CI Python dependency groups (LizardByte#5355)

* fix(video): avoid nullptr deref segfault on encode session teardown (LizardByte#5257)

* fix(flatpak): system tray permission (LizardByte#5354)

* feat(linux): pace capture at exact fractional NTSC framerates (LizardByte#5282)

* chore: use lizardbyte-common in c++ (LizardByte#5356)

Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.22.0 (LizardByte#5358)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5359)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(linux): avoid network for appstream cli & add missing deps (LizardByte#5363)

* fix(linux/pipewire): avoid memory leaks (LizardByte#5360)

Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>

* feat(macOS): libdispalydevice integration (LizardByte#5338)

Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* perf(deps): switch to upstream nanors runtime dispatching (LizardByte#5369)

* chore(deps): update dependency @lucide/vue to v1.23.0 (LizardByte#5365)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `99c45d3` to `1f76427` (LizardByte#5375)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `99c45d3` to `1f76427`.
- [Commits](moonlight-stream/moonlight-common-c@99c45d3...1f76427)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 1f764276e848ae2ec7815ef90d1c1748272e074a
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/nanors from `57ee5e9` to `c3529fd` (LizardByte#5376)

Bumps [third-party/nanors](https://github.com/sleepybishop/nanors) from `57ee5e9` to `c3529fd`.
- [Commits](sleepybishop/nanors@57ee5e9...c3529fd)

---
updated-dependencies:
- dependency-name: third-party/nanors
  dependency-version: c3529fda520f53cd007328ba30b6ad3f89947722
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v8.3.0 (LizardByte#5379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(Linux): Allow building with Vulkan but without Wayland (LizardByte#5377)

Signed-off-by: James Le Cuirot <chewi@gentoo.org>

* chore(deps): lock file maintenance (LizardByte#5383)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: revise bug report template for clarity and rules (LizardByte#5387)

* chore(sonar): ignore submodules (LizardByte#5390)

* ci: fix PR checkouts on arch and flatpak (LizardByte#5391)

* chore: Remove setuptools from glad dependencies (LizardByte#5392)

* build(deps): bump third-party/moonlight-common-c from `1f76427` to `2ea4775` (LizardByte#5382)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `1f76427` to `2ea4775`.
- [Commits](moonlight-stream/moonlight-common-c@1f76427...2ea4775)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 2ea47752c3051d72a64bcca190024e8b354fa1ef
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: move nanors to moonlight-common-c submodule (LizardByte#5393)

* chore(l10n): update translations (LizardByte#5386)

* chore(deps): update astral-sh/setup-uv action to v8.3.2 (LizardByte#5389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): drop implicit DRM master for card fds (LizardByte#5286)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* refactor(sonar): migrate worker threads to std::jthread (LizardByte#5398)

* chore(packaging): Drop Windows NSIS builds and rename ZIP to lite (LizardByte#5405)

* chore(l10n): update translations (LizardByte#5403)

chore(l10n): update translations sunshine.json (Spanish)

* build(deps): bump third-party/moonlight-common-c from `2ea4775` to `82e2514` (LizardByte#5402)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `2ea4775` to `82e2514`.
- [Commits](moonlight-stream/moonlight-common-c@2ea4775...82e2514)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 82e25148549d249a80aaf4afc68e2abb07072edf
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.24.0 (LizardByte#5396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.6 (LizardByte#5395)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): avoid memory leak from unnecessary encoder re-probing (LizardByte#5404)

* chore(deps): Update build-deps to v2026.713.132551 (LizardByte#5409)

* chore(sonar): change NOSONAR comment style (LizardByte#5410)

* chore(deps): update actions/setup-node action to v7 (LizardByte#5413)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(linux/vaapi): VAAPI encoder improvements (LizardByte#5388)

* chore(deps): update dependency @vitejs/plugin-vue to v6.0.8 (LizardByte#5418)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(docs/linux): add Portal and EGL context tips (LizardByte#5419)

* fix(packaging/windows): Allow WiX installer downgrades (LizardByte#5435)

* feat(linux): use connector name as default display name on linux (LizardByte#5423)

* chore(deps): update actions/checkout action to v7.0.1 (LizardByte#5412)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-dotnet action to v6 (LizardByte#5422)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.1 (LizardByte#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.7 (LizardByte#5433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.25.0 (LizardByte#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.7 (LizardByte#5434)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `82e2514` to `703a069` (LizardByte#5428)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `82e2514` to `703a069`.
- [Commits](moonlight-stream/moonlight-common-c@82e2514...703a069)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 703a06946861ff82cd33e5e13c59c1b017f7ded9
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.40 (LizardByte#5421)

* chore(deps): update dependency vue to v3.5.40

* Add @vue/server-renderer lock entry

Updates package-lock.json to include @vue/server-renderer@3.5.40 and its Vue SSR runtime dependencies, keeping the lockfile in sync with the installed dependency graph.

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.2 (LizardByte#5436)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-python action to v7 (LizardByte#5437)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v9 (LizardByte#5438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5420)

* build(deps): bump third-party/moonlight-common-c from `703a069` to `e41355e` (LizardByte#5439)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `703a069` to `e41355e`.
- [Commits](moonlight-stream/moonlight-common-c@703a069...e41355e)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: e41355ea01670fd4c830b384009d31dd0339a705
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.26.0 (LizardByte#5440)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor: clients section to dynamically fetch from app-directory (LizardByte#5380)

* fix(amf): wire h264_amf coder and profile mapping (LizardByte#5442)

Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>

* chore: bump FreeBSD version from 14.4 to 15.1 (LizardByte#5445)

* chore: move nv-codec-headers to build-deps submodule (LizardByte#5449)

* fix(linux/kms): use same methodology for display name matching and list generation (LizardByte#5448)

* chore(l10n): update translations (LizardByte#5450)

* fix(nvenc): dynamic nv codec sdk selection (LizardByte#5451)

* chore(deps): update dependency @lucide/vue to v1.27.0 (LizardByte#5452)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.8 (LizardByte#5453)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.724.203728 (LizardByte#5446)

* build(deps): bump third-party/lizardbyte-common from `06cd442` to `011ad2b` (LizardByte#5457)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `06cd442` to `011ad2b`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@06cd442...011ad2b)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: 011ad2bb139083dcf4ec21f9c09f07470891a668
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* style: run clang-format across C++ sources

Reformatted conditionals, loops, and long function calls across core, platform, NVENC, and test helper code to match updated formatting rules, including minor spacing normalization in type declarations. These are style-only edits with no intended behavior changes.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5455)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: migrate to qt tray for all platforms (LizardByte#5260)

* fix(FreeBSD): Qt6 tray dependency package (LizardByte#5458)

* chore(deps): update lizardbyte/actions action to v2026.728.214955 (LizardByte#5459)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* test(tray): add system tray tests (LizardByte#4221)

* fix(web-ui): Welcome page styling (LizardByte#5466)

* chore(deps): update vmactions/freebsd-vm action to v1.5.3 (LizardByte#5478)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.28.0 (LizardByte#5463)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.9 (LizardByte#5473)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.41 (LizardByte#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5479)

* chore(docker): fix hadolint SC3014 (LizardByte#5482)

* build(macOS): fix macOS framework signing glob (LizardByte#5483)

* build(macOS): sign only valid framework bundles (LizardByte#5484)

* feat(logging): rotating log files (LizardByte#5485)

* chore(l10n): update translations (LizardByte#5487)

* chore(deps): update dependency @lucide/vue to v1.30.0 (LizardByte#5486)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(unix): add nv-codec-headers include path (LizardByte#5488)

* ci: add workflow to publish PR artifacts (LizardByte#5491)

* chore(deps): update dependency @lucide/vue to v1.31.0 (LizardByte#5493)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/kms)!: Use connector type index from KMS instead of self calculation (LizardByte#5489)

* build(windows): default to qt6-static (LizardByte#5497)

* feat(input): implement libvirtualhid adding new gamepad styles (LizardByte#5368)

* ci(FreeBSD): remove aarch64 (LizardByte#5516)

* chore(deps): lock file maintenance (LizardByte#5514)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(virtual-hid): remove license expiration (LizardByte#5517)

* build(homebrew): normalize remapped LCOV source paths (LizardByte#5518)

* chore(l10n): update translations (LizardByte#5507)

* fix(macOS): update build script and ci with explicit Qt6 paths (LizardByte#5502)

* chore(deps): update astral-sh/setup-uv action to v10 (LizardByte#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.10 (LizardByte#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/pipewire): restore dummy buffer for software encoders and fix buffer ownership (LizardByte#5495)

Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>

* fix(linux/freebsd): truncate thread names to 15 characters (LizardByte#5527)

* chore(deps): update dependency @lucide/vue to v1.32.0 (LizardByte#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5525)

* chore(deps): update dependency @lucide/vue to v1.33.0 (LizardByte#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(macOS): System tray icon disappears when restarting Sunshine (LizardByte#5504)

* fix(input): preserve aux gamepad data and bump libvirtualhid (LizardByte#5531)

* chore(l10n): update translations (LizardByte#5535)

* fix(wayland): use the current wl_output mode (LizardByte#5150)

Signed-off-by: Zach Denton <z@chdenton.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* feat(amf): add amd_max_au_size option (LizardByte#4926)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5539)

* chore: update Virtual HID requirements and mouse refresh (LizardByte#5547)

* chore(deps): update vmactions/freebsd-vm action to v1.5.4 (LizardByte#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `e41355e` to `874ac95` (LizardByte#5541)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `e41355e` to `874ac95`.
- [Commits](moonlight-stream/moonlight-common-c@e41355e...874ac95)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 874ac9548f1bd6f095ef2b435c42cdde460e7821
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.9 (LizardByte#5546)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5543)

* fix(linux/publish): release the Avahi client when the poll loop stops (LizardByte#5545)

* chore(l10n): update translations (LizardByte#5548)

* build(deps): bump third-party/lizardbyte-common from `011ad2b` to `ffc027d` (LizardByte#5550)

build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `011ad2b` to `ffc027d`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@011ad2b...ffc027d)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: ffc027d7b582b8a552c9028ebc18d18ecd919d72
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5551)

chore(l10n): update translations sunshine.json (Bulgarian)

* chore: add branding images (LizardByte#5552)

* fix(pipewire): gate variable rate capture and fix fractional framerates (LizardByte#5538)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.11 (LizardByte#5555)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.10 (LizardByte#5556)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5557)

* feat(input): update libvirtualhid integration (LizardByte#5563)

* chore(deps): update vmactions/freebsd-vm action to v1.5.5 (LizardByte#5561)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.42 (LizardByte#5560)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.35.0 (LizardByte#5565)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5559)

* chore(deps): add vite override for codecov plugin (LizardByte#5576)

* chore(deps): update lizardbyte/actions action to v2026.829.140353 (LizardByte#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update dependency vite to v8 (LizardByte#5578)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5579)

* fix(linux/pipewire): try variable rate for non-KWin compositors (LizardByte#5569)

* chore(deps): update dependency @lucide/vue to v1.37.0 (LizardByte#5581)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5582)

* feat(session): add SUNSHINE_CLIENT_NAME environment variable (LizardByte#5465)

* fix(windows/installer): PATH update reg add /f option ordering (LizardByte#5584)

* chore(deps): lock file maintenance (LizardByte#5588)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.38.0 (LizardByte#5587)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): fall back to SDR when HDR isn't supported (LizardByte#5429)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(windows): capture the configured audio sink instead of the default device (LizardByte#5408)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(input): track/release client keycode for modifiers (LizardByte#5558)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* ci: sonar fixes (LizardByte#5594)

* chore(l10n): update translations (LizardByte#5583)

* docs: fix typo automaticaly -> automatically (LizardByte#5573)

Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>

* fix: iterator/stat utility edge cases and add tests (LizardByte#5308)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): use compiler-selected libgcov for coverage (LizardByte#5597)

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `ac5a296` to `1fc3219` (LizardByte#5595)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `ac5a296` to `1fc3219`.
- [Commits](flatpak/flatpak-builder-tools@ac5a296...1fc3219)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: 1fc32195e3e60fe5c97f0af646dec7a99df5962b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.39.0 (LizardByte#5596)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* build(Windows): resolve system Node.js package (LizardByte#5599)

* refactor: pairing flow, pairing tests, and inline struct comments (LizardByte#5602)

* chore(deps): update dependency @lucide/vue to v1.40.0 (LizardByte#5606)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5600)

* build(docker): add bake config (LizardByte#5607)

* chore(deps): update dependency @lucide/vue to v1.41.0 (LizardByte#5609)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(flatpak): drop imagemagick dep (LizardByte#5610)

* ci: add Cloudsmith packaging support (LizardByte#5611)

* ci(release): avoid workflow concurrency deadlock (LizardByte#5612)

* chore(deps): update lizardbyte/actions action to v2026.905.43751 (LizardByte#5614)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5616)

* style(homebrew): fix homebrew validation (LizardByte#5620)

* build(deps): bump third-party/lizardbyte-common from `ffc027d` to `f9d91e1` (LizardByte#5624)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `ffc027d` to `f9d91e1`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@ffc027d...f9d91e1)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: f9d91e1d29b7473f58e43acde4579da4e56c4abe
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump clang-format to 23.1.0

Update the lockfile and dependency metadata to use clang-format 23.1.0 for the lint-c and dev extras. This refreshes the resolved package artifacts and version constraints in uv.lock.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): bump libvirtualhid (LizardByte#5585)

* fix(macOS): enable microphone permission flow (LizardByte#5621)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f` (LizardByte#5630)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f`

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `1d0d696` to `c329d9f`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@1d0d696...c329d9f)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c329d9fd0d39dfb47f0f2fb5467e1db2e8a1d623
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* test(tray): enable tray test hooks

Gate `TRAY_ENABLE_TEST_HOOKS` behind `BUILD_TESTS` in dependency setup and propagate the same definition to test targets when tray tests are enabled. This keeps production tray builds unchanged while allowing tray-specific test hook code to be compiled consistently for supported platforms.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): add aarch64 AppImage (LizardByte#5627)

* chore(l10n): update translations (LizardByte#5626)

* ci(FreeBSD): enable docs (LizardByte#5631)

* feat(linux/pipewire): add support for unpaced capture when appropriate (LizardByte#5629)

* chore(deps): update dependency @lucide/vue to v1.42.0 (LizardByte#5636)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5634)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.905.170812 (LizardByte#5637)

* build(Linux): enable openSUSE Leap 16.0 and Tumbleweed (LizardByte#5633)

* chore(flatpak): update org.kde.Platform runtime to 6.11 (LizardByte#5639)

* feat(config): add gamepad_driver option (LizardByte#5653)

* chore(l10n): update translations (LizardByte#5632)

* chore(deps): update dependency marked to v18.0.12 (LizardByte#5648)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `874ac95` to `62e0663` (LizardByte#5657)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `874ac95` to `62e0663`.
- [Commits](moonlight-stream/moonlight-common-c@874ac95...62e0663)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 62e066388f1a1b133e0bee947b9a374311a3354b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update lizardbyte/actions action to v2026.909.30231 (LizardByte#5664)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ubuntu docker tag to v26 (LizardByte#5666)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.6 (LizardByte#5665)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.43.0 (LizardByte#5655)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* ci(homebrew): run tests in separate step (LizardByte#5669)

* fix(deps): fix legacy nvenc presets and bump third-party/build-deps (LizardByte#5668)

* build(Linux): add Alpine packages (LizardByte#4987)

* fix(linux/vulkan): use vkGetDeviceQueue2 with FFmpeg 9.0 queue flags (LizardByte#5675)

* build(Linux): harden Qt6 dependency detection (LizardByte#5679)

* fix(av1,hevc): stop av1 probes from clobbering hevc results (LizardByte#5554)

* fix(api): return the final result of pairing (LizardByte#5680)

* fix(nvapi,nvenc): Load ARM64 DLLs on RTX Spark (LizardByte#5682)

* ci(homebrew): skip more_space action for release job (LizardByte#5683)

* chore(deps): update dependency @lucide/vue to v1.44.0 (LizardByte#5674)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(web-ui): localize config categories (LizardByte#5688)

* ci(homebrew): drop sonoma (LizardByte#5689)

* build(deps): bump third-party/plasma-wayland-protocols from `4c015e9` to `382dfab` (LizardByte#5687)

build(deps): bump third-party/plasma-wayland-protocols

Bumps [third-party/plasma-wayland-protocols](https://github.com/KDE/plasma-wayland-protocols) from `4c015e9` to `382dfab`.
- [Commits](KDE/plasma-wayland-protocols@4c015e9...382dfab)

---
updated-dependencies:
- dependency-name: third-party/plasma-wayland-protocols
  dependency-version: 382dfabda886d3f2f5c067b22e5a22376685ba78
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309` (LizardByte#5686)

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309`

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `b87f7e4` to `212e309`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@b87f7e4...212e309)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 212e3094fe6a09848d8ae058956faab27557c65c
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): install doxygen from msys2

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix: missing initializers and incorrect default for native_pen_touch (LizardByte#5693)

* build(Linux): add Ubuntu 26.10 Docker bake target (LizardByte#5622)

* fix(linux): handle NVENC in builds without CUDA (LizardByte#5698)

* fix(network): respect configured bind address (LizardByte#5700)

* fix(web-ui): add XDG Portal token reset (LizardByte#5701)

* fix(linux): export all Wayland DMA-BUF planes (LizardByte#5699)

* chore(deps): update dependency @lucide/vue to v1.45.0 (LizardByte#5694)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `212e309` to `419127b` (LizardByte#5703)

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `212e309` to `419127b`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@212e309...419127b)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 419127bad87f49b2d45fa957ea7302abbb49c01f
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `1fc3219` to `de2225a` (LizardByte#5702)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `1fc3219` to `de2225a`.
- [Commits](flatpak/flatpak-builder-tools@1fc3219...de2225a)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: de2225a6dee4818c1339b3cdbf29f90c471fcb7e
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(pipewire): extend KWin version check to handle 6.8 beta/RC versions (LizardByte#5704)

* Merge commit from fork

Sanitize GUI loader and plugin environment variables before privileged initialization, failing closed when the environment cannot be cleaned.

Retain CAP_SYS_ADMIN only on a dedicated DRM worker, route KMS and CUDA DRM access through it, reject queued work safely during overflow or shutdown, and drop the worker privileges when DRM access is no longer needed.

Add Linux regression coverage for the sanitizer and document the new privileged-worker interfaces.

Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* fix(linux): repair privileged DRM worker build (LizardByte#5706)

* fix(pipewire): gate variable rate to KWin 5.x.x - 6.7.79 (up to stable 6.7 series) (LizardByte#5705)

* test: PowerShell tests with Pester and Sonar fixes (LizardByte#5708)

* test(linux): synchronize environment sanitizer tests (LizardByte#5710)

* build(copr): use cuda redistributatle for Fedora builds (LizardByte#5719)

* build(linux): fix ubuntu 26.10 aarch64 artifact extraction (LizardByte#5720)

* chore(deps): update dependency @lucide/vue to v1.46.0 (LizardByte#5715)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5714)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v8.3.0 (LizardByte#5711)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency windows to v2025 (LizardByte#5712)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* feat(linux): use privileged EGL worker thread (LizardByte#5709)

* chore(deps): update astral-sh/setup-uv action to v10.1.0 (LizardByte#5684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5654)

* chore(deps): bump libvirtualhid (LizardByte#5722)

* fix(flatpak): remove need to prefix commands (LizardByte#5723)

* chore(deps): update codecov/codecov-action action to v7.1.0 (LizardByte#5724)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): move boost to CPM and bump to 1.92 (LizardByte#5730)

* refactor(web-ui): single page application (LizardByte#5731)

* test(web-ui): add tests and coverage (LizardByte#5736)

* refactor(web): sonar fixes (LizardByte#5740)

* fix(pairing): replace duplicate client certificates (LizardByte#5737)

* chore(deps): update codecov/codecov-action action to v7.1.1 (LizardByte#5741)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.43 (LizardByte#5742)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5735)

* build(deps): bump third-party/nvapi from `cd6918f` to `87dca62` (LizardByte#5618)

Bumps [third-party/nvapi](https://github.com/NVIDIA/nvapi) from `cd6918f` to `87dca62`.
- [Commits](NVIDIA/nvapi@cd6918f...87dca62)

---
updated-dependencies:
- dependency-name: third-party/nvapi
  dependency-version: 87dca625e83fd89a983e19b904e5f3a580da90d2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(macOS): remove zero-initialization (LizardByte#5744)

Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>

* build(deps): bump third-party/tray from `c329d9f` to `c1f2a8a` (LizardByte#5747)

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `c329d9f` to `c1f2a8a`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@c329d9f...c1f2a8a)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c1f2a8ab56dd399b881fb7aeab4fe4fc9c58188d
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.12 (LizardByte#5745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-router to v4.6.4 (LizardByte#5746)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(tray): move tray icon ownership to vite config (LizardByte#5761)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Signed-off-by: Zach Denton <z@chdenton.com>
Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: LizardByte-bot <108553330+LizardByte-bot@users.noreply.github.com>
Co-authored-by: Conn O'Griofa <connogriofa@gmail.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>
Co-authored-by: Harold <harold@mrtz.fr>
Co-authored-by: Aliaksei Dziadziuk <djadjka.by@gmail.com>
Co-authored-by: HurricanePootis <53066639+HurricanePootis@users.noreply.github.com>
Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>
Co-authored-by: martona <marton@anka.me>
Co-authored-by: Cameron Gutman <aicommander@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James Le Cuirot <chewi@gentoo.org>
Co-authored-by: 盼兮 <63710193+panxi39@users.noreply.github.com>
Co-authored-by: neatnoise <neatnoise@gmail.com>
Co-authored-by: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com>
Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>
Co-authored-by: Noklef <281545466+Noklef@users.noreply.github.com>
Co-authored-by: luanweslley77 <luanweslley77@gmail.com>
Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>
Co-authored-by: Zach Denton <z@chdenton.com>
Co-authored-by: pollopopo <61017252+pollopopo@users.noreply.github.com>
Co-authored-by: nikzasel <nikzasel@users.noreply.github.com>
Co-authored-by: Justin E. Oryschak <justin@oryschak.net>
Co-authored-by: matix753 <33520765+matix753@users.noreply.github.com>
Co-authored-by: tonyctalope <95322229+tonyctalope@users.noreply.github.com>
Co-authored-by: Seth Moore <sethdmoore@users.noreply.github.com>
Co-authored-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: dasepmoch <108404480+dasepmoch@users.noreply.github.com>
Co-authored-by: solidv <pedroclaro2@gmail.com>
Co-authored-by: bitness <lars_damerow@pixar.com>
Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>
eball added a commit to Above-Os/Sunshine that referenced this pull request Sep 20, 2026
* build(homebrew): force cuda on Linux (LizardByte#5345)

* chore(deps): update vmactions/freebsd-vm action to v1.4.9 (LizardByte#5348)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/cache action to v6.1.0 (LizardByte#5349)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5347)

* chore(deps): update vmactions/freebsd-vm action to v1.5.0 (LizardByte#5352)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): avoid UAF crashes during video reinit (reproducible on Vulkan) (LizardByte#5346)

* build(FreeBSD): adjust CI Python dependency groups (LizardByte#5355)

* fix(video): avoid nullptr deref segfault on encode session teardown (LizardByte#5257)

* fix(flatpak): system tray permission (LizardByte#5354)

* feat(linux): pace capture at exact fractional NTSC framerates (LizardByte#5282)

* chore: use lizardbyte-common in c++ (LizardByte#5356)

Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.22.0 (LizardByte#5358)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5359)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(linux): avoid network for appstream cli & add missing deps (LizardByte#5363)

* fix(linux/pipewire): avoid memory leaks (LizardByte#5360)

Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>

* feat(macOS): libdispalydevice integration (LizardByte#5338)

Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* perf(deps): switch to upstream nanors runtime dispatching (LizardByte#5369)

* chore(deps): update dependency @lucide/vue to v1.23.0 (LizardByte#5365)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `99c45d3` to `1f76427` (LizardByte#5375)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `99c45d3` to `1f76427`.
- [Commits](moonlight-stream/moonlight-common-c@99c45d3...1f76427)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 1f764276e848ae2ec7815ef90d1c1748272e074a
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/nanors from `57ee5e9` to `c3529fd` (LizardByte#5376)

Bumps [third-party/nanors](https://github.com/sleepybishop/nanors) from `57ee5e9` to `c3529fd`.
- [Commits](sleepybishop/nanors@57ee5e9...c3529fd)

---
updated-dependencies:
- dependency-name: third-party/nanors
  dependency-version: c3529fda520f53cd007328ba30b6ad3f89947722
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v8.3.0 (LizardByte#5379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(Linux): Allow building with Vulkan but without Wayland (LizardByte#5377)

Signed-off-by: James Le Cuirot <chewi@gentoo.org>

* chore(deps): lock file maintenance (LizardByte#5383)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: revise bug report template for clarity and rules (LizardByte#5387)

* chore(sonar): ignore submodules (LizardByte#5390)

* ci: fix PR checkouts on arch and flatpak (LizardByte#5391)

* chore: Remove setuptools from glad dependencies (LizardByte#5392)

* build(deps): bump third-party/moonlight-common-c from `1f76427` to `2ea4775` (LizardByte#5382)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `1f76427` to `2ea4775`.
- [Commits](moonlight-stream/moonlight-common-c@1f76427...2ea4775)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 2ea47752c3051d72a64bcca190024e8b354fa1ef
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: move nanors to moonlight-common-c submodule (LizardByte#5393)

* chore(l10n): update translations (LizardByte#5386)

* chore(deps): update astral-sh/setup-uv action to v8.3.2 (LizardByte#5389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): drop implicit DRM master for card fds (LizardByte#5286)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* refactor(sonar): migrate worker threads to std::jthread (LizardByte#5398)

* chore(packaging): Drop Windows NSIS builds and rename ZIP to lite (LizardByte#5405)

* chore(l10n): update translations (LizardByte#5403)

chore(l10n): update translations sunshine.json (Spanish)

* build(deps): bump third-party/moonlight-common-c from `2ea4775` to `82e2514` (LizardByte#5402)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `2ea4775` to `82e2514`.
- [Commits](moonlight-stream/moonlight-common-c@2ea4775...82e2514)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 82e25148549d249a80aaf4afc68e2abb07072edf
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.24.0 (LizardByte#5396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.6 (LizardByte#5395)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux): avoid memory leak from unnecessary encoder re-probing (LizardByte#5404)

* chore(deps): Update build-deps to v2026.713.132551 (LizardByte#5409)

* chore(sonar): change NOSONAR comment style (LizardByte#5410)

* chore(deps): update actions/setup-node action to v7 (LizardByte#5413)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(linux/vaapi): VAAPI encoder improvements (LizardByte#5388)

* chore(deps): update dependency @vitejs/plugin-vue to v6.0.8 (LizardByte#5418)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(docs/linux): add Portal and EGL context tips (LizardByte#5419)

* fix(packaging/windows): Allow WiX installer downgrades (LizardByte#5435)

* feat(linux): use connector name as default display name on linux (LizardByte#5423)

* chore(deps): update actions/checkout action to v7.0.1 (LizardByte#5412)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-dotnet action to v6 (LizardByte#5422)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.1 (LizardByte#5426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.7 (LizardByte#5433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.25.0 (LizardByte#5424)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.7 (LizardByte#5434)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5431)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `82e2514` to `703a069` (LizardByte#5428)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `82e2514` to `703a069`.
- [Commits](moonlight-stream/moonlight-common-c@82e2514...703a069)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 703a06946861ff82cd33e5e13c59c1b017f7ded9
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.40 (LizardByte#5421)

* chore(deps): update dependency vue to v3.5.40

* Add @vue/server-renderer lock entry

Updates package-lock.json to include @vue/server-renderer@3.5.40 and its Vue SSR runtime dependencies, keeping the lockfile in sync with the installed dependency graph.

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.2 (LizardByte#5436)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/setup-python action to v7 (LizardByte#5437)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update astral-sh/setup-uv action to v9 (LizardByte#5438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5420)

* build(deps): bump third-party/moonlight-common-c from `703a069` to `e41355e` (LizardByte#5439)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `703a069` to `e41355e`.
- [Commits](moonlight-stream/moonlight-common-c@703a069...e41355e)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: e41355ea01670fd4c830b384009d31dd0339a705
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.26.0 (LizardByte#5440)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor: clients section to dynamically fetch from app-directory (LizardByte#5380)

* fix(amf): wire h264_amf coder and profile mapping (LizardByte#5442)

Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>

* chore: bump FreeBSD version from 14.4 to 15.1 (LizardByte#5445)

* chore: move nv-codec-headers to build-deps submodule (LizardByte#5449)

* fix(linux/kms): use same methodology for display name matching and list generation (LizardByte#5448)

* chore(l10n): update translations (LizardByte#5450)

* fix(nvenc): dynamic nv codec sdk selection (LizardByte#5451)

* chore(deps): update dependency @lucide/vue to v1.27.0 (LizardByte#5452)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.8 (LizardByte#5453)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.724.203728 (LizardByte#5446)

* build(deps): bump third-party/lizardbyte-common from `06cd442` to `011ad2b` (LizardByte#5457)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `06cd442` to `011ad2b`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@06cd442...011ad2b)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: 011ad2bb139083dcf4ec21f9c09f07470891a668
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* style: run clang-format across C++ sources

Reformatted conditionals, loops, and long function calls across core, platform, NVENC, and test helper code to match updated formatting rules, including minor spacing normalization in type declarations. These are style-only edits with no intended behavior changes.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5455)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: migrate to qt tray for all platforms (LizardByte#5260)

* fix(FreeBSD): Qt6 tray dependency package (LizardByte#5458)

* chore(deps): update lizardbyte/actions action to v2026.728.214955 (LizardByte#5459)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* test(tray): add system tray tests (LizardByte#4221)

* fix(web-ui): Welcome page styling (LizardByte#5466)

* chore(deps): update vmactions/freebsd-vm action to v1.5.3 (LizardByte#5478)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.28.0 (LizardByte#5463)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.9 (LizardByte#5473)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.41 (LizardByte#5475)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5479)

* chore(docker): fix hadolint SC3014 (LizardByte#5482)

* build(macOS): fix macOS framework signing glob (LizardByte#5483)

* build(macOS): sign only valid framework bundles (LizardByte#5484)

* feat(logging): rotating log files (LizardByte#5485)

* chore(l10n): update translations (LizardByte#5487)

* chore(deps): update dependency @lucide/vue to v1.30.0 (LizardByte#5486)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(unix): add nv-codec-headers include path (LizardByte#5488)

* ci: add workflow to publish PR artifacts (LizardByte#5491)

* chore(deps): update dependency @lucide/vue to v1.31.0 (LizardByte#5493)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/kms)!: Use connector type index from KMS instead of self calculation (LizardByte#5489)

* build(windows): default to qt6-static (LizardByte#5497)

* feat(input): implement libvirtualhid adding new gamepad styles (LizardByte#5368)

* ci(FreeBSD): remove aarch64 (LizardByte#5516)

* chore(deps): lock file maintenance (LizardByte#5514)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(virtual-hid): remove license expiration (LizardByte#5517)

* build(homebrew): normalize remapped LCOV source paths (LizardByte#5518)

* chore(l10n): update translations (LizardByte#5507)

* fix(macOS): update build script and ci with explicit Qt6 paths (LizardByte#5502)

* chore(deps): update astral-sh/setup-uv action to v10 (LizardByte#5501)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.10 (LizardByte#5521)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(linux/pipewire): restore dummy buffer for software encoders and fix buffer ownership (LizardByte#5495)

Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>

* fix(linux/freebsd): truncate thread names to 15 characters (LizardByte#5527)

* chore(deps): update dependency @lucide/vue to v1.32.0 (LizardByte#5528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5525)

* chore(deps): update dependency @lucide/vue to v1.33.0 (LizardByte#5533)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(macOS): System tray icon disappears when restarting Sunshine (LizardByte#5504)

* fix(input): preserve aux gamepad data and bump libvirtualhid (LizardByte#5531)

* chore(l10n): update translations (LizardByte#5535)

* fix(wayland): use the current wl_output mode (LizardByte#5150)

Signed-off-by: Zach Denton <z@chdenton.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* feat(amf): add amd_max_au_size option (LizardByte#4926)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5539)

* chore: update Virtual HID requirements and mouse refresh (LizardByte#5547)

* chore(deps): update vmactions/freebsd-vm action to v1.5.4 (LizardByte#5540)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `e41355e` to `874ac95` (LizardByte#5541)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `e41355e` to `874ac95`.
- [Commits](moonlight-stream/moonlight-common-c@e41355e...874ac95)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 874ac9548f1bd6f095ef2b435c42cdde460e7821
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.9 (LizardByte#5546)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5543)

* fix(linux/publish): release the Avahi client when the poll loop stops (LizardByte#5545)

* chore(l10n): update translations (LizardByte#5548)

* build(deps): bump third-party/lizardbyte-common from `011ad2b` to `ffc027d` (LizardByte#5550)

build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `011ad2b` to `ffc027d`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@011ad2b...ffc027d)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: ffc027d7b582b8a552c9028ebc18d18ecd919d72
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5551)

chore(l10n): update translations sunshine.json (Bulgarian)

* chore: add branding images (LizardByte#5552)

* fix(pipewire): gate variable rate capture and fix fractional framerates (LizardByte#5538)

Co-authored-by: Kishi85 <41839133+Kishi85@users.noreply.github.com>

* chore(deps): update dependency marked to v18.0.11 (LizardByte#5555)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.10 (LizardByte#5556)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5557)

* feat(input): update libvirtualhid integration (LizardByte#5563)

* chore(deps): update vmactions/freebsd-vm action to v1.5.5 (LizardByte#5561)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.42 (LizardByte#5560)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.35.0 (LizardByte#5565)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5559)

* chore(deps): add vite override for codecov plugin (LizardByte#5576)

* chore(deps): update lizardbyte/actions action to v2026.829.140353 (LizardByte#5577)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): update dependency vite to v8 (LizardByte#5578)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5579)

* fix(linux/pipewire): try variable rate for non-KWin compositors (LizardByte#5569)

* chore(deps): update dependency @lucide/vue to v1.37.0 (LizardByte#5581)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5582)

* feat(session): add SUNSHINE_CLIENT_NAME environment variable (LizardByte#5465)

* fix(windows/installer): PATH update reg add /f option ordering (LizardByte#5584)

* chore(deps): lock file maintenance (LizardByte#5588)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.38.0 (LizardByte#5587)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(video): fall back to SDR when HDR isn't supported (LizardByte#5429)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(windows): capture the configured audio sink instead of the default device (LizardByte#5408)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix(input): track/release client keycode for modifiers (LizardByte#5558)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* ci: sonar fixes (LizardByte#5594)

* chore(l10n): update translations (LizardByte#5583)

* docs: fix typo automaticaly -> automatically (LizardByte#5573)

Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>

* fix: iterator/stat utility edge cases and add tests (LizardByte#5308)

Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): use compiler-selected libgcov for coverage (LizardByte#5597)

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `ac5a296` to `1fc3219` (LizardByte#5595)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `ac5a296` to `1fc3219`.
- [Commits](flatpak/flatpak-builder-tools@ac5a296...1fc3219)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: 1fc32195e3e60fe5c97f0af646dec7a99df5962b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.39.0 (LizardByte#5596)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* Merge commit from fork

* build(Windows): resolve system Node.js package (LizardByte#5599)

* refactor: pairing flow, pairing tests, and inline struct comments (LizardByte#5602)

* chore(deps): update dependency @lucide/vue to v1.40.0 (LizardByte#5606)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5600)

* build(docker): add bake config (LizardByte#5607)

* chore(deps): update dependency @lucide/vue to v1.41.0 (LizardByte#5609)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(flatpak): drop imagemagick dep (LizardByte#5610)

* ci: add Cloudsmith packaging support (LizardByte#5611)

* ci(release): avoid workflow concurrency deadlock (LizardByte#5612)

* chore(deps): update lizardbyte/actions action to v2026.905.43751 (LizardByte#5614)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update global workflows (LizardByte#5616)

* style(homebrew): fix homebrew validation (LizardByte#5620)

* build(deps): bump third-party/lizardbyte-common from `ffc027d` to `f9d91e1` (LizardByte#5624)

* build(deps): bump third-party/lizardbyte-common

Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `ffc027d` to `f9d91e1`.
- [Release notes](https://github.com/LizardByte/lizardbyte-common/releases)
- [Commits](LizardByte/lizardbyte-common@ffc027d...f9d91e1)

---
updated-dependencies:
- dependency-name: third-party/lizardbyte-common
  dependency-version: f9d91e1d29b7473f58e43acde4579da4e56c4abe
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump clang-format to 23.1.0

Update the lockfile and dependency metadata to use clang-format 23.1.0 for the lint-c and dev extras. This refreshes the resolved package artifacts and version constraints in uv.lock.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* chore(deps): bump libvirtualhid (LizardByte#5585)

* fix(macOS): enable microphone permission flow (LizardByte#5621)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f` (LizardByte#5630)

* build(deps): bump third-party/tray from `1d0d696` to `c329d9f`

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `1d0d696` to `c329d9f`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@1d0d696...c329d9f)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c329d9fd0d39dfb47f0f2fb5467e1db2e8a1d623
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* test(tray): enable tray test hooks

Gate `TRAY_ENABLE_TEST_HOOKS` behind `BUILD_TESTS` in dependency setup and propagate the same definition to test targets when tray tests are enabled. This keeps production tray builds unchanged while allowing tray-specific test hook code to be compiled consistently for supported platforms.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* build(Linux): add aarch64 AppImage (LizardByte#5627)

* chore(l10n): update translations (LizardByte#5626)

* ci(FreeBSD): enable docs (LizardByte#5631)

* feat(linux/pipewire): add support for unpaced capture when appropriate (LizardByte#5629)

* chore(deps): update dependency @lucide/vue to v1.42.0 (LizardByte#5636)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5634)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): Update build-deps to v2026.905.170812 (LizardByte#5637)

* build(Linux): enable openSUSE Leap 16.0 and Tumbleweed (LizardByte#5633)

* chore(flatpak): update org.kde.Platform runtime to 6.11 (LizardByte#5639)

* feat(config): add gamepad_driver option (LizardByte#5653)

* chore(l10n): update translations (LizardByte#5632)

* chore(deps): update dependency marked to v18.0.12 (LizardByte#5648)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/moonlight-common-c from `874ac95` to `62e0663` (LizardByte#5657)

build(deps): bump third-party/moonlight-common-c

Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c) from `874ac95` to `62e0663`.
- [Commits](moonlight-stream/moonlight-common-c@874ac95...62e0663)

---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
  dependency-version: 62e066388f1a1b133e0bee947b9a374311a3354b
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update lizardbyte/actions action to v2026.909.30231 (LizardByte#5664)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ubuntu docker tag to v26 (LizardByte#5666)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vmactions/freebsd-vm action to v1.5.6 (LizardByte#5665)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @lucide/vue to v1.43.0 (LizardByte#5655)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* ci(homebrew): run tests in separate step (LizardByte#5669)

* fix(deps): fix legacy nvenc presets and bump third-party/build-deps (LizardByte#5668)

* build(Linux): add Alpine packages (LizardByte#4987)

* fix(linux/vulkan): use vkGetDeviceQueue2 with FFmpeg 9.0 queue flags (LizardByte#5675)

* build(Linux): harden Qt6 dependency detection (LizardByte#5679)

* fix(av1,hevc): stop av1 probes from clobbering hevc results (LizardByte#5554)

* fix(api): return the final result of pairing (LizardByte#5680)

* fix(nvapi,nvenc): Load ARM64 DLLs on RTX Spark (LizardByte#5682)

* ci(homebrew): skip more_space action for release job (LizardByte#5683)

* chore(deps): update dependency @lucide/vue to v1.44.0 (LizardByte#5674)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(web-ui): localize config categories (LizardByte#5688)

* ci(homebrew): drop sonoma (LizardByte#5689)

* build(deps): bump third-party/plasma-wayland-protocols from `4c015e9` to `382dfab` (LizardByte#5687)

build(deps): bump third-party/plasma-wayland-protocols

Bumps [third-party/plasma-wayland-protocols](https://github.com/KDE/plasma-wayland-protocols) from `4c015e9` to `382dfab`.
- [Commits](KDE/plasma-wayland-protocols@4c015e9...382dfab)

---
updated-dependencies:
- dependency-name: third-party/plasma-wayland-protocols
  dependency-version: 382dfabda886d3f2f5c067b22e5a22376685ba78
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309` (LizardByte#5686)

* build(deps): bump third-party/doxyconfig from `b87f7e4` to `212e309`

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `b87f7e4` to `212e309`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@b87f7e4...212e309)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 212e3094fe6a09848d8ae058956faab27557c65c
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): install doxygen from msys2

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>

* fix: missing initializers and incorrect default for native_pen_touch (LizardByte#5693)

* build(Linux): add Ubuntu 26.10 Docker bake target (LizardByte#5622)

* fix(linux): handle NVENC in builds without CUDA (LizardByte#5698)

* fix(network): respect configured bind address (LizardByte#5700)

* fix(web-ui): add XDG Portal token reset (LizardByte#5701)

* fix(linux): export all Wayland DMA-BUF planes (LizardByte#5699)

* chore(deps): update dependency @lucide/vue to v1.45.0 (LizardByte#5694)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* build(deps): bump third-party/doxyconfig from `212e309` to `419127b` (LizardByte#5703)

Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `212e309` to `419127b`.
- [Release notes](https://github.com/LizardByte/doxyconfig/releases)
- [Commits](LizardByte/doxyconfig@212e309...419127b)

---
updated-dependencies:
- dependency-name: third-party/doxyconfig
  dependency-version: 419127bad87f49b2d45fa957ea7302abbb49c01f
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from `1fc3219` to `de2225a` (LizardByte#5702)

build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools

Bumps [packaging/linux/flatpak/deps/flatpak-builder-tools](https://github.com/flatpak/flatpak-builder-tools) from `1fc3219` to `de2225a`.
- [Commits](flatpak/flatpak-builder-tools@1fc3219...de2225a)

---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
  dependency-version: de2225a6dee4818c1339b3cdbf29f90c471fcb7e
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(pipewire): extend KWin version check to handle 6.8 beta/RC versions (LizardByte#5704)

* Merge commit from fork

Sanitize GUI loader and plugin environment variables before privileged initialization, failing closed when the environment cannot be cleaned.

Retain CAP_SYS_ADMIN only on a dedicated DRM worker, route KMS and CUDA DRM access through it, reject queued work safely during overflow or shutdown, and drop the worker privileges when DRM access is no longer needed.

Add Linux regression coverage for the sanitizer and document the new privileged-worker interfaces.

Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>

* fix(linux): repair privileged DRM worker build (LizardByte#5706)

* fix(pipewire): gate variable rate to KWin 5.x.x - 6.7.79 (up to stable 6.7 series) (LizardByte#5705)

* test: PowerShell tests with Pester and Sonar fixes (LizardByte#5708)

* test(linux): synchronize environment sanitizer tests (LizardByte#5710)

* build(copr): use cuda redistributatle for Fedora builds (LizardByte#5719)

* build(linux): fix ubuntu 26.10 aarch64 artifact extraction (LizardByte#5720)

* chore(deps): update dependency @lucide/vue to v1.46.0 (LizardByte#5715)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): lock file maintenance (LizardByte#5714)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v8.3.0 (LizardByte#5711)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency windows to v2025 (LizardByte#5712)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>

* feat(linux): use privileged EGL worker thread (LizardByte#5709)

* chore(deps): update astral-sh/setup-uv action to v10.1.0 (LizardByte#5684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5654)

* chore(deps): bump libvirtualhid (LizardByte#5722)

* fix(flatpak): remove need to prefix commands (LizardByte#5723)

* chore(deps): update codecov/codecov-action action to v7.1.0 (LizardByte#5724)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): move boost to CPM and bump to 1.92 (LizardByte#5730)

* refactor(web-ui): single page application (LizardByte#5731)

* test(web-ui): add tests and coverage (LizardByte#5736)

* refactor(web): sonar fixes (LizardByte#5740)

* fix(pairing): replace duplicate client certificates (LizardByte#5737)

* chore(deps): update codecov/codecov-action action to v7.1.1 (LizardByte#5741)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.5.43 (LizardByte#5742)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(l10n): update translations (LizardByte#5735)

* build(deps): bump third-party/nvapi from `cd6918f` to `87dca62` (LizardByte#5618)

Bumps [third-party/nvapi](https://github.com/NVIDIA/nvapi) from `cd6918f` to `87dca62`.
- [Commits](NVIDIA/nvapi@cd6918f...87dca62)

---
updated-dependencies:
- dependency-name: third-party/nvapi
  dependency-version: 87dca625e83fd89a983e19b904e5f3a580da90d2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(macOS): remove zero-initialization (LizardByte#5744)

Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>

* build(deps): bump third-party/tray from `c329d9f` to `c1f2a8a` (LizardByte#5747)

Bumps [third-party/tray](https://github.com/LizardByte/tray) from `c329d9f` to `c1f2a8a`.
- [Release notes](https://github.com/LizardByte/tray/releases)
- [Commits](LizardByte/tray@c329d9f...c1f2a8a)

---
updated-dependencies:
- dependency-name: third-party/tray
  dependency-version: c1f2a8ab56dd399b881fb7aeab4fe4fc9c58188d
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-i18n to v11.4.12 (LizardByte#5745)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-router to v4.6.4 (LizardByte#5746)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(tray): move tray icon ownership to vite config (LizardByte#5761)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Signed-off-by: Zach Denton <z@chdenton.com>
Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: LizardByte-bot <108553330+LizardByte-bot@users.noreply.github.com>
Co-authored-by: Conn O'Griofa <connogriofa@gmail.com>
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>
Co-authored-by: Harold <harold@mrtz.fr>
Co-authored-by: Aliaksei Dziadziuk <djadjka.by@gmail.com>
Co-authored-by: HurricanePootis <53066639+HurricanePootis@users.noreply.github.com>
Co-authored-by: Psyke83 <psyke83@users.noreply.github.com>
Co-authored-by: martona <marton@anka.me>
Co-authored-by: Cameron Gutman <aicommander@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James Le Cuirot <chewi@gentoo.org>
Co-authored-by: 盼兮 <63710193+panxi39@users.noreply.github.com>
Co-authored-by: neatnoise <neatnoise@gmail.com>
Co-authored-by: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com>
Co-authored-by: k4idyn <252943111+k4idyn@users.noreply.github.com>
Co-authored-by: Noklef <281545466+Noklef@users.noreply.github.com>
Co-authored-by: luanweslley77 <luanweslley77@gmail.com>
Co-authored-by: luanweslley77 <luanweslley77@users.noreply.github.com>
Co-authored-by: Zach Denton <z@chdenton.com>
Co-authored-by: pollopopo <61017252+pollopopo@users.noreply.github.com>
Co-authored-by: nikzasel <nikzasel@users.noreply.github.com>
Co-authored-by: Justin E. Oryschak <justin@oryschak.net>
Co-authored-by: matix753 <33520765+matix753@users.noreply.github.com>
Co-authored-by: tonyctalope <95322229+tonyctalope@users.noreply.github.com>
Co-authored-by: Seth Moore <sethdmoore@users.noreply.github.com>
Co-authored-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
Co-authored-by: dasepmoch <108404480+dasepmoch@users.noreply.github.com>
Co-authored-by: solidv <pedroclaro2@gmail.com>
Co-authored-by: bitness <lars_damerow@pixar.com>
Co-authored-by: Conn O'Griofa <749000+psyke83@users.noreply.github.com>
Co-authored-by: Andy Grundman <105828+andygrundman@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ai PR has signs of heavy ai usage (either indicated by user or assumed)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants