mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-27 02:24:04 -05:00
Bumped to 1.2.0
This commit is contained in:
parent
88d1396370
commit
8701c87767
@ -2,6 +2,7 @@
|
|||||||
/coverage
|
/coverage
|
||||||
/doc
|
/doc
|
||||||
/specs
|
/specs
|
||||||
|
/test
|
||||||
.editorconfig
|
.editorconfig
|
||||||
.eslintcache
|
.eslintcache
|
||||||
.eslintignore
|
.eslintignore
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
Change Log
|
Change Log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
### Next release
|
### 1.2.0 2017-07-11
|
||||||
|
|
||||||
* Change texture sampling to use NEAREST_MIPMAP_LINEAR by default [#83](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/83).
|
* Change texture sampling to use `NEAREST_MIPMAP_LINEAR` by default [#83](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/83).
|
||||||
* Fixed normal generation.
|
* Fixed lighting when generating normals. [#89](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/89)
|
||||||
|
|
||||||
### 1.1.1 2017-04-25
|
### 1.1.1 2017-04-25
|
||||||
|
|
||||||
|
30
package.json
30
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obj2gltf",
|
"name": "obj2gltf",
|
||||||
"version": "1.1.1",
|
"version": "1.2.0",
|
||||||
"description": "Convert OBJ model format to glTF",
|
"description": "Convert OBJ model format to glTF",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
@ -26,24 +26,24 @@
|
|||||||
"node": ">=4.0.0"
|
"node": ">=4.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bluebird": "^3.4.7",
|
"bluebird": "^3.5.0",
|
||||||
"cesium": "^1.31.0",
|
"cesium": "^1.35.2",
|
||||||
"fs-extra": "^3.0.1",
|
"fs-extra": "^3.0.1",
|
||||||
"gltf-pipeline": "^0.1.0-alpha11",
|
"gltf-pipeline": "^1.0.0",
|
||||||
"mime": "^1.3.4",
|
"mime": "^1.3.6",
|
||||||
"pngjs": "^3.0.1",
|
"pngjs": "^3.2.0",
|
||||||
"uuid": "^3.0.1",
|
"uuid": "^3.1.0",
|
||||||
"yargs": "^8.0.1"
|
"yargs": "^8.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"coveralls": "^2.12.0",
|
"coveralls": "^2.13.1",
|
||||||
"eslint": "^4.1.1",
|
"eslint": "^4.2.0",
|
||||||
"eslint-config-cesium": "^2.0.0",
|
"eslint-config-cesium": "^2.0.1",
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
"jasmine": "^2.5.3",
|
"jasmine": "^2.6.0",
|
||||||
"jasmine-spec-reporter": "^4.1.0",
|
"jasmine-spec-reporter": "^4.1.1",
|
||||||
"jsdoc": "^3.4.3",
|
"jsdoc": "^3.5.1",
|
||||||
"nyc": "^11.0.2",
|
"nyc": "^11.0.3",
|
||||||
"open": "^0.0.5",
|
"open": "^0.0.5",
|
||||||
"requirejs": "^2.3.3"
|
"requirejs": "^2.3.3"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user