Skip to content

Commit 91e73f4

Browse files
Last commit before release
1 parent 5e28d4c commit 91e73f4

File tree

10 files changed

+15
-8
lines changed

10 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.3.1
2+
3+
- Fix minor location-based bugs
4+
15
# 3.3.0
26

37
- Fix shaking of far/near entities on location-based using new configurable properties (thanks to @nickw1)

HOW_TO_RELEASE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ README.md
1010

1111
# Build everything - aka a-frame and three.js
1212
make build
13+
cd aframe
14+
make build-location-only
15+
cd ..
1316

1417
# Commit everything
1518
git add . && git commit -a -m 'Last commit before release' && git push

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Please import the one you need for your project, not both:
5757
You can also import a specific version replacing `master` keyword with version tag:
5858

5959
```html
60-
<script src="https://raw.githack.com/AR-js-org/AR.js/3.3.0/aframe/build/aframe-ar-nft.js">
60+
<script src="https://raw.githack.com/AR-js-org/AR.js/3.3.1/aframe/build/aframe-ar-nft.js">
6161
```
6262
6363
## Get started

aframe/build/aframe-ar-nft.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aframe/build/aframe-ar.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ar.js",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "Efficient Augmented Reality for the Web",
55
"main": "./aframe/build/aframe-ar.js",
66
"scripts": {

three.js/build/ar-nft.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

three.js/build/ar.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

three.js/src/threex/threex-artoolkitcontext-nft.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Object.assign(ARjs.Context.prototype, THREE.EventDispatcher.prototype);
7979

8080
// default to github page
8181
ARjs.Context.baseURL = 'https://ar-js-org.github.io/AR.js/three.js/'
82-
ARjs.Context.REVISION = '3.3.0';
82+
ARjs.Context.REVISION = '3.3.1';
8383

8484
/**
8585
* Create a default camera for this trackingBackend

three.js/src/threex/threex-artoolkitcontext.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Object.assign(ARjs.Context.prototype, THREE.EventDispatcher.prototype);
7474

7575
// default to github page
7676
ARjs.Context.baseURL = 'https://ar-js-org.github.io/AR.js/three.js/'
77-
ARjs.Context.REVISION = '3.3.0';
77+
ARjs.Context.REVISION = '3.3.1';
7878

7979
/**
8080
* Create a default camera for this trackingBackend

0 commit comments

Comments
 (0)