Skip to content

Commit c5c5dcf

Browse files
committed
Update jsdelivr gh urls in README (refs c-frame#395)
1 parent f59bb55 commit c5c5dcf

File tree

1 file changed

+15
-22
lines changed

1 file changed

+15
-22
lines changed

README.md

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A-Frame Extras
22

33
[![Latest NPM release](https://img.shields.io/npm/v/aframe-extras.svg)](https://www.npmjs.com/package/aframe-extras)
4-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/donmccurdy/aframe-extras/master/LICENSE)
4+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/n5ro/aframe-extras/master/LICENSE)
55

66
Add-ons and helpers for A-Frame VR.
77

@@ -44,29 +44,29 @@ src
4444

4545
## Usage (Scripts)
4646

47-
In the [dist/](https://github.com/donmccurdy/aframe-extras/tree/master/dist) folder, download any package(s) you need. Include the scripts on your page, and all components are automatically registered for you:
47+
In the [dist/](https://github.com/n5ro/aframe-extras/tree/master/dist) folder, download any package(s) you need. Include the scripts on your page, and all components are automatically registered for you:
4848

4949
```html
50-
<script src="https://cdn.jsdelivr.net/gh/donmccurdy/aframe-extras@v6.1.1/dist/aframe-extras.min.js"></script>
50+
<script src="https://cdn.jsdelivr.net/gh/n5ro/aframe-extras@tagOrCommit/dist/aframe-extras.min.js"></script>
5151
```
5252

53-
CDN builds for aframe-extras/v6.0.0:
53+
replace `tagOrCommit` by a tag (for example `v6.1.1`) or a commit hash (for example `fb96ab2`):
5454

55-
- [aframe-extras.js](https://cdn.jsdelivr.net/gh/donmccurdy/aframe-extras@v6.1.1/dist/aframe-extras.js) *(development)*
56-
- [aframe-extras.min.js](https://cdn.jsdelivr.net/gh/donmccurdy/aframe-extras@v6.1.1/dist/aframe-extras.min.js) *(production)*
55+
CDN builds of the latest version:
56+
57+
- [aframe-extras.js](https://cdn.jsdelivr.net/gh/n5ro/aframe-extras@fb96ab2/dist/aframe-extras.js) *(development)*
58+
- [aframe-extras.min.js](https://cdn.jsdelivr.net/gh/n5ro/aframe-extras@fb96ab2/dist/aframe-extras.min.js) *(production)*
5759

5860
For partial builds, use a subpackage like `aframe-extras.controls.min.js`. Full list of packages above.
5961

6062
**A-Frame Version Compatibility**
6163

62-
| A-Frame | Extras |
63-
|----------|----------------------|
64-
| v0.9.X | aframe-extras/v6.0.0 |
65-
| v0.8.X | */v5.1.0 |
66-
| v0.5.X | */v3.13.1 |
67-
| v0.4.X | */v3.3.0 |
68-
| v0.3.X | */v2.6.1 |
69-
| v0.2.X | */v1.17.0 |
64+
| A-Frame | Extras |
65+
|----------|-------------------------------|
66+
| v1.4.0 | v6.2.0 (unreleased) / fb96ab2 |
67+
| v1.3.0 | v6.2.0 (unreleased) / fb96ab2 |
68+
| v1.2.0 | v6.2.0 (unreleased) / fb96ab2 |
69+
| v1.1.0 | v6.1.1 |
7070

7171
> **NOTE:** Several components and examples also rely on [aframe-physics-system](https://github.com/c-frame/aframe-physics-system).
7272
@@ -81,11 +81,4 @@ npm install --save aframe-extras
8181
require('aframe-extras');
8282
```
8383

84-
Once installed, you'll need to compile your JavaScript using something like [Browserify](http://browserify.org/) or [Webpack](http://webpack.github.io/). Example:
85-
86-
```bash
87-
npm install -g browserify
88-
browserify index.js -o bundle.js
89-
```
90-
91-
`bundle.js` may then be included in your page. See [here](http://browserify.org/#middle-section) for a better introduction to Browserify.
84+
Once installed, you'll need to compile your JavaScript using something like [webpack](https://webpack.js.org).

0 commit comments

Comments
 (0)