Skip to content

Commit

Permalink
Last commit before release
Browse files Browse the repository at this point in the history
  • Loading branch information
nickw1 committed Dec 29, 2022
1 parent 4e68242 commit be7c908
Show file tree
Hide file tree
Showing 10 changed files with 164 additions and 14 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 3.4.3

- Add the "reduce shaking" feature (using sensor smoothing) to the `new-location-based` A-Frame components #483
- Include missing `THREEx` import in `gps-new-camera`, to allow use of ES6 modules #484
- Add `latLonToWorld()` method to `gps-new-camera`, for compatibility with `gps-projected-camera` #485
- Enable the `gpsTimeInterval` property in `gps-new-camera` (this sets the geolocation `maximumAge` property)
- 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.
- Enhanced `new-location-based` examples.

# 3.4.2

- Display webcam errors via DOM element rather than alert box in three.js location based #429
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Please import the one you need for your project, not both:
You can also import a specific version replacing `master` keyword with version tag:

```html
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.2/aframe/build/aframe-ar-nft.js">
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.3/aframe/build/aframe-ar-nft.js">
```
## Get started
Expand Down
2 changes: 1 addition & 1 deletion aframe/build/aframe-ar-nft.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aframe/build/aframe-ar.js

Large diffs are not rendered by default.

141 changes: 141 additions & 0 deletions aframe/examples/new-location-based/basic-js-modules/dist/bundle.js

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ar-js-org/ar.js",
"version": "3.4.2",
"version": "3.4.3",
"description": "Efficient Augmented Reality for the Web",
"main": "./aframe/build/aframe-ar.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion three.js/build/ar-threex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion three.js/build/ar.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion three.js/src/threex/arjs-context.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Context.prototype.removeEventListener =

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

0 comments on commit be7c908

Please sign in to comment.