Skip to content
This repository was archived by the owner on Dec 15, 2020. It is now read-only.

Commit 4e28fae

Browse files
committed
Release 1.3.0
1 parent f8d60f8 commit 4e28fae

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

OVRUI/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "ovrui",
4-
"version": "1.0.0",
4+
"version": "1.3.0",
55
"description": "UI toolkit for building WebVR applications",
66
"license": "BSD-3-Clause",
77
"repository": {

ReactVR/js/VRInstance.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default class VRInstance {
106106
antialias: options.antialias,
107107
calculateVerticalFOV: options.calculateVerticalFOV,
108108
camera: options.camera,
109-
canvasAlpha: options.canvasAlpha,
109+
canvasAlpha: options.hasOwnProperty('canvasAlpha') ? options.antialias : true,
110110
width: options.width,
111111
height: options.height,
112112
onEnterVR: () => this._onEnterVR(),

ReactVR/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "react-vr-web",
4-
"version": "1.0.0",
4+
"version": "1.3.0",
55
"description": "A framework for building VR applications with React",
66
"license": "BSD-3-Clause",
77
"repository": {
@@ -22,6 +22,6 @@
2222
"react-native": "~0.42.0"
2323
},
2424
"dependencies": {
25-
"ovrui": "~1.0.0"
25+
"ovrui": "~1.3.0"
2626
}
2727
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "react-vr",
4-
"version": "1.1.0",
4+
"version": "1.3.0",
55
"description": "A framework for building VR applications with React",
66
"license": "BSD-3-Clause",
77
"repository": {

react-vr-cli/generators/package.json.generator.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ module.exports = config => ({
2323
"test": "jest"
2424
},
2525
"dependencies": {
26-
"ovrui": "~1.0.0",
26+
"ovrui": "~1.3.0",
2727
"react": "~15.4.1",
2828
"react-native": "~0.42.0",
2929
"three": "^0.80.1",
30-
"react-vr": "~1.0.0",
31-
"react-vr-web": "~1.0.0"
30+
"react-vr": "~1.3.0",
31+
"react-vr-web": "~1.3.0"
3232
},
3333
"devDependencies": {
3434
"babel-jest": "^19.0.0",

react-vr-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-vr-cli",
3-
"version": "0.3.0",
3+
"version": "0.3.3",
44
"description": "The React VR CLI for project setup",
55
"license": "BSD-3-Clause",
66
"engines": {

0 commit comments

Comments
 (0)