diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-18 16:26:58 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-18 16:26:58 +0800 |
commit | 8e81b722fef3dfb1155c33a65ca74f728c00f1d6 (patch) | |
tree | 421767d5063494b6bb077fc97850d1a23db99dd5 | |
parent | dbdc1205745fdbd0500be45930ee7d1f0e5f5199 (diff) | |
download | fg21sim-8e81b722fef3dfb1155c33a65ca74f728c00f1d6.tar.bz2 |
Bump version to 0.3.0v0.3.0
* Major change to the Web UI.
+ The WebSocket is only used to push configurations and logging
messages to the client;
+ The configuration manipulations and console operations are
implemented using the AJAX techniques;
+ Modal box is used to notify the AJAX request results, therefore much
better user experience.
* Several bug fixes to the Web UI.
* Minor improvements to the simulation parts.
* TODO/problems:
+ The console task currently still blocks the Tornado IO loop!
-rw-r--r-- | fg21sim/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/__init__.py b/fg21sim/__init__.py index b94ba8b..77d5902 100644 --- a/fg21sim/__init__.py +++ b/fg21sim/__init__.py @@ -7,7 +7,7 @@ Realistic Foregrounds Simulation for EoR 21cm Signal Detection """ __pkgname__ = "fg21sim" -__version__ = "0.2.0" +__version__ = "0.3.0" __author__ = "Weitian LI" __author_email__ = "liweitianux@live.com" __license__ = "MIT" |