diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-09 23:45:57 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-09 23:45:57 +0800 |
commit | c0fff3ca807ec4f3714701f3258cf31f21a905d9 (patch) | |
tree | 016bdf43484c6e3f2e94396b7ba4259e18fee377 | |
parent | 20a0b986c84ccddd5e71e278e2d0b9be81f60f50 (diff) | |
download | fg21sim-c0fff3ca807ec4f3714701f3258cf31f21a905d9.tar.bz2 |
Bump version to 0.2.0v0.2.0
* Following major foregrounds have been implemented:
+ galactic/synchrotron
+ galactic/freefree
+ galactic/snr
+ extragalacitc/clusters
+ extragalacitc/pointsources
NOTE: this component needs further refactor, improvements,
integration and tests
* A Web UI build upon the Tornado framework and its WebSocket function
is implemented and is already barely usable.
+ The Web interface is beautiful and reasonable
+ The configurations manipulation part performs quiet well
* However, there are also many problems with the Web UI:
+ The layout should be more compact and concise
+ There should be some popup/tooltip to reflect the operation results
+ The console that start the server task is current *BLOCKING* (i.e.,
synchronous), however, the WebSocket currently (Tornado v4.3) does
not support coroutine for the "on_message" method, which further
hampers the problem been solved.
-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 1142e26..b94ba8b 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.0.1" +__version__ = "0.2.0" __author__ = "Weitian LI" __author_email__ = "liweitianux@live.com" __license__ = "MIT" |