roadmap and releases

This commit is contained in:
Xin Wang 2019-09-07 14:16:50 +08:00
parent 2b915b9383
commit fd5eaa1a28
3 changed files with 69 additions and 12 deletions

View File

@ -88,9 +88,9 @@ Samples and demos
=================
The WAMR samples are located in folder [./samples](./samples). A sample usually contains the WAMR runtime build, WASM applications and test tools. The WARM provides following samples:
- [Simple](./samples/simple/README.md): The runtime integrated most of the WAMR APP libaries and multiple WASM applications are provided for using different WASM API set.
- [littlevgl](./samples/littlevgl/README.md): Demostrating the graphic user interface application usage on WAMR. The whole littlevgl 2D user graphic library and the UI application is built into WASM application.
- [gui](./samples/gui/README.md): Moved the littlevgl library into the runtime and defined a WASM application interface by wrapping the littlevgl API.
- [Simple](./samples/simple/README.md): The runtime is integrated with most of the WAMR APP libaries and multiple WASM applications are provided for using different WASM API set.
- [littlevgl](./samples/littlevgl/README.md): Demostrating the graphic user interface application usage on WAMR. The whole [LittlevGL](https://github.com/littlevgl/) 2D user graphic library and the UI application is built into WASM application.
- [gui](./samples/gui/README.md): Moved the [LittlevGL](https://github.com/littlevgl/) library into the runtime and defined a WASM application interface by wrapping the littlevgl API.
- [IoT-APP-Store-Demo](./test-tools/IoT-APP-Store-Demo/README.md): A web site for demostrating a WASM APP store usage where we can remotely install and uninstall WASM application on remote devices.
@ -101,10 +101,10 @@ The graphic user interface demo photo:
Releases and acknowledgment
===========================
Releases and acknowledgments
============================
WAMR is a community efforts. Since Intel Corp contributed the first release of this project, this project received many good contributions from the community.
WAMR is a community efforts. Since Intel Corp contributed the first release of this open source project, this project has received many good contributions from the community.
See the [major features releasing history and contributor names](./doc/release_ack.md)
@ -116,7 +116,9 @@ See the [roadmap](./doc/roadmap.md) to understand what major features are planed
Please submit issues for any new feature request, or your plan for contributing new features.
Submit issues and contact the maintainers
=========================================

View File

@ -0,0 +1,53 @@
Major feature releases and contributors
=========================================
**May 07, 2019: WAMR first GitHub release**
- Contributors: Wenyong Huang, Weining Lu, Lei Shi, Li Tian, Jizhao Zhang, Yi Zhang, Daoming Qiu, Xin Wang (Intel)
**May 17, 2019: Application manager, WASM APP API, samples and test tools**
- Contributors: Wenyong Huang, Weining Lu, Lei Shi, Li Tian, Jizhao Zhang, Yi Zhang, Daoming Qiu, Xin Wang (Intel)
**May 23, 2019: Support AliOS Things**
- Contributor: JinZhong Zhu (Alibaba)
**May 24, 2019: Support memory usage profiler**
- Contributors Wenyong Huang (Intel)
**Jun 11, 2019: Add WASM APP API: connection **
- Contributor: Weining Lu (Intel)
**Jun 10, 2019: Support VxWorks **
- Contributor: Yiting Wang (WindRiver)
**Aug 1, 2019: Add WGL graphic user interface API **
- Contributor: Weining Lu
**Aug 14, 2019: Add Docker support **
- Contributor: beriberikix
**Aug 14, 2019: WASM IoT app store demo **
- Contributor: Luhanzhi Li, Jun Xu (Intel)
**Aug 28, 2019: SGX support **
- Contributor: Mic Bowman (Intel)
**Sep 6, 2019: Mac platform support **
- Contributor: Jonathan Dong (Alibaba)

View File

@ -1,14 +1,16 @@
# WebAssembly Micro Runtime Roadmap
## Ahead of time compilation
Status: under development. The first release is targetted to the end of 2019.
## WASI support
Evaluated solution.
## Data serialization
Evauating using cbor as the default data serialization
## Threading
Not started yet
##