From: Jaroslav Kysela Date: Thu, 30 Aug 2007 08:23:46 +0000 (+0200) Subject: release 1.0.15rc1 X-Git-Tag: v1.0.15rc1 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=b2a300384ade9316bc03f6dbd3b8cc80d280a09c;p=alsa-python.git release 1.0.15rc1 Patch-level: Merged --- diff --git a/PKG-INFO b/PKG-INFO index 60d971a..b774932 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: PyAlsa -Version: 1.0.14 +Version: 1.0.15rc1 Summary: ALSA Python Binding Home-page: http://www.alsa-project.org Author: The ALSA Team diff --git a/pyalsa/alsamixer.c b/pyalsa/alsamixer.c index 7805036..10401f3 100644 --- a/pyalsa/alsamixer.c +++ b/pyalsa/alsamixer.c @@ -453,10 +453,10 @@ pyalsamixerelement_getvolume(struct pyalsamixerelement *pyelem, PyObject *args) } PyDoc_STRVAR(getvolumetuple__doc__, -"getVolumeTuple([capture=False]]) -- Get volume and store result to tuple."); +"getVolumeArray([capture=False]]) -- Get volume and store result to array."); static PyObject * -pyalsamixerelement_getvolumetuple(struct pyalsamixerelement *pyelem, PyObject *args) +pyalsamixerelement_getvolumearray(struct pyalsamixerelement *pyelem, PyObject *args) { int res, dir = 0, i, last; long val; diff --git a/setup.py b/setup.py index afc5a01..27e11fa 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import os import sys from distutils.core import setup, Extension -VERSION='1.0.14' +VERSION='1.0.15rc1' if os.path.exists("version"): fp = open("version", "r")