Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,27 @@ What's new in SimPhoNy Remote 0.8.0
Summary
~~~~~~~

- Introduced Google Analytics support for start of Applications.
- Introduced Google Analytics support for start of Applications (#274).
- Support for passing configurable data at application startup (#255, #257, #260, #263, #264, #266)
Documentation of the resulting docker image protocol (#278)
- Virtual user workspace is now created once and preserved, with a identifiable name (#270)
- Launching or viewing application now opens a new window (#269)
- Makefile rule and documentation for docker upgrade on Ubuntu 14.04 host (#249)
- Introduced npm/bower package management. Removed now irrelevant files. (#272, #273, #275)
- UI:
- Added spinner during loading of applications. Added message in case of no applications available (#252)
- beautification (#265)
- CI:
- Removed Paraview image retrieval (#256)
- Better Travis output using before_script to perform devdeps installation. (#267)
- Added test coverage for JavaScript code with Blanket (#276)
- Refactor:
- Major overhaul of JavaScript layer (#250)
- Finalized porting of WebAPI to tornadowebapi (#254)
- Fix:
- Reporting error in case of double start/stop request, removing a potential race condition (#279)
- Documented command line start request behavior for already started container (#280)


What's new in SimPhoNy Remote 0.7.0
-----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion remoteappmanager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MAJOR = 0
MINOR = 8
MICRO = 0
IS_RELEASED = False
IS_RELEASED = True

__version__ = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

Expand Down