Skip to content

Commit

Permalink
new 3.4.0-alpha-rc1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Mar 8, 2022
1 parent 626dee3 commit 2e0a20d
Show file tree
Hide file tree
Showing 13 changed files with 2,017 additions and 29 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.0-alpha-rc1
- ES6 feature into master
- new threejs location based
- new dispose methods in arjs-context.js andarjs-source.js
- use of artoolkit5-js instead of old jsartoolkit5 as base code
- other bug fixes see PR #400
# 3.3.3

- Fixed bug which prevents `minDistance` and `maxDistance` working with a simulated location
Expand Down
6 changes: 2 additions & 4 deletions HOW_TO_RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ package.json
README.md

# Build everything - aka a-frame and three.js
make build
cd aframe
make build-location-only
cd ..
npm install
npm run build

# Commit everything
git add . && git commit -a -m 'Last commit before release' && git push
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,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.3.3/aframe/build/aframe-ar-nft.js">
<script src="https://raw.githack.com/AR-js-org/AR.js/3.4.0-alpha-rc1/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.

2,014 changes: 1,999 additions & 15 deletions package-lock.json

Large diffs are not rendered by default.

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.3.3-es6-beta-04",
"version": "3.4.0-alpha-rc1",
"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-nft.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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-nft.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Context.prototype.removeEventListener = THREE.EventDispatcher.prototype.removeEv

// default to github page
Context.baseURL = 'https://ar-js-org.github.io/AR.js/three.js/'
Context.REVISION = '3.3.3-es6-beta-04';
Context.REVISION = '3.4.0-alpha-rc1';

/**
* Create a default camera for this trackingBackend
Expand Down
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 @@ -84,7 +84,7 @@ Context.prototype.removeEventListener = THREE.EventDispatcher.prototype.removeEv

// default to github page
Context.baseURL = 'https://ar-js-org.github.io/AR.js/three.js/'
Context.REVISION = '3.3.3-es6-beta-04'
Context.REVISION = '3.4.0-alpha-rc1'
/**
* Create a default camera for this trackingBackend
* @param {string} trackingBackend - the tracking to user
Expand Down

0 comments on commit 2e0a20d

Please sign in to comment.