diff --git a/schainpy/VERSION b/schainpy/VERSION index 9db5ffc..a836a21 100644 --- a/schainpy/VERSION +++ b/schainpy/VERSION @@ -76,4 +76,9 @@ properly but the next days did not. 2.2.4.1: -jroIO_usrp.py is update to read Sandra's data -decimation in Spectra and RTI plots is always enabled. --time-window option added to GUI \ No newline at end of file +-time-window option added to GUI + +2.2.5: +-splitProfiles and combineProfiles modules were added to VoltageProc and Signal Chain GUI. +-nProfiles of USRP data (hdf5) is the number of profiles thera are in one second. +-jroPlotter works directly with data objects instead of dictionaries \ No newline at end of file diff --git a/schainpy/__init__.py b/schainpy/__init__.py index a74d16c..a395f37 100644 --- a/schainpy/__init__.py +++ b/schainpy/__init__.py @@ -4,4 +4,4 @@ Created on Feb 7, 2012 @author $Author$ @version $Id$ ''' -__version__ = "2.2.4.1" \ No newline at end of file +__version__ = "2.2.5" \ No newline at end of file diff --git a/schainpy/controller_api.py b/schainpy/controller_api.py index dda5e90..2c9efd1 100644 --- a/schainpy/controller_api.py +++ b/schainpy/controller_api.py @@ -1,5 +1,5 @@ import threading -import Queue +from Queue import Queue from schainpy.controller import Project from schainpy.model.graphics.jroplotter import PlotManager @@ -102,7 +102,7 @@ class ControllerThread(threading.Thread, Project): def useExternalPlotter(self): - self.plotterQueue = Queue.Queue(10) + self.plotterQueue = Queue(10) self.setPlotters() plotManagerObj = PlotManager(self.plotterQueue)