summaryrefslogtreecommitdiff
path: root/RELEASE.md
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-09 16:44:08 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-09 16:44:08 -0700
commitd1cc3d33c53bf5c21cbdfcc7df65bff273b6f5bd (patch)
treeb3a5f00f30f029bbfe4fa1288c68a01446010a7b /RELEASE.md
parent97922c7ee40120ee9e846cad6a0a002089a0949d (diff)
downloadrvi_core-d1cc3d33c53bf5c21cbdfcc7df65bff273b6f5bd.tar.gz
Updated documentation in preparation for release
Diffstat (limited to 'RELEASE.md')
-rw-r--r--RELEASE.md47
1 files changed, 47 insertions, 0 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 794084e..6893646 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -2,3 +2,50 @@
# v0.1 #
Initial demo version. Works with the hvac_demo and its hvac / mobile emulators.
+
+# v0.2 #
+Various improvements
+
+# v0.3.0 #
+* <b>Auto connect static links</b><br>
+ When data link is lost to a statically configured node (See
+ CONFIGURE STATIC NODES in [configuration](CONFIGURE.md) document, a
+ reconnect attempt will be made every five seconds.
+
+* <b>Intra-component communication speedup</b><br>
+ Components inside an RVI node can now choose if they want to use
+ JSON-RPC (compatbility mode) or Erlang Genserver calls to
+ communicate.
+
+* <b>List available services</b><br>
+ Added get\_available\_services, allowing a service to query its RVI node
+ of which other services are on-line and available for invocation.
+
+
+* <b>New python tutorial code</b>
+ Created top level ```python``` directory with rvilib.py and three
+ new apps that can be used as tutorials on how to interface RVI. The
+ apps are:
+
+ ```rvi_service.py``` registers a service with an RVI node and prints
+ out information when it is invoked by RVI.
+
+ ```rvi_call.py``` invokes a service in an RVI network.
+
+
+ ```rvi_get_services.py``` connects to a local RVI node and prints out
+ a list of all callable services accessible throughout that node.
+
+ ```rvilib.py``` has been cleaned up and simplified.
+
+
+* <b>Service availability notifications</b><br>
+ Added real-time notifications from an RVI to its locally connected services
+ when a new service is added or deleted somewhere in the network. This
+ allows for the implementation of "vehicle online" indicators and other
+ real-time sensitive behavior.
+
+* Big data demo moved to its own repo at https://github.com/PDXostc/rvi_bigdata
+
+* SOTA demo moved to its own repo at https://github.com/PDXostc/rvi_sota_demo
+