Skip to content

Commit 3bbd5eb

Browse files
committed
r111
1 parent 726f2bb commit 3bbd5eb

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Please also include a live example if possible. You can start from these templat
1717
##### Three.js version
1818

1919
- [ ] Dev
20-
- [ ] r110
20+
- [ ] r111
2121
- [ ] ...
2222

2323
##### Browser

build/three.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
33
typeof define === 'function' && define.amd ? define(['exports'], factory) :
44
(global = global || self, factory(global.THREE = {}));
5-
}(this, function (exports) { 'use strict';
5+
}(this, (function (exports) { 'use strict';
66

77
// Polyfills
88

@@ -97,7 +97,7 @@
9797

9898
}
9999

100-
var REVISION = '111dev';
100+
var REVISION = '111';
101101
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
102102
var TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
103103
var CullFaceNone = 0;
@@ -50211,4 +50211,4 @@
5021150211

5021250212
Object.defineProperty(exports, '__esModule', { value: true });
5021350213

50214-
}));
50214+
})));

build/three.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/three.module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ if ( Object.assign === undefined ) {
9191

9292
}
9393

94-
var REVISION = '111dev';
94+
var REVISION = '111';
9595
var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
9696
var TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
9797
var CullFaceNone = 0;

editor/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// r110
1+
// r111
22

33
const assets = [
44
'./',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "three",
3-
"version": "0.110.0",
3+
"version": "0.111.0",
44
"description": "JavaScript 3D library",
55
"main": "build/three.js",
66
"module": "build/three.module.js",

src/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export var REVISION = '111dev';
1+
export var REVISION = '111';
22
export var MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
33
export var TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
44
export var CullFaceNone = 0;

0 commit comments

Comments
 (0)