Pipewireパッケージ(ちょっと変更)
リビジョン | 7db1e7f643a454056327999b2d8e35d8097b5593 (tree) |
---|---|
日時 | 2023-11-16 18:38:12 |
作者 | Wim Taymans <wtaymans@redh...> |
コミッター | Wim Taymans |
0.3.85
@@ -1,3 +1,61 @@ | ||
1 | +# PipeWire 0.3.85 (2023-11-16) | |
2 | + | |
3 | +This is the fifth (and last) 1.0 release candidate that is API and ABI | |
4 | +compatible with previous 0.3.x releases. | |
5 | + | |
6 | +## Highlights | |
7 | + - Fix an issue where a link could end up paused while not negotiated. | |
8 | + - Fix an infinite recursion issue when finding runnable nodes. | |
9 | + - Support XDG base directories when loading ACP config. | |
10 | + - Fix MIDI event recording preview in Ardour. | |
11 | + - Many more small fixes, cleanups and improvements. | |
12 | + | |
13 | + | |
14 | +## PipeWire | |
15 | + - Fix an issue where a link could end up paused while not negotiated. | |
16 | + (#3619) | |
17 | + - Fix an infinite recursion issue when finding runnable nodes by stopping | |
18 | + the scan on feedback links around the driver. (#3621) | |
19 | + - The system service now has better socket permissions. | |
20 | + | |
21 | +## Modules | |
22 | + - Add support for uclamp. This allows the scheduler to make better informed | |
23 | + decisions about where tasks should be placed, and what pstate to set | |
24 | + for the CPU it is running on. | |
25 | + - Emit warnings when applications are not doing the right locking instead | |
26 | + of crashing. | |
27 | + - Improve media.name for RAOP sinks. (#3801) | |
28 | + - Support pause/resume in pipe-tunnel. (#3197) | |
29 | + - Remove time rlimit when probing for realtime to avoid SIGXCPU. | |
30 | + | |
31 | +## SPA | |
32 | + - Fix a bug where the resampler would be activated even when there is an | |
33 | + ALSA pitch element. (#3628) | |
34 | + - Improve resume from suspend in ALSA. (#3646) | |
35 | + - Add option to expose ALSA controls as prop params. | |
36 | + - Support XDG base directories when loading ACP config. This makes it possible | |
37 | + to override the ACP config files. | |
38 | + | |
39 | +## Bluetooth | |
40 | + - Schedule nodes in the same ISO group together. | |
41 | + - More BAP fixes and cleanups. | |
42 | + | |
43 | +## JACK | |
44 | + - Fix MIDI events from peer ports. This makes the MIDI event recording preview | |
45 | + of Ardour work correctly. | |
46 | + | |
47 | +## GStreamer | |
48 | + - Fix some error handling in the source and sink. | |
49 | + | |
50 | +## ALSA plugin | |
51 | + - Improve poll descriptor handling. (#3648) | |
52 | + | |
53 | +## Docs | |
54 | + - Many improvements to the layout and organization. | |
55 | + | |
56 | +Older versions: | |
57 | + | |
58 | + | |
1 | 59 | # PipeWire 0.3.84 (2023-11-02) |
2 | 60 | |
3 | 61 | This is the fourth 1.0 release candidate that is API and ABI compatible |
@@ -56,9 +114,6 @@ with previous 0.3.x releases. | ||
56 | 114 | ## ALSA |
57 | 115 | - The ALSA plugin now handles NULL values from mmap_areas. (#3600) |
58 | 116 | |
59 | -Older versions: | |
60 | - | |
61 | - | |
62 | 117 | # PipeWire 0.3.83 (2023-10-19) |
63 | 118 | |
64 | 119 | This is the third 1.0 release candidate that is API and ABI compatible |
@@ -1,5 +1,5 @@ | ||
1 | 1 | project('pipewire', ['c' ], |
2 | - version : '0.3.84', | |
2 | + version : '0.3.85', | |
3 | 3 | license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], |
4 | 4 | meson_version : '>= 0.61.1', |
5 | 5 | default_options : [ 'warning_level=3', |