Commit Graph
15396 Commits
Author SHA1 Message Date
Richard StanwayandRyan Foster 95bfb81f69 updater: Improve exception handling
Logs exceptions and changes QuickWriteFile to throw a catchable
exception instead of a DWORD.
2026-02-10 17:46:18 -05:00
Richard StanwayandRyan Foster e715df130b updater: Fix various race conditions and error handling
The main race was possible concurrent access to unordered_map which
could corrupt internal state. Our global variables were also not
atomically updated. DownloadWorkerThread also returned true on error,
which could cause the updater to proceed without all updates being
downloaded which would then fail at the install stage.
2026-02-10 17:46:18 -05:00
Tristan MatthewsandRyan Foster c75d7f4095 rtmp-services: Remove defunct STAGE TEN 2026-02-10 14:08:01 -05:00
Warchamp7andRyan Foster b4ff360139 frontend: Round all output theme values 2026-02-09 16:30:58 -05:00
shiina424andRyan Foster 49c9c868ec frontend: Update unassigned audio track warning text 32.1.0-rc1 2026-02-05 18:09:31 -05:00
Warchamp7andRyan Foster c1a134ea15 frontend: Adjust log upload text for current logs 2026-02-05 17:30:31 -05:00
trilkkandRyan Foster b8b6cf4844 file-updater: Use exact types to avoid clang-19 errors 2026-02-05 16:54:16 -05:00
trilkkandRyan Foster 57c37e4adc plugins: Use exact types to avoid clang-19 errors 2026-02-05 16:54:16 -05:00
trilkkandRyan Foster 9776a227ef frontend: Add needed FreeBSD sys/ headers for libprocstat.h to compile 2026-02-05 16:54:16 -05:00
Warchamp7andRyan Foster 0df94d5cae image-source: Fix interrupted transitions 2026-02-04 18:53:59 -05:00
Warchamp7andRyan Foster 923118befc frontend: Clean up mixer hidden state 2026-02-04 18:29:20 -05:00
Ryan Foster 7a75dbe7dc obs-browser: Update version to 2.26.7
obsproject/obs-browser@f93477b - Fix local filepath on POSIX
obsproject/obs-browser@b59127a - Update version to 2.26.7
2026-02-04 17:33:12 -05:00
PatTheMavandRyan Foster 921dc93927 frontend: Fix macOS crash in application shutdown
With recent changes to the application shutdown logic, events had to
follow a very strict order as certain elements of shutdown code
depend on other elements not being deallocated prematurely.

This turned the (correct) order of events on macOS upside down and
lead to crashes either when the app was quit from within or when
terminated by the OS.

The fix incorporates multiple elements:

* Removal of the custom "Quit" menu item on macOS to use the default
  implementation of Qt's platform plugin.
* Soft-revert (via preprocessor conditionals) parts of the updated
  shutdown logic to prevent emitting recursive shutdown events.
* Handle main window close event by simply emitting a "quit" event
  on the application instance.
* Update POSIX signal handlers to also simply emit a "quit" event.

In combination these changes reduce the number of different code paths
taken during shutdown:

* Closing the app via the menu item, menu item shortcut, or initiated
  by AppKit (OS shutdown/reboot, or quit via Dock/Finder) will emit an
  AppKit "terminate" event for orderly shutdown.
* Closing the main window or sending an appropriate POSIX signal
  triggers the "terminate" event indirectly by emitting the "quit"
  event on the application instance.

Either way a "close" event to the main window happens before the
event loop is terminated and the application instance is torn down
(either directly, or indirectly via Qt's "closeAllWindows" function in
response to "terminate"). The order of events thus is always:

0. Terminate event by AppKit (except when closing the main window)
1. Closing of main window
2. Termination of browser docks
3. Deallocation of main window
4. Termination of application
5. Deallocation of application

NOTE: All this only applies to macOS. The shutdown order and procedures
on Windows and Linux are unchanged.
2026-02-04 17:04:31 -05:00
PatTheMavandRyan Foster 21f6f08679 frontend: Fix Youtube app dock destruction
When the main window is closed and with it the application state is torn
down, browser panels need to be explicitly removed before the the CEF
instance used by the application is shut down itself.

For service-based docks this happens as part of the "reset" of the
"auth" pointer (and thus its destructor), for user-created browser
panels this is achieved by the call to "ClearExtraBrowserDocks".

Because the Youtube app dock is a special browser panel that is created
conditionally, but potentially exists globally, it also has to be
closed this way (if it was created).

Otherwise CEF will force-close the underlying browser host instance as
part of its own shutdown and also deallocate the native window used
by the browser. When the QCefWidget then attempts to detach the
native window from the view hierarchy (to avoid this operation from
potentially closing the root window it is anchored to), it will either
attempt to access a CrFatZombie object (and crash) or access deallocated
memory (and also crash).
2026-02-04 17:04:31 -05:00
tfoandRyan Foster cef6d12c3a shared/media-playback: Fix corrupt MaxCLL when reading HDR metadata
The content light level metadata was being read incorrectly by taking
the address of the data pointer instead of casting the pointer itself.
This resulted in interpreting the pointer address as the MaxCLL value,
leading to extremely large values.
2026-02-04 14:50:35 -05:00
shiina424andRyan Foster e652dfa5ca frontend: Add headphones icon in Light Theme 2026-02-04 13:51:02 -05:00
shiina424andRyan Foster 3851edf4b3 frontend: Add horizontal and vertical icon in Light Theme 2026-02-04 13:51:02 -05:00
shiina424andRyan Foster 3c708f2c0a frontend: Fix monitoring icon color in Acri theme 2026-02-03 14:41:26 -05:00
shiina424andRyan Foster bd22d9c4a4 frontend: Fix monitoring icon color in Rachni theme 2026-02-03 14:41:26 -05:00
sravanth simhadriandRyan Foster 17d5b3c5fd rtmp-services: Add Sportify 2026-02-03 14:13:43 -05:00
Warchamp7andRyan Foster f53c843ac0 frontend: Update previewed sources in mixer by visibility 2026-01-28 13:58:01 -05:00
Warchamp7andRyan Foster 84361415ff frontend: Close rename dialog if name unchanged 2026-01-28 13:18:47 -05:00
Warchamp7andRyan Foster 90d0d593de frontend: Use disabled meter colors when output muted 2026-01-28 12:53:35 -05:00
Warchamp7andRyan Foster 694680e8c0 frontend: Revert Add Source dialog update
This reverts commit 5fc2476913.
2026-01-28 12:13:20 -05:00
Ryan Foster 3590b1d0d5 obs-browser: Update version to 2.26.6
obsproject/obs-browser@8a45650 - Update local file scheme handler
obsproject/obs-browser@df0330f - Update version to 2.26.5
obsproject/obs-browser@1738605 - Fix cmake includes on Linux and macOS
obsproject/obs-browser@8725f07 - Update version to 2.26.6
2026-01-24 13:46:17 -05:00
Warchamp7andRyan Foster 8c04e6a3fe frontend: Restrict audio meter update region 2026-01-23 16:18:30 -05:00
Warchamp7andRyan Foster 30633344e9 frontend: Force update volume meter backgrounds 2026-01-23 15:21:00 -05:00
tytan652andRyan Foster 0d1f61b04b linux-pipewire: Fix camera framerate listing
The SPA format (pixelformat) was compared with a libobs video format
value.

Also removes the SPA format support check since at this point it already
has been done while listing formats.
2026-01-23 10:57:10 -05:00
Warchamp7andRyan Foster e73662f6c1 frontend: Implement sizeHint for VolumeMeter 2026-01-22 12:32:12 -05:00
katahtonicandRyan Foster d3dfadfbf5 rtmp-services: Remove legacy SharePlay.tv servers 2026-01-20 13:39:14 -05:00
PenwywernandRyan Foster 71de30f2a9 frontend: Properly update studio mode mixer 2026-01-20 12:34:54 -05:00
Warchamp7andRyan Foster fa49eace7d frontend: Fix audio mixer monitoring state 2026-01-20 12:11:20 -05:00
Warchamp7andRyan Foster f9c084d88c frontend: Update menu text when switching layouts 2026-01-20 11:47:51 -05:00
Warchamp7andRyan Foster 5f0bc21168 frontend: Fix default value for full-height docks 2026-01-17 18:15:21 -05:00
shiina424andRyan Foster 00f220a6dc frontend: Make Add Existing Button translatable 2026-01-17 14:28:20 -05:00
shiina424andRyan Foster 058f9a8377 frontend: Make Audio Mixer Hidden Button translatable 2026-01-17 14:28:20 -05:00
Warchamp7andRyan Foster e6b52f2e9b libobs, frontend: Signal transition_stop for cancelled transitions 32.1.0-beta2 2026-01-16 15:57:36 -05:00
Warchamp7andRyan Foster 2faf51a7ed frontend: Prevent setting transition during transitions 2026-01-16 15:57:36 -05:00
Warchamp7andRyan Foster b8f0990d50 libobs: Add obs_transition_is_active 2026-01-16 15:57:36 -05:00
Dimitris PapaioannouandRyan Foster 9251ea5374 linux-pulseaudio: Fix bad channels message format 2026-01-16 15:16:57 -05:00
Barnabás PőczeandRyan Foster c13c7c0c3f linux-pipewire: Fix format description
The resolution and aspect ration should be added to the description of
the format even if there are no available frame rates.

The code is restructured a bit to avoid having to call `dstr_free()`
before each `continue`.

Fixes: 4cfcfc8c35 ("linux-pipewire: Make camera framerate non-mandatory")
2026-01-16 14:50:27 -05:00
ExeldroandRyan Foster 9a62529f02 libobs: Restore only canvases that have video info 2026-01-16 10:54:48 -05:00
Warchamp7andRyan Foster 67f4ed3478 frontend: Refresh meter background on style change 2026-01-15 17:07:16 -05:00
Warchamp7andRyan Foster cd2c0b556c frontend: Fix audio mixer dialog on classic theme 2026-01-15 16:20:10 -05:00
Warchamp7andRyan Foster 0bdee14778 frontend: Only round final theme values 2026-01-15 15:47:31 -05:00
tytan652andRyan Foster c9bbe81d53 frontend: Add vcs-browser to metainfo
flatpak-build-lint warns to add it.
2026-01-15 14:40:53 -05:00
Warchamp7andRyan Foster d05c8cba25 frontend: Remove unused audio mixer widgets 2026-01-15 12:53:30 -05:00
Warchamp7andRyan Foster 26f6091b66 frontend: Fix Audio Mixer toolbar tooltips 2026-01-15 11:43:03 -05:00
Warchamp7andRyan Foster ce87cfb6a1 frontend: Round theme variables with "px" units 2026-01-15 11:13:00 -05:00
Ryan Foster 1d6f1859ea libobs: Update version to 32.1.0 32.1.0-beta1 2026-01-14 16:52:36 -05:00