From 67a0cb9e248d44feb99ad2b7f0beb16e8ef85058 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 9 Sep 2008 02:09:44 +0300 Subject: initialize maximum buffer length to automatic value (uint32_t) -1 instead of smallest value 0 --- src/pavucontrol.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pavucontrol.cc b/src/pavucontrol.cc index fd63209..b7f7a9b 100644 --- a/src/pavucontrol.cc +++ b/src/pavucontrol.cc @@ -1093,6 +1093,7 @@ void MainWindow::createMonitorStreamForSource(uint32_t source_idx) { memset(&attr, 0, sizeof(attr)); attr.fragsize = sizeof(float); + attr.maxlength = (uint32_t) -1; snprintf(t, sizeof(t), "%u", source_idx); @@ -1129,6 +1130,7 @@ void MainWindow::createMonitorStreamForSinkInput(uint32_t sink_input_idx, uint32 memset(&attr, 0, sizeof(attr)); attr.fragsize = sizeof(float); + attr.maxlength = (uint32_t) -1; snprintf(t, sizeof(t), "%u", monitor_source_idx); -- cgit From 802f54ae22b20a66dacf64c1ceda1f6b144428f5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 9 Sep 2008 15:37:22 +0300 Subject: prepare release 0.9.7 --- doc/README.html.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/README.html.in b/doc/README.html.in index ed27320..5629ff2 100644 --- a/doc/README.html.in +++ b/doc/README.html.in @@ -38,6 +38,10 @@ General Public License for more details.

News

+
Tue Sep 9 +2008:

Version +0.9.7 released; show volume meter for each stream and device.

+
Fri Mar 28 2008:

Version 0.9.6 released; draw radio buttons instead of check boxes when @@ -125,7 +129,7 @@ compilation and make install (as root) for installation of

If you want to be notified whenever I release a new version of this software use the subscription feature of Freshmeat.


-
Lennart Poettering <@PACKAGE_BUGREPORT@>, Mar 2008
+
Lennart Poettering <@PACKAGE_BUGREPORT@>, September 2008
-- cgit