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 Feb 16, 2023
1 parent 1b2f157 commit 4d7399d
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 24 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.4.4

- Make the distance property of `gps-new-entity-place` available as soon as it's added #507
- Add option to use the initial GPS location as the world origin, restoring the behaviour of the "classic" components and lessening the possibilty of precision errors due to large values for world coordinates #508
- Update `artoolkit5-js` to 0.3.0

# 3.4.3

- Add the "reduce shaking" feature (using sensor smoothing) to the `new-location-based` A-Frame components #483
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.3/aframe/build/aframe-ar-nft.js">
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.4/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.

32 changes: 16 additions & 16 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions 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.3",
"version": "3.4.4",
"description": "Efficient Augmented Reality for the Web",
"main": "./aframe/build/aframe-ar.js",
"scripts": {
Expand Down Expand Up @@ -59,7 +59,7 @@
"worker-loader": "^3.0.8"
},
"dependencies": {
"@ar-js-org/artoolkit5-js": "^0.2.0",
"@ar-js-org/artoolkit5-js": "^0.3.0",
"aframe": "^1.0.4",
"three": "^0.146.0"
},
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.

5 changes: 5 additions & 0 deletions three.js/src/location-based/js/a.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const constraints = {
video: {
facingMode: "environment",
},
};
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.3";
Context.REVISION = "3.4.4";
/**
* Create a default camera for this trackingBackend
* @param {string} trackingBackend - the tracking to user
Expand Down

0 comments on commit 4d7399d

Please sign in to comment.