This commit is contained in:
Wim Taymans 2024-07-12 09:24:23 +02:00
parent d55f5ef608
commit f9689df37d
2 changed files with 48 additions and 4 deletions

50
NEWS
View file

@ -1,3 +1,50 @@
# PipeWire 1.2.1 (2024-07-12)
This is a bugfix release that is API and ABI compatible with previous
the previous 1.2.0 release and the 1.0.x releases.
## Highlights
- Fix a regression in the node activation counters that would break audio
when using KODI.
- Fix a regression in ardour export because of mishandling of sync groups.
- Fix a regression in KDE screen preview because of the new async
scheduling.
- Fix a regression in context.exec argument parsing that would break some
existing scripts.
- More small bug fixes and improvements.
## PipeWire
- Fix a regression in the node activation counters that would break audio
when using KODI. (#4087)
- Fix a regression in ardour export because of mishandling of sync groups.
(#4083)
- Fix a regression in KDE screen preview because of the new async
scheduling. Disable async for driver nodes. (#4092)
- Slightly improve node shutdown to cause less xruns.
- Fix a regression in context.exec argument parsing that would break some
existing scripts.
- Support custom thread create functions.
## Modules
- Improve snapcast address parsing. (#4093)
## SPA
- Fix multiple %f parsing in ACP for the new plug+a52 profiles.
- Improve v4l2 param generation. Improve recovery when framesize or rates
are unknown, support vivid. (#4063)
## JACK
- Use the custom thread create function to correctly let module-rt kit
manage threads so that we don't end up with priorities on the wrong
threads. (#4099)
## GStreamer
- Fix a crash when destroying a stream.
Older versions:
# PipeWire 1.2.0 (2024-06-27) # PipeWire 1.2.0 (2024-06-27)
This is the 1.2 release that is API and ABI compatible with previous This is the 1.2 release that is API and ABI compatible with previous
@ -69,9 +116,6 @@ Enjoy the summer vacation!
## Bluetooth ## Bluetooth
- Improvements to BAP broadcast code parsing. - Improvements to BAP broadcast code parsing.
Older versions:
# PipeWire 1.1.83 (2024-06-17) # PipeWire 1.1.83 (2024-06-17)
This is the third and hopefully the last 1.2 release candidate that is This is the third and hopefully the last 1.2 release candidate that is

View file

@ -1,5 +1,5 @@
project('pipewire', ['c' ], project('pipewire', ['c' ],
version : '1.2.0', version : '1.2.1',
license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ],
meson_version : '>= 0.61.1', meson_version : '>= 0.61.1',
default_options : [ 'warning_level=3', default_options : [ 'warning_level=3',