Hello community, here is the log from the commit of package pasystray for openSUSE:Factory checked in at 2019-01-08 12:28:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pasystray (Old) and /work/SRC/openSUSE:Factory/.pasystray.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pasystray" Tue Jan 8 12:28:18 2019 rev:6 rq:663022 version:0.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/pasystray/pasystray.changes 2018-10-02 19:48:41.613751812 +0200 +++ /work/SRC/openSUSE:Factory/.pasystray.new.28833/pasystray.changes 2019-01-08 12:30:54.308113462 +0100 @@ -1,0 +2,6 @@ +Sat Jan 5 09:46:28 UTC 2019 - Petr Cervinka <[email protected]> + +- Version bump to 0.7.1: + * Check stream_input and stream_output settings + +------------------------------------------------------------------- Old: ---- pasystray-0.7.0.tar.gz New: ---- pasystray-0.7.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pasystray.spec ++++++ --- /var/tmp/diff_new_pack.g1g8Dw/_old 2019-01-08 12:30:54.772112958 +0100 +++ /var/tmp/diff_new_pack.g1g8Dw/_new 2019-01-08 12:30:54.776112953 +0100 @@ -1,7 +1,7 @@ # # spec file for package pasystray # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -24,7 +24,7 @@ %define stdc99 0 %endif Name: pasystray -Version: 0.7.0 +Version: 0.7.1 Release: 0 Summary: PulseAudio system tray License: LGPL-2.1-or-later ++++++ pasystray-0.7.0.tar.gz -> pasystray-0.7.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pasystray-pasystray-0.7.0/configure.ac new/pasystray-pasystray-0.7.1/configure.ac --- old/pasystray-pasystray-0.7.0/configure.ac 2018-09-28 17:20:16.000000000 +0200 +++ new/pasystray-pasystray-0.7.1/configure.ac 2019-01-02 19:15:05.000000000 +0100 @@ -1,6 +1,6 @@ # This file is part of PaSystray # -# Copyright (C) 2011-2018 Christoph Gysin +# Copyright (C) 2011-2019 Christoph Gysin # # PaSystray is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as @@ -19,7 +19,7 @@ AC_PREREQ([2.68]) -AC_INIT([pasystray], [0.7.0], [[email protected]], [pasystray], +AC_INIT([pasystray], [0.7.1], [[email protected]], [pasystray], [http://github.com/christophgysin/pasystray]) AC_CONFIG_SRCDIR([src/pasystray.c]) AC_CONFIG_HEADERS([src/config.h]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pasystray-pasystray-0.7.0/src/pulseaudio_action.c new/pasystray-pasystray-0.7.1/src/pulseaudio_action.c --- old/pasystray-pasystray-0.7.0/src/pulseaudio_action.c 2018-09-28 17:20:16.000000000 +0200 +++ new/pasystray-pasystray-0.7.1/src/pulseaudio_action.c 2019-01-02 19:15:05.000000000 +0100 @@ -236,9 +236,17 @@ { case MENU_SERVER: case MENU_MODULE: + return; + case MENU_INPUT: + if(mis->settings.n_stream_input) + break; + return; + case MENU_OUTPUT: - break; + if(mis->settings.n_stream_output) + break; + return; case MENU_SINK: if(mis->settings.n_sink) @@ -253,6 +261,9 @@ if(mis->settings.n_source_default && g_str_equal(mii->name, mi->default_name)) break; return; + + default: + return; } pulseaudio_update_volume_notification(mii);
