Skip to content

Commit

Permalink
ml5 release v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyklee committed Mar 29, 2019
2 parents c2d48f0 + 03b3054 commit d1f578c
Show file tree
Hide file tree
Showing 5 changed files with 340 additions and 582 deletions.
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,28 @@ ml5.js is heavily inspired by [Processing](https://processing.org/) and [p5.js](

There are several ways you can use the ml5.js library:

* You can use the latest online version by adding it to the head section of your HTML document:
* You can use the latest version (0.2.3) by adding it to the head section of your HTML document:

**v0.2.3**
```javascript
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js" type="text/javascript"></script>
<script src="https://unpkg.com/ml5@0.2.3/dist/ml5.min.js" type="text/javascript"></script>
```

* Or you can use an specific version of the library:
**v0.2.1**
```javascript
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
```
* If you need to use an earlier version for any reason, you can change the version number.

**v0.1.3**

```javascript
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
```

* Or you can download the [minified](https://raw.githubusercontent.com/ml5js/ml5-library/master/dist/ml5.min.js) and include the file:
* You can also reference "latest", but we do not recommend this as your code may break as we update ml5.

```javascript
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js" type="text/javascript"></script>
```

* Finally, you can download the [minified](https://raw.githubusercontent.com/ml5js/ml5-library/master/dist/ml5.min.js) and include the file:

```javascript
<script src="ml5.min.js" type="text/javascript"></script>
Expand Down Expand Up @@ -66,7 +70,7 @@ See [CONTRIBUTING](CONTRIBUTING.md) 🛠

## Acknowledgements

ml5.js is supported by the time and dedication of open source developers from all over the world. Funding and support is generously provided by a [Google Education grant](https://edu.google.com/giving/?modal_active=none) via [Dan Shiffman](https://shiffman.net/) at NYU's ITP/IMA program.
ml5.js is supported by the time and dedication of open source developers from all over the world. Funding and support is generously provided by a [Google Education grant](https://edu.google.com/giving/?modal_active=none) at NYU's ITP/IMA program.

Many thanks [BrowserStack](https://www.browserstack.com/) for providing testing support.

Expand Down
Loading

0 comments on commit d1f578c

Please sign in to comment.