Skip to content

Commit

Permalink
Zappar for ThreeJS v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Zappar committed Oct 6, 2022
1 parent 1bc8993 commit 80759f7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [2.0.5] - 2022-10-06

- Updated `LoadingManager` loading text from `Loading..` to `Loading...`

## [2.0.4] - 2022-09-30

- Bumped `three` support to `r145`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ You may also be interested in:
* [Instant World Tracking](#instant-world-tracking)
* [Links and Resources](#links-and-resources)

<!-- Added by: zapparadmin, at: Fri Sep 30 16:55:22 BST 2022 -->
<!-- Added by: zapparadmin, at: Thu Oct 6 17:22:49 BST 2022 -->

<!--te-->
</details>
Expand Down Expand Up @@ -99,7 +99,7 @@ You can use this library by downloading a standalone zip containing the necessar
### Standalone Download

Download the bundle from:
<https://libs.zappar.com/zappar-threejs/2.0.4/zappar-threejs.zip>
<https://libs.zappar.com/zappar-threejs/2.0.5/zappar-threejs.zip>

Unzip into your web project and reference from your HTML like this:

Expand All @@ -112,7 +112,7 @@ Unzip into your web project and reference from your HTML like this:
Reference the zappar.js library from your HTML like this:

```html
<script src="https://libs.zappar.com/zappar-threejs/2.0.4/zappar-threejs.js"></script>
<script src="https://libs.zappar.com/zappar-threejs/2.0.5/zappar-threejs.js"></script>
```

### NPM Webpack Package
Expand Down
6 changes: 3 additions & 3 deletions latest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.4",
"cdn": "https://libs.zappar.com/zappar-threejs/2.0.4/zappar-threejs.js",
"zip": "https://libs.zappar.com/zappar-threejs/2.0.4/zappar-threejs.zip"
"version": "2.0.5",
"cdn": "https://libs.zappar.com/zappar-threejs/2.0.5/zappar-threejs.js",
"zip": "https://libs.zappar.com/zappar-threejs/2.0.5/zappar-threejs.zip"
}
2 changes: 1 addition & 1 deletion src/loaders/loadingmanager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class UI {
this.divs.progress.appendChild(this.divs.progressValue);
this.containerDiv.appendChild(this.divs.inner);

this.divs.title.innerHTML = "Loading..";
this.divs.title.innerHTML = "Loading...";

document.body.append(this.containerDiv);
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* SDK version.
*/
export const VERSION = "2.0.4";
export const VERSION = "2.0.5";

0 comments on commit 80759f7

Please sign in to comment.