Updated nodejs javascript files for 1.2.5

This commit is contained in:
Ondrej Stava 2018-01-17 09:28:32 -08:00
parent f3b5989b1d
commit 35c5a7167d
8 changed files with 76 additions and 29 deletions

View File

@ -5,6 +5,25 @@
News
=======
### Version 1.2.5 release
* On average 10% faster decoding
* Improved Javascript metadata API
* Bug fixes
### Version 1.2.4 release
* Up to 20% faster decoding
* Added support for integer attributes to our Javascript Encoder
* Fixed issues with THREE.DracoLoader not releasing memory associated with the Draco module
* OBJ decoder can now be used to parse pure point clouds
* Added Unity plugins to support runtime loading and design-time importing of encoded Draco files
### Version 1.2.3 release
* Fixed Visual Studio building issue
### Version 1.2.2 release
The latest version of Draco brings a number of small bug fixes
* Fixed issues when parsing ill-formatted .obj files
### Version 1.2.1 release
The latest version of Draco brings a number of enhancements to reduce decoder size and various other fixes
* Javascript and WebAssembly decoder size reduced by 35%

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "draco3d",
"version": "1.2.4",
"version": "1.2.5",
"description": "Draco is a library for compressing and decompressing 3D geometric meshes and point clouds. It is intended to improve the storage and transmission of 3D graphics.",
"main": "draco3d.js",
"scripts": {

View File

@ -14,6 +14,32 @@ This package is a build for encoding/decoding [Draco mesh compression extension]
TODO: Add glTF branch url.
News
=======
### Version 1.2.5 release
* On average 10% faster decoding
* Improved Javascript metadata API
* Bug fixes
### Version 1.2.4 release
* Up to 20% faster decoding
* Added support for integer attributes to our Javascript Encoder
* Fixed issues with THREE.DracoLoader not releasing memory associated with the Draco module
* OBJ decoder can now be used to parse pure point clouds
* Added Unity plugins to support runtime loading and design-time importing of encoded Draco files
### Version 1.2.3 release
* Fixed Visual Studio building issue
### Version 1.2.2 release
The latest version of Draco brings a number of small bug fixes
* Fixed issues when parsing ill-formatted .obj files
### Version 1.2.1 release
The latest version of Draco brings a number of enhancements to reduce decoder size and various other fixes
* Javascript and WebAssembly decoder size reduced by 35%
* Added specialized Javascript and Webassembly decoders for GLTF (size reduction about 50% compared to the previous version)
NPM Package
===========

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "draco3dgltf",
"version": "1.2.4",
"version": "1.2.6",
"description": "This package contains a specific version of Draco 3D geometric compression library that is used for glTF Draco mesh compression extension.",
"main": "draco3dgltf.js",
"scripts": {