Skip to content

Commit

Permalink
0.9.6 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Oct 25, 2021
1 parent edcd290 commit 82cf325
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build/artoolkitNFT.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/artoolkitNFT_wasm.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ARToolkitNFT.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/artoolkitNFT.api.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
this._bwpointer = undefined;
this._lumaCtx = undefined;

this.version = '0.9.5';
this.version = '0.9.6';
console.info('JsartoolkitNFT ', this.version);

if (typeof cameraPara === 'string') {
Expand Down
4 changes: 2 additions & 2 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": "@webarkit/jsartoolkit-nft",
"version": "0.9.5",
"version": "0.9.6",
"main": "dist/ARToolkitNFT.js",
"types": "types/src/index.d.ts",
"description": "Emscripten port of ARToolKit5 to JavaScript. It is a lighter version of Jsartoolkit5 with only NFT markerless support",
Expand Down
4 changes: 2 additions & 2 deletions src/ARToolkitNFT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ export default class ARToolkitNFT {
* - cameraCount
* - version
* A message is displayed in the browser console during the intitialization, for example:
* "ARToolkitNFT 0.9.5"
* "ARToolkitNFT 0.9.6"
*/
constructor () {
// reference to WASM module
this.instance
this.markerNFTCount = 0
this.cameraCount = 0
this.version = '0.9.5'
this.version = '0.9.6'
console.info('ARToolkitNFT ', this.version)
}

Expand Down

0 comments on commit 82cf325

Please sign in to comment.