Updated front end version number to 0.15-0

This commit is contained in:
Markus Rosenstihl 2014-12-15 20:45:44 +00:00
parent e457a5071f
commit f663759f58
4 changed files with 69 additions and 2 deletions

15
README
View File

@ -15,3 +15,18 @@ or
To start Damaris use for example:
/opt/damaris-private/bin/DAMARIS
Updatine debian/changelog
=========================
Use the following command to get all the commit messages:
Mac OS X:
svn2cl -i -a --stdout |gsed 's/^\t/ /'|gsed -e '/^[0-9]/d'
Linux:
svn2cl -i -a --stdout |sed 's/^\t/ /'|sed -e '/^[0-9]/d'

52
debian/changelog vendored
View File

@ -1,3 +1,55 @@
python-damaris (0.15-0) experimental; urgency=low
* [r760] src/data/DaFFT.py[DEL]: Removed deprecated DaFFT module.
This module is replaced by DamarisFFT,
which extends the ADC_Result and Accumulation class.
* [r759] src/experiments/Experiment.py: * Updated more
documentation
- Fixes #4 (set_pfg)
* [r758] src/experiments/Experiment.py: Added sphinx documentation
strings
* [r757] src/data/DamarisFFT.py: fixed taps/space, update
documentation
* [r756] src/gui/DamarisGUI.py: reformatted DamarisGUI.py to make
it better readable
* [r755] src/data/DamarisFFT.py, src/gui/DamarisGUI.py: fixed evil
tab/spaces
* [r754] src/data/DamarisFFT.py: fix indentaion in DamarisFFT
* [r753] src/data/DaFFT.py, src/data/DamarisFFT.py,
src/data/DataPool.py, src/data/MeasurementResult.py,
src/data/Persistance.py, src/data/autophase.py,
src/gui/BackendDriver.py, src/gui/ExperimentHandling.py,
src/gui/ExperimentWriter.py, src/gui/ResultHandling.py: Heroic
squashing of spurious furious tab bugs
* [r741] migrate to standard svn repo layout
* [r740] - exceptions now derive from a common DamarisException
class, which in turn derives from std::runtime_error
(previously, all exceptions derived from std::string, which is
not a good idea)
- I also added a RecoverableException class for ADC_result and
the like to derive from. This class should be
used whenever code is caught inside the backend, e.g. in the
experiment loop, and passed on to the frontend
without aborting
- backends were modified accordingly
- started adding a new test suite for more thorough unit tests
and to understand program flow better
- the working directory is now reset after a core is destroyed,
also cleaned up the getcwd code
* [r737] - frontend fix for multi-channel detection
-- Markus Rosenstihl <Markus.Rosenstihl@physik.tu-darmstadt.de> Mon, 15 Dec 2014 21:22:45 +0000
python-damaris (0.14-svn) experimental; urgency=low
* MeasurementResults (MR) can be lineplots (Oleg Petrov)

View File

@ -93,7 +93,7 @@ GPL_LICENCE = "feed licence here"
setup (
name = 'python-damaris',
version = "0.14-svn",
version = "0.15-0",
description = 'python frontend for DAMARIS (DArmstadt MAgnetic Resonance Instrument Software)',
long_description = LONG_DESCRIPTION,
author = 'Achim Gaedke',

View File

@ -80,7 +80,7 @@ from damaris.data import DataPool, Accumulation, ADC_Result, MeasurementResult
debug = False
# version info
__version__ = "0.14-svn-$Revision$"
__version__ = "0.15-0-$Revision$"
class logstream: