Skip to content

Commit

Permalink
Merge branch 'release/2.0.2'
Browse files Browse the repository at this point in the history
Bumped three ^0.125.1 → ^0.137.5 for security reasons
  • Loading branch information
lanceschi committed Jan 29, 2022
2 parents 6e4f1ca + 3df3087 commit f90fa7b
Show file tree
Hide file tree
Showing 6 changed files with 183 additions and 240 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ tests
.nvmrc
.prettierrc
CONTRIBUTING.md
README.md
CHANGELOG.md
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v2.0.2] - 2022-01-29

### Changed

- NPM package upgrades:
- cross-blob ^3.0.0 → ^3.0.1
- chai ^4.3.4 → ^4.3.6
- eslint ^8.6.0 → ^8.8.0
- mocha ^9.1.3 → ^9.2.0
- three ^0.125.1 → ^0.137.5
- `.npmignore` edits

## [v2.0.1] - 2022-01-15

### Added
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
![ci](https://github.com/lanceschi/threejs-ply-loader/workflows/ci/badge.svg)   ![npm publish](https://github.com/lanceschi/threejs-ply-loader/workflows/npm%20publish/badge.svg)   [![npm version](https://badge.fury.io/js/threejs-ply-loader.svg)](http://badge.fury.io/js/threejs-ply-loader)   ![npm](https://img.shields.io/npm/dm/threejs-ply-loader)


# Three.js PLY file format loader to use with Node.js

## Description
Node.js wrapper for [three.js][THREEJS-github-link] PLYLoader (currently three.js v0.136.0).

Node.js wrapper for [three.js][THREEJS-github-link] PLYLoader (currently three.js v0.137.0).

Original PLYLoader source code can be found [here][PLYLoader-source-link].

Expand Down Expand Up @@ -41,7 +41,6 @@ const THREE = require("three");
})();
```


## Example

An example is present in the examples folder. It will load a PLY file model and output its rendering to a PNG file. It can be run from a shell:
Expand All @@ -53,8 +52,8 @@ npm run example:cube-to-png

The output image is going to located in `examples/temp/vertex-colored-cube.png`


## Tests

They can be run from a shell:

```bash
Expand All @@ -63,9 +62,10 @@ npm test
```

## Development notes

Developed with Node v16.13.2

[THREEJS-github-link]: https://github.com/mrdoob/three.js
[PLYLoader-source-link]: https://github.com/mrdoob/three.js/blob/r136/examples/js/loaders/PLYLoader.js
[PLYLoader-source-link]: https://github.com/mrdoob/three.js/blob/r137/examples/js/loaders/PLYLoader.js
[javascript-module-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
[dynamic-import-url]: https://v8.dev/features/dynamic-import#dynamic
Loading

0 comments on commit f90fa7b

Please sign in to comment.