From 4e28faefa911ff89fc1f39d86ddcc68768bbad11 Mon Sep 17 00:00:00 2001 From: Andrew Imm Date: Mon, 3 Jul 2017 17:07:57 -0700 Subject: [PATCH] Release 1.3.0 --- OVRUI/package.json | 2 +- ReactVR/js/VRInstance.js | 2 +- ReactVR/package.json | 4 ++-- package.json | 2 +- react-vr-cli/generators/package.json.generator.js | 6 +++--- react-vr-cli/package.json | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/OVRUI/package.json b/OVRUI/package.json index 18b37026f..30a1013c5 100644 --- a/OVRUI/package.json +++ b/OVRUI/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "ovrui", - "version": "1.0.0", + "version": "1.3.0", "description": "UI toolkit for building WebVR applications", "license": "BSD-3-Clause", "repository": { diff --git a/ReactVR/js/VRInstance.js b/ReactVR/js/VRInstance.js index 78b34ede3..9cdc4f120 100755 --- a/ReactVR/js/VRInstance.js +++ b/ReactVR/js/VRInstance.js @@ -106,7 +106,7 @@ export default class VRInstance { antialias: options.antialias, calculateVerticalFOV: options.calculateVerticalFOV, camera: options.camera, - canvasAlpha: options.canvasAlpha, + canvasAlpha: options.hasOwnProperty('canvasAlpha') ? options.antialias : true, width: options.width, height: options.height, onEnterVR: () => this._onEnterVR(), diff --git a/ReactVR/package.json b/ReactVR/package.json index f55a863ae..543f2fd5a 100644 --- a/ReactVR/package.json +++ b/ReactVR/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "react-vr-web", - "version": "1.0.0", + "version": "1.3.0", "description": "A framework for building VR applications with React", "license": "BSD-3-Clause", "repository": { @@ -22,6 +22,6 @@ "react-native": "~0.42.0" }, "dependencies": { - "ovrui": "~1.0.0" + "ovrui": "~1.3.0" } } diff --git a/package.json b/package.json index e921df638..05d971d77 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "react-vr", - "version": "1.1.0", + "version": "1.3.0", "description": "A framework for building VR applications with React", "license": "BSD-3-Clause", "repository": { diff --git a/react-vr-cli/generators/package.json.generator.js b/react-vr-cli/generators/package.json.generator.js index a5f66daed..fd557e164 100644 --- a/react-vr-cli/generators/package.json.generator.js +++ b/react-vr-cli/generators/package.json.generator.js @@ -23,12 +23,12 @@ module.exports = config => ({ "test": "jest" }, "dependencies": { - "ovrui": "~1.0.0", + "ovrui": "~1.3.0", "react": "~15.4.1", "react-native": "~0.42.0", "three": "^0.80.1", - "react-vr": "~1.0.0", - "react-vr-web": "~1.0.0" + "react-vr": "~1.3.0", + "react-vr-web": "~1.3.0" }, "devDependencies": { "babel-jest": "^19.0.0", diff --git a/react-vr-cli/package.json b/react-vr-cli/package.json index eeaff8f46..d67037809 100644 --- a/react-vr-cli/package.json +++ b/react-vr-cli/package.json @@ -1,6 +1,6 @@ { "name": "react-vr-cli", - "version": "0.3.0", + "version": "0.3.3", "description": "The React VR CLI for project setup", "license": "BSD-3-Clause", "engines": {