Skip to content

Commit 9f4d3c2

Browse files
committed
Last commit before release
1 parent d1c2cb0 commit 9f4d3c2

File tree

10 files changed

+65
-10
lines changed

10 files changed

+65
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 3.3.2
2+
3+
- Fixed bug in `arjs-webcam-texture component` which caused the webcam stream to freeze on iOS. Thanks to @stevenlybeck for this.
4+
5+
- CORS proxy removed from examples
6+
7+
- Added custom found/lost events to markerControls for three.js core (thanks to @fcor)
8+
9+
- Deactivated GPS listener when AR.js app not in the foreground (thanks to @NVFedorov for raising this issue)
10+
11+
- update license wording (thanks to @chingucoding)
12+
113
# 3.3.1
214

315
- Fix minor location-based bugs

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.1/aframe/build/aframe-ar-nft.js">
60+
<script src="https://raw.githack.com/AR-js-org/AR.js/3.3.2/aframe/build/aframe-ar-nft.js">
6161
```
6262
6363
## Get started

aframe/build/aframe-ar-location-only.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,7 @@ AFRAME.registerComponent('arjs-webcam-texture', {
656656
this.scene.renderer.autoClear = false;
657657
this.video = document.createElement("video");
658658
this.video.setAttribute("autoplay", true);
659+
this.video.setAttribute("playsinline", true);
659660
this.video.setAttribute("display", "none");
660661
document.body.appendChild(this.video);
661662
this.geom = new THREE.PlaneBufferGeometry(); //0.5, 0.5);

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: 23 additions & 2 deletions
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.1",
3+
"version": "3.3.2",
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: 23 additions & 2 deletions
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.1';
82+
ARjs.Context.REVISION = '3.3.2';
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.1';
77+
ARjs.Context.REVISION = '3.3.2';
7878

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

0 commit comments

Comments
 (0)