Skip to content

Commit 5826c97

Browse files
committed
chore(release): 1.1.14-0
1 parent e930472 commit 5826c97

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
<a name="1.1.14-0"></a>
6+
## [1.1.14-0](https://github.com/argonjs/argon/compare/v1.1.13...v1.1.14-0) (2017-04-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **DeviceService:** Fixed _updateForWebVR logic ([68e156b](https://github.com/argonjs/argon/commit/68e156b))
12+
* **DeviceService:** Fixed user orientation & subview projection matrices for webvr ([42ff5f4](https://github.com/argonjs/argon/commit/42ff5f4))
13+
* **DeviceServiceProvider:** Removed unnecessary WebVR logic from onUpdateDeviceState ([bb8aa70](https://github.com/argonjs/argon/commit/bb8aa70))

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@argonjs/argon",
3-
"version": "1.1.13",
3+
"version": "1.1.14-0",
44
"main": "dist/argon.core.js",
55
"browser": "dist/argon.js",
66
"typings": "index.d.ts",
@@ -230,8 +230,7 @@
230230
"preversion": "[[ -z $(git status --porcelain) ]]",
231231
"version": "npm run tsc && npm run build && git add -u",
232232
"postversion": "git push && git push --tags",
233-
234-
"begin-release":"[[ -z $(git status --porcelain) ]] && npm run tsc && npm run build && git add -u",
233+
"begin-release": "[[ -z $(git status --porcelain) ]] && npm run tsc && npm run build && git add -u",
235234
"release:next": "npm run begin-release && standard-version -a --prerelease && npm run finish-release && npm publish --tag next",
236235
"release:latest": "npm run begin-release && standard-version -a && npm run finish-release && npm publish",
237236
"finish-release": "git push && git push --tags"

src/device.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export declare class DeviceService {
4949
readonly geoHorizontalAccuracy: number | undefined;
5050
readonly geoVerticalAccuracy: number | undefined;
5151
private _getEntityPositionInReferenceFrame;
52+
private _getEntityOrientationInReferenceFrame;
5253
protected _scratchCartesian: Cartesian3;
5354
protected _scratchCartesian2: Cartesian3;
5455
protected _scratchFrustum: PerspectiveFrustum;
@@ -82,6 +83,8 @@ export declare class DeviceService {
8283
* Defines the webvr standing space, positioned at the stage (EUS) frame by default.
8384
*/
8485
vrStandingSpace: Entity;
86+
private _defaultLeftBounds;
87+
private _defaultRightBounds;
8588
private _updateForWebVR();
8689
private _scratchFrameState;
8790
private _getSerializedEntityState;
@@ -126,7 +129,6 @@ export declare class DeviceServiceProvider {
126129
publishDeviceState(): void;
127130
defaultUserHeight: number;
128131
readonly suggestedUserHeight: number;
129-
private _vrFrameData?;
130132
protected onUpdateDeviceState(deviceState: DeviceState): void;
131133
private _currentGeolocationOptions?;
132134
private _targetGeolocationOptions;

0 commit comments

Comments
 (0)