diff options
author | Lennart Poettering <lennart@poettering.net> | 2008-09-09 15:39:11 +0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2008-09-09 15:39:11 +0300 |
commit | 52b7f2d131f579af5ef74020327559042d82b90a (patch) | |
tree | bb1914fd9ccc35887442c570745080e1ade997ce | |
parent | 02b6ce85ff9ca74ac89f6bb0ed9db3ac9e65df18 (diff) | |
parent | 802f54ae22b20a66dacf64c1ceda1f6b144428f5 (diff) |
Merge branch 'master' into master-txv0.9.7
-rw-r--r-- | doc/README.html.in | 6 | ||||
-rw-r--r-- | src/pavucontrol.cc | 2 |
2 files changed, 7 insertions, 1 deletions
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.</p> <h2><a name="news">News</a></h2> +<div class="news-date">Tue Sep 9 +2008: </div> <p class="news-text"><a href="@PACKAGE_URL@pavucontrol-0.9.7.tar.gz">Version +0.9.7</a> released; show volume meter for each stream and device.</p> + <div class="news-date">Fri Mar 28 2008: </div> <p class="news-text"><a href="@PACKAGE_URL@pavucontrol-0.9.6.tar.gz">Version 0.9.6</a> released; draw radio buttons instead of check boxes when @@ -125,7 +129,7 @@ compilation and <tt>make install</tt> (as root) for installation of <p>If you want to be notified whenever I release a new version of this software use the subscription feature of <a href="http://freshmeat.net/projects/pavucontrol/">Freshmeat</a>.</p> <hr/> -<address class="grey">Lennart Poettering <@PACKAGE_BUGREPORT@>, Mar 2008</address> +<address class="grey">Lennart Poettering <@PACKAGE_BUGREPORT@>, September 2008</address> </body> </html> 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); |