]> git.alsa-project.org Git - alsa-python.git/commitdiff
release 1.0.15rc1 v1.0.15rc1
authorJaroslav Kysela <perex@perex.cz>
Thu, 30 Aug 2007 08:23:46 +0000 (10:23 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 30 Aug 2007 08:23:46 +0000 (10:23 +0200)
Patch-level: Merged

PKG-INFO
pyalsa/alsamixer.c
setup.py

index 60d971a4e6495ee22abf0a0e69581f8d35edd61c..b774932498331a656f2c50ed0748b24edbb24993 100644 (file)
--- 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
index 78050368a32623cc55bc1bae03a4a421fe27b91e..10401f32823cd5f959c80a84ca8e3a0be333c9a1 100644 (file)
@@ -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;
index afc5a01c62ce91c7364bddd96d6920451a109dbe..27e11fa31a9449fa5a025701e6b45313955706f5 100755 (executable)
--- 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")