dependabot[bot]
c7bca4147b
build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from 216a52e to 4d5e760 ( #4766 )
...
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 `216a52e` to `4d5e760`.
- [Commits](https://github.com/flatpak/flatpak-builder-tools/compare/216a52efa4fcaaf6612147ffe53d9b70c97addfc...4d5e760321236bd96fc1c6db9ec94c336600c114 )
---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
dependency-version: 4d5e760321236bd96fc1c6db9ec94c336600c114
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-24 08:40:41 -05:00
dependabot[bot]
381fff0ceb
build(deps): bump marked from 17.0.2 to 17.0.3 ( #4744 )
...
Bumps [marked](https://github.com/markedjs/marked ) from 17.0.2 to 17.0.3.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Commits](https://github.com/markedjs/marked/compare/v17.0.2...v17.0.3 )
---
updated-dependencies:
- dependency-name: marked
dependency-version: 17.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-23 10:58:24 -05:00
dependabot[bot]
6ac1491a0f
build(deps): bump packaging/linux/flatpak/deps/shared-modules from 3d87a66 to 55a86b3 ( #4741 )
...
build(deps): bump packaging/linux/flatpak/deps/shared-modules
Bumps [packaging/linux/flatpak/deps/shared-modules](https://github.com/flathub/shared-modules ) from `3d87a66` to `55a86b3`.
- [Commits](https://github.com/flathub/shared-modules/compare/3d87a6632cf1e787b009e234b13a8ccfa6d15df8...55a86b3da4969984f7de8fb02b3370247c9a266d )
---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/shared-modules
dependency-version: 55a86b3da4969984f7de8fb02b3370247c9a266d
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-23 09:30:57 -05:00
dependabot[bot]
6e48e080af
build(deps): bump lucide-vue-next from 0.563.0 to 0.575.0 ( #4752 )
...
Bumps [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next ) from 0.563.0 to 0.575.0.
- [Release notes](https://github.com/lucide-icons/lucide/releases )
- [Commits](https://github.com/lucide-icons/lucide/commits/0.575.0/packages/lucide-vue-next )
---
updated-dependencies:
- dependency-name: lucide-vue-next
dependency-version: 0.575.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-23 09:18:30 -05:00
dependabot[bot]
1cb39b2a11
build(deps): bump third-party/moonlight-common-c from b187204 to 3fa9191 ( #4755 )
...
build(deps): bump third-party/moonlight-common-c
Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c ) from `b187204` to `3fa9191`.
- [Commits](https://github.com/moonlight-stream/moonlight-common-c/compare/b187204769974b9af9d2a3c3bca83ad40e4f1ac9...3fa9191330f750c62cd0cfc1edad4d0de9c38301 )
---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
dependency-version: 3fa9191330f750c62cd0cfc1edad4d0de9c38301
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-23 09:17:06 -05:00
David Lane
2fb7e6eb97
build(deps): bump LizardByte/build-deps ( #4761 )
2026-02-22 17:45:31 -05:00
Conn O'Griofa
502be64682
fix(linux/kmsgrab): fix handle leak in update_cursor ( #4757 )
2026-02-22 15:56:35 -05:00
Conn O'Griofa
95da4b5c85
feat(linux/xdgportal): implement reactive capture with duplicate detection ( #4740 )
...
* feat(linux/xdgportal): implement reactive capture with duplicate detection
Replaces polling-based frame capture with event-driven approach using
condition variables for immediate notification when new frames arrive.
Changes:
- on_process: Notify snapshot() via condition variable on new buffer
- fill_img: Extract and pass through PipeWire seq/pts metadata
- snapshot: Block on condition variable with timeout; detect and skip
duplicate frames using seq/pts metadata to avoid redundant processing
- capture: Simplify catch-up logic to maintain timeline consistency
by advancing in delay intervals without resetting origin
This eliminates tight polling loops and reduces unnecessary frame
processing when compositor reuses buffers.
* feat(linux/xdgportal): optimize software path and fix modesetting crashes
This patch addresses a performance bottleneck in the software encoding
path and a race condition during PipeWire stream re-initialization.
1. Performance Optimization (Double-Buffering):
- Implemented a front/back buffer swapping strategy for the software
(MemPtr) path.
- Frame data is copied to a `back_buffer` without holding the
`frame_mutex`, then swapped with the `front_buffer` under a
short-lived lock.
- This prevents memory bandwidth contention and allows the encoder
and PipeWire threads to work in parallel without blocking.
2. Stability Fixes:
- Implemented `frame_mutex` protection across `on_process`, `fill_img`,
and `cleanup_stream` to prevent use-after-free and dangling pointers
during resolution changes.
- Enhanced `fill_img` to safely bail out if the stream is dead or
no new frame is ready.
- Added explicit state resets (`frame_ready = false`, `current_buffer = nullptr`)
to ensure the encoder thread ignores stale data during re-init.
Fixes intermittent segfaults during resolution changes and restores
performance on systems using software encoding.
* feat(linux/xdgportal): support x-nv-video[0].clientRefreshRateX100 for requesting fractional NTSC framerates
* fix(linux/xdgportal): improve dbus & pipewire teardown logic
* Close dbus proxy connection; fixes orphaned XDG notification icons after
mode changes or stream pauses via XDG icon interaction.
* Migrate shared pipewire destructor logic into cleanup_stream() to reduce
duplication.
---------
Co-authored-by: Andy Grundman <andy@hybridized.org >
2026-02-22 12:43:49 -05:00
dependabot[bot]
00a52bb933
build(deps): bump third-party/moonlight-common-c from 6250fa2 to b187204 ( #4751 )
...
* build(deps): bump third-party/moonlight-common-c
Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c ) from `6250fa2` to `b187204`.
- [Commits](https://github.com/moonlight-stream/moonlight-common-c/compare/6250fa29ee87873716045e3b64f1f229374324e8...b187204769974b9af9d2a3c3bca83ad40e4f1ac9 )
---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
dependency-version: b187204769974b9af9d2a3c3bca83ad40e4f1ac9
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
* Add DATA_SHARDS_MAX definition
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Cameron Gutman <aicommander@gmail.com >
2026-02-20 23:15:32 -05:00
David Lane
4913b673dc
fix(gh-pages): style fixes for theme switcher ( #4748 )
2026-02-19 21:28:26 -05:00
herbie
c9bcee4480
fix(linux): fix touch misalignment for wlgrab on scaled outputs ( #4665 )
2026-02-17 23:40:16 -05:00
Conn O'Griofa
24c5dfd622
fix(linux/xdgportal): stream scaling and mode change support ( #4700 )
2026-02-15 17:42:11 -05:00
LizardByte-bot
a038cc1375
chore: update global workflows ( #4725 )
...
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com >
2026-02-14 17:43:01 -05:00
dependabot[bot]
d7ac57c907
build(deps): bump LizardByte/actions from 2026.212.22356 to 2026.214.14019 in the lizardbyte-actions group across 1 directory ( #4719 )
...
* build(deps): bump LizardByte/actions
Bumps the lizardbyte-actions group with 1 update in the / directory: [LizardByte/actions](https://github.com/lizardbyte/actions ).
Updates `LizardByte/actions` from 2026.212.22356 to 2026.214.14019
- [Release notes](https://github.com/lizardbyte/actions/releases )
- [Commits](https://github.com/lizardbyte/actions/compare/9bf3ef783775e17fe6b8dde3585d94ec570b93c2...6be4ea62064b64957aa880252fe353cd65bcdef7 )
---
updated-dependencies:
- dependency-name: LizardByte/actions
dependency-version: 2026.214.14019
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: lizardbyte-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
* Add actionlint_config to Homebrew release
Add the actionlint_config input ("---\n# empty config") to the LizardByte/actions/actions/release_homebrew steps in .github/workflows/ci.yml and .github/workflows/ci-homebrew.yml. Provides an explicit (empty) actionlint configuration to avoid linter warnings or failures when running the Homebrew release steps.
---------
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 >
2026-02-13 22:06:34 -05:00
David Lane
2ef66bcc87
ci: scope workflow permissions to job level ( #4717 )
2026-02-13 11:37:14 -05:00
Andy Grundman
941f6453c1
feat(macos/tray): allow tray icon paths to be set at runtime from .app bundle ( #4711 )
2026-02-13 08:19:39 -05:00
Conn O'Griofa
f442ff81e7
fix(linux): update systemd service units ( #4712 )
2026-02-12 22:43:23 -05:00
dependabot[bot]
9ba2757469
build(deps): bump marked from 17.0.1 to 17.0.2 ( #4710 )
...
Bumps [marked](https://github.com/markedjs/marked ) from 17.0.1 to 17.0.2.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Commits](https://github.com/markedjs/marked/compare/v17.0.1...v17.0.2 )
---
updated-dependencies:
- dependency-name: marked
dependency-version: 17.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-12 10:36:12 -05:00
dependabot[bot]
808686c92c
build(deps): bump vmactions/freebsd-vm from 1.4.1 to 1.4.2 ( #4707 )
...
Bumps [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm ) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/vmactions/freebsd-vm/releases )
- [Commits](https://github.com/vmactions/freebsd-vm/compare/80bcb19d617fe71c9db00e6297b16fb184dac498...c9f815bc7aa0d34c9fdd0619b034a32d6ca7b57e )
---
updated-dependencies:
- dependency-name: vmactions/freebsd-vm
dependency-version: 1.4.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-12 10:35:45 -05:00
dependabot[bot]
f60e2b0826
build(deps): bump LizardByte/actions from 2026.203.15239 to 2026.212.22356 in the lizardbyte-actions group across 1 directory ( #4706 )
...
build(deps): bump LizardByte/actions
Bumps the lizardbyte-actions group with 1 update in the / directory: [LizardByte/actions](https://github.com/lizardbyte/actions ).
Updates `LizardByte/actions` from 2026.203.15239 to 2026.212.22356
- [Release notes](https://github.com/lizardbyte/actions/releases )
- [Commits](https://github.com/lizardbyte/actions/compare/ce5d2be83ba14f30062762579f46d074892c5dd0...9bf3ef783775e17fe6b8dde3585d94ec570b93c2 )
---
updated-dependencies:
- dependency-name: LizardByte/actions
dependency-version: 2026.212.22356
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: lizardbyte-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-12 10:35:25 -05:00
Conn O'Griofa
638cd699d4
fix(linux/xdgportal): improve thread loop (un)locking & teardown logic ( #4705 )
2026-02-12 10:34:22 -05:00
David Lane
28a0b3d796
fix(flatpak): Add pipewire access for XDG portal grab ( #4704 )
2026-02-11 11:28:38 -05:00
David Lane
9d0622856b
build(deps): migrate ffmpeg prebuild to downloaded archive ( #4699 )
2026-02-10 21:54:43 -05:00
dependabot[bot]
4b1bc6a4b7
build(deps): bump vmactions/freebsd-vm from 1.4.0 to 1.4.1 ( #4690 )
...
Bumps [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm ) from 1.4.0 to 1.4.1.
- [Release notes](https://github.com/vmactions/freebsd-vm/releases )
- [Commits](https://github.com/vmactions/freebsd-vm/compare/f674f993e17ee7a71c14726b5d96599e59cda724...80bcb19d617fe71c9db00e6297b16fb184dac498 )
---
updated-dependencies:
- dependency-name: vmactions/freebsd-vm
dependency-version: 1.4.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 09:14:41 -05:00
dependabot[bot]
fab86338f1
build(deps): bump vue from 3.5.27 to 3.5.28 ( #4696 )
...
Bumps [vue](https://github.com/vuejs/core ) from 3.5.27 to 3.5.28.
- [Release notes](https://github.com/vuejs/core/releases )
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md )
- [Commits](https://github.com/vuejs/core/compare/v3.5.27...v3.5.28 )
---
updated-dependencies:
- dependency-name: vue
dependency-version: 3.5.28
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 09:14:18 -05:00
Yundi339
e22c5c9e8e
fix(log): prevent sink destruction caused by backend exceptions ( #4694 )
2026-02-10 09:13:56 -05:00
David Lane
97b6168ba6
ci(deps): use codecov-action for test results ( #4689 )
2026-02-08 22:41:51 -05:00
Coia Prant
8aed1a82c8
build(web-ui): fix rollup failing ( #4687 )
2026-02-08 15:30:40 -05:00
David Lane
5bd3a2b225
docs: miscellaneous updates ( #4597 )
2026-02-08 00:12:38 -05:00
Conn O'Griofa
2f61116432
revert: "fix(linux/xdgportal): flag stream as realtime" ( #4686 )
...
This reverts commit bf574afdfd .
2026-02-07 22:03:27 -05:00
Coia Prant
d591643706
build(windows): add arm64 support ( #3905 )
...
Signed-off-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com >
Signed-off-by: Coia Prant <coiaprant@gmail.com >
Co-authored-by: Ricky8955555 <rkmiao@duck.com >
Co-authored-by: Mike Fara <mjfara@gmail.com >
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com >
2026-02-07 21:03:05 -05:00
David Lane
cdc444314f
feat(installer/windows): add wix installer ( #3916 )
2026-02-07 15:21:25 -05:00
David Lane
e2652fa52b
refactor(packaging/windows): installer script execution ( #4675 )
2026-02-07 13:04:43 -05:00
Conn O'Griofa
bf574afdfd
fix(linux/xdgportal): flag stream as realtime ( #4684 )
2026-02-07 11:32:37 -05:00
Conn O'Griofa
b48a96f9f1
fix(linux/xdgportal): populate host latency statistics ( #4685 )
2026-02-07 09:40:06 -05:00
dependabot[bot]
476b984f7f
build(deps): bump vmactions/freebsd-vm from 1.3.8 to 1.4.0 ( #4676 )
...
Bumps [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm ) from 1.3.8 to 1.4.0.
- [Release notes](https://github.com/vmactions/freebsd-vm/releases )
- [Commits](https://github.com/vmactions/freebsd-vm/compare/ba6bedee4a4884da2b782a41a64329a1c8e42ffb...f674f993e17ee7a71c14726b5d96599e59cda724 )
---
updated-dependencies:
- dependency-name: vmactions/freebsd-vm
dependency-version: 1.4.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 09:07:59 -05:00
dependabot[bot]
76b84be999
build(deps): bump third-party/moonlight-common-c from 305993b to 6250fa2 ( #4682 )
...
build(deps): bump third-party/moonlight-common-c
Bumps [third-party/moonlight-common-c](https://github.com/moonlight-stream/moonlight-common-c ) from `305993b` to `6250fa2`.
- [Commits](https://github.com/moonlight-stream/moonlight-common-c/compare/305993b01322aeb7710a5443960774ecd391c55c...6250fa29ee87873716045e3b64f1f229374324e8 )
---
updated-dependencies:
- dependency-name: third-party/moonlight-common-c
dependency-version: 6250fa29ee87873716045e3b64f1f229374324e8
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 09:07:15 -05:00
dependabot[bot]
837c2d48ae
build(deps): bump packaging/linux/flatpak/deps/shared-modules from cb06063 to 3d87a66 ( #4683 )
...
build(deps): bump packaging/linux/flatpak/deps/shared-modules
Bumps [packaging/linux/flatpak/deps/shared-modules](https://github.com/flathub/shared-modules ) from `cb06063` to `3d87a66`.
- [Commits](https://github.com/flathub/shared-modules/compare/cb060638c39e333014306c8ab9daa2f2256fd688...3d87a6632cf1e787b009e234b13a8ccfa6d15df8 )
---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/shared-modules
dependency-version: 3d87a6632cf1e787b009e234b13a8ccfa6d15df8
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 09:05:45 -05:00
dependabot[bot]
865574243b
build(deps): bump third-party/libdisplaydevice from f31e46d to b46492b ( #4678 )
...
build(deps): bump third-party/libdisplaydevice
Bumps [third-party/libdisplaydevice](https://github.com/LizardByte/libdisplaydevice ) from `f31e46d` to `b46492b`.
- [Release notes](https://github.com/LizardByte/libdisplaydevice/releases )
- [Commits](https://github.com/LizardByte/libdisplaydevice/compare/f31e46d8736fa6932d34c1417111e60ca507b29f...b46492be8e5d1933ead8fb8867a7910ed10b610a )
---
updated-dependencies:
- dependency-name: third-party/libdisplaydevice
dependency-version: b46492be8e5d1933ead8fb8867a7910ed10b610a
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 10:14:12 -05:00
dependabot[bot]
22065bfeec
build(deps): bump third-party/doxyconfig from 1188ef2 to 89c8ec9 ( #4657 )
...
Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig ) from `1188ef2` to `89c8ec9`.
- [Commits](https://github.com/LizardByte/doxyconfig/compare/1188ef2b96efb3e003a591ee01714339c2d9161c...89c8ec928a11e04a75f06a00ddaa3848fc5edf27 )
---
updated-dependencies:
- dependency-name: third-party/doxyconfig
dependency-version: 89c8ec928a11e04a75f06a00ddaa3848fc5edf27
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-04 13:02:21 -05:00
dependabot[bot]
d0d581ca22
build(deps): bump actions/checkout from 6.0.1 to 6.0.2 in the github-actions group across 1 directory ( #4663 )
...
build(deps): bump actions/checkout
Bumps the github-actions group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout ).
Updates `actions/checkout` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/8e8c483db84b4bee98b60c0593521ed34d9990e8...de0fac2e4500dabe0009e67214ff5f5447ce83dd )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-04 10:09:13 -05:00
dependabot[bot]
66cdaf9d14
build(deps): bump babel from 2.17.0 to 2.18.0 ( #4653 )
...
Bumps [babel](https://github.com/python-babel/babel ) from 2.17.0 to 2.18.0.
- [Release notes](https://github.com/python-babel/babel/releases )
- [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst )
- [Commits](https://github.com/python-babel/babel/compare/v2.17.0...v2.18.0 )
---
updated-dependencies:
- dependency-name: babel
dependency-version: 2.18.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 11:04:41 -05:00
LizardByte-bot
db15af207f
chore: update GitHub Actions to use commit hashes ( #4659 )
2026-02-03 10:49:53 -05:00
David Lane
874880e5ea
feat(linux)!: Support streaming through XDG portals and Pipewire ( #4417 )
...
Co-authored-by: Carlos Garnacho <carlosg@gnome.org >
Co-authored-by: Carson Katri <Carson.katri@gmail.com >
Co-authored-by: Bond <bond-d@ukr.net >
Co-authored-by: d.bondarev <d.bondarev@crm-onebox.com >
Co-authored-by: Conn O'Griofa <connogriofa@gmail.com >
2026-02-03 08:19:02 -05:00
dependabot[bot]
5dbeb74f0d
build(deps): bump LizardByte/actions from 2026.129.194351 to 2026.203.15239 in the lizardbyte-actions group across 1 directory ( #4656 )
...
build(deps): bump LizardByte/actions
Bumps the lizardbyte-actions group with 1 update in the / directory: [LizardByte/actions](https://github.com/lizardbyte/actions ).
Updates `LizardByte/actions` from 2026.129.194351 to 2026.203.15239
- [Release notes](https://github.com/lizardbyte/actions/releases )
- [Commits](https://github.com/lizardbyte/actions/compare/09a6e10dc8175f2933c20bdf35fde0a193a9c00e...ce5d2be83ba14f30062762579f46d074892c5dd0 )
---
updated-dependencies:
- dependency-name: LizardByte/actions
dependency-version: 2026.203.15239
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: lizardbyte-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 08:17:56 -05:00
David Lane
b6757c5ed3
build: add --ignore-scripts to npm install commands ( #4655 )
2026-02-03 08:17:35 -05:00
dependabot[bot]
f59e6aacc4
build(deps): bump LizardByte/actions from 2026.116.208 to 2026.129.194351 in the lizardbyte-actions group across 1 directory ( #4647 )
...
build(deps): bump LizardByte/actions
Bumps the lizardbyte-actions group with 1 update in the / directory: [LizardByte/actions](https://github.com/lizardbyte/actions ).
Updates `LizardByte/actions` from 2026.116.208 to 2026.129.194351
- [Release notes](https://github.com/lizardbyte/actions/releases )
- [Commits](https://github.com/lizardbyte/actions/compare/e6bc045033a5614035b66daafc38ff86faecb23a...09a6e10dc8175f2933c20bdf35fde0a193a9c00e )
---
updated-dependencies:
- dependency-name: LizardByte/actions
dependency-version: 2026.129.194351
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: lizardbyte-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-31 09:03:25 -05:00
dependabot[bot]
14bcfcd6f0
build(deps): bump packaging/linux/flatpak/deps/flatpak-builder-tools from db39dc0 to 216a52e ( #4640 )
...
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 `db39dc0` to `216a52e`.
- [Commits](https://github.com/flatpak/flatpak-builder-tools/compare/db39dc0f75a3b24cfb09906f3aba2c13b0c48afe...216a52efa4fcaaf6612147ffe53d9b70c97addfc )
---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/flatpak-builder-tools
dependency-version: 216a52efa4fcaaf6612147ffe53d9b70c97addfc
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-31 09:03:07 -05:00
dependabot[bot]
9bd9fdce86
build(deps): bump packaging/linux/flatpak/deps/shared-modules from d1a2cf5 to cb06063 ( #4644 )
...
build(deps): bump packaging/linux/flatpak/deps/shared-modules
Bumps [packaging/linux/flatpak/deps/shared-modules](https://github.com/flathub/shared-modules ) from `d1a2cf5` to `cb06063`.
- [Commits](https://github.com/flathub/shared-modules/compare/d1a2cf59d137b47abc07297ecd35a5af9b5e16f4...cb060638c39e333014306c8ab9daa2f2256fd688 )
---
updated-dependencies:
- dependency-name: packaging/linux/flatpak/deps/shared-modules
dependency-version: cb060638c39e333014306c8ab9daa2f2256fd688
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-31 09:01:59 -05:00
dependabot[bot]
20df217234
build(deps): bump third-party/build-deps from 4463f7a to 4f5e8b2 ( #4609 )
...
Bumps [third-party/build-deps](https://github.com/LizardByte/build-deps ) from `4463f7a` to `4f5e8b2`.
- [Commits](https://github.com/LizardByte/build-deps/compare/4463f7a010bbaf0dc144c66c382bbc17f00eefb1...4f5e8b264e9854a050f6e0ad4e194723c4988aa5 )
---
updated-dependencies:
- dependency-name: third-party/build-deps
dependency-version: 4f5e8b264e9854a050f6e0ad4e194723c4988aa5
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-31 09:01:21 -05:00