[med-svn] [SCM] aghermann branch, master, updated. 053d1c90f9d6b94463523a681328332ff0c585ce
andrei zavada
jh at johnhommer.com
Mon May 13 22:00:52 UTC 2013
The following commit has been merged in the master branch:
commit 25749e18a78f5bf57c058926aec11316657a4cd4
Author: andrei zavada <jh at johnhommer.com>
Date: Thu May 2 20:29:05 2013 +0000
correct a 0 arg conv case in calls to CEDFFile:get_signal_*
diff --git a/ChangeLog b/ChangeLog
index b47e47e..816f262 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+v.0.9.0.1 (2013-05-02)
+ * Fix arg conversions in calls to CEDFFile::get_signal_*.
v.0.9.0 (2013-05-01)
* Parse patient_id field in EDF header and extract subject gender,
DOB and id from it.
diff --git a/configure.ac b/configure.ac
index d4d5c4d..7a6d4f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_COPYRIGHT([Copyright (c) 2008-13 Andrei Zavada <johnhommer at gmail.com>])
-AC_INIT([Aghermann], [0.9.0], [johnhommer at gmail.com])
+AC_INIT([Aghermann], [0.9.0.1], [johnhommer at gmail.com])
AC_CONFIG_SRCDIR([src/main.cc])
AC_CONFIG_MACRO_DIR([m4])
AC_PREREQ(2.61)
diff --git a/data/mw-dialogs.glade b/data/mw-dialogs.glade
index 2dbee41..3323a80 100644
--- a/data/mw-dialogs.glade
+++ b/data/mw-dialogs.glade
@@ -424,7 +424,10 @@ With bug reports, either send yours to <a href="mailto:aghermann-users at lists.
<property name="yalign">0</property>
<property name="xpad">10</property>
<property name="ypad">10</property>
- <property name="label"><big><b>v. 0.9.0</b></big> (2013-04-27)
+ <property name="label"><big><b>v. 0.9.0.1</b></big> (2013-05-02)
+<span font="monospace">
+ * Fix arg conversions in calls to CEDFFile::get_signal_*.
+<big><b>v. 0.9.0</b></big> (2013-05-01)
<span font="monospace">
* Parse patient_id field in EDF header and extract subject gender,
DOB and id from it.
diff --git a/debian/changelog b/debian/changelog
index 4e13fe8..7ac1dbf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-aghermann (0.9.0-1) experimental; urgency=low
+aghermann (0.9.0.1-1) unstable; urgency=low
* New upstream version.
- -- Andrei Zavada <johnhommer at gmail.com> Wed, 01 May 2013 02:57:16 +0200
+ -- Andrei Zavada <johnhommer at gmail.com> Thu, 02 May 2013 21:09:16 +0200
aghermann (0.8.1-1) experimental; urgency=low
diff --git a/src/libsigfile/source-base.hh b/src/libsigfile/source-base.hh
index d761b96..d1bdc2a 100644
--- a/src/libsigfile/source-base.hh
+++ b/src/libsigfile/source-base.hh
@@ -307,7 +307,7 @@ class CSource {
{
return get_region_original(
h,
- 0, recording_time() * samplerate(h));
+ (float)0.0, recording_time() * samplerate(h));
}
// filtered
@@ -331,7 +331,7 @@ class CSource {
{
return get_region_filtered(
h,
- 0, recording_time() * samplerate(h));
+ 0.0f, recording_time() * samplerate(h));
}
// put samples
--
Sleep experiment manager
More information about the debian-med-commit
mailing list