Skip to content

Commit be7c908

Browse files
committed
Last commit before release
1 parent 4e68242 commit be7c908

File tree

10 files changed

+164
-14
lines changed

10 files changed

+164
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 3.4.3
2+
3+
- Add the "reduce shaking" feature (using sensor smoothing) to the `new-location-based` A-Frame components #483
4+
- Include missing `THREEx` import in `gps-new-camera`, to allow use of ES6 modules #484
5+
- Add `latLonToWorld()` method to `gps-new-camera`, for compatibility with `gps-projected-camera` #485
6+
- Enable the `gpsTimeInterval` property in `gps-new-camera` (this sets the geolocation `maximumAge` property)
7+
- Add a `distance` property to `gps-new-entity-place`, representing the distance in metres from the GPS position to the entity. This is dynamically updated as the GPS position changes.
8+
- Enhanced `new-location-based` examples.
9+
110
# 3.4.2
211

312
- Display webcam errors via DOM element rather than alert box in three.js location based #429

README.md

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

6464
```html
65-
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.2/aframe/build/aframe-ar-nft.js">
65+
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.3/aframe/build/aframe-ar-nft.js">
6666
```
6767
6868
## 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.

aframe/examples/new-location-based/basic-js-modules/dist/bundle.js

Lines changed: 141 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 7 additions & 7 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-org/ar.js",
3-
"version": "3.4.2",
3+
"version": "3.4.3",
44
"description": "Efficient Augmented Reality for the Web",
55
"main": "./aframe/build/aframe-ar.js",
66
"scripts": {

three.js/build/ar-threex.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/arjs-context.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Context.prototype.removeEventListener =
103103

104104
// default to github page
105105
Context.baseURL = "https://ar-js-org.github.io/AR.js/three.js/";
106-
Context.REVISION = "3.4.2";
106+
Context.REVISION = "3.4.3";
107107
/**
108108
* Create a default camera for this trackingBackend
109109
* @param {string} trackingBackend - the tracking to user

0 commit comments

Comments
 (0)