@jscad/regl-renderer 3.0.3-alpha.0 → 3.0.5-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/README.md +4 -4
- package/dist/jscad-regl-renderer.es.js +3 -13
- package/dist/jscad-regl-renderer.min.js +3 -13
- package/package.json +12 -13
- package/rollup.config.js +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.0.5-alpha.0](/compare/@jscad/regl-renderer@3.0.4-alpha.0...@jscad/regl-renderer@3.0.5-alpha.0) (2026-05-16)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **modeling:** various fixes, improvements, and style changes 283087e
|
|
11
|
+
|
|
12
|
+
## [3.0.4-alpha.0](/compare/@jscad/regl-renderer@3.0.3-alpha.0...@jscad/regl-renderer@3.0.4-alpha.0) (2026-04-12)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @jscad/regl-renderer
|
|
15
|
+
|
|
6
16
|
## [3.0.3-alpha.0](https://github.com/jscad/OpenJSCAD/compare/@jscad/regl-renderer@3.0.2-alpha.0...@jscad/regl-renderer@3.0.3-alpha.0) (2026-01-18)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @jscad/regl-renderer
|
package/README.md
CHANGED
|
@@ -49,10 +49,10 @@ Install the following packages manually.
|
|
|
49
49
|
NOTE: There are issues with continous integration testing, so 'gl' is not installed initially.
|
|
50
50
|
|
|
51
51
|
```
|
|
52
|
-
|
|
52
|
+
npm install gl
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
Try the demo by running ```
|
|
55
|
+
Try the demo by running ```npm run demo-cli```.
|
|
56
56
|
|
|
57
57
|
If all goes well you should end up with an image (test.png) that renders the demo design.
|
|
58
58
|
|
|
@@ -67,7 +67,7 @@ NOTE: 'demo.es.html' cannot be opened from the local file system. This is due to
|
|
|
67
67
|
|
|
68
68
|
### Developers
|
|
69
69
|
|
|
70
|
-
Run the development web server using ```
|
|
70
|
+
Run the development web server using ```npm run dev```, then open the URL shown using any browser.
|
|
71
71
|
From the index of files, select 'demo.es.html'.
|
|
72
72
|
|
|
73
73
|
If all goes well you should end up with a web page that displays the demo design (a few solids).
|
|
@@ -75,7 +75,7 @@ The standard mouse controls are also available for rotation, etc.
|
|
|
75
75
|
|
|
76
76
|
After making changes, just reload the web page.
|
|
77
77
|
|
|
78
|
-
If making changes, please make sure that all tests must pass. Run ```
|
|
78
|
+
If making changes, please make sure that all tests must pass. Run ```npm test```
|
|
79
79
|
|
|
80
80
|
## License
|
|
81
81
|
|