Skip to content

Commit 38ed9aa

Browse files
committed
Bump version
1 parent 5da5f78 commit 38ed9aa

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
### 0.1.5 (July 1, 2025)
2+
3+
Visual quality improvements and [SOGS](https://blog.playcanvas.com/playcanvas-adopts-sogs-for-20x-3dgs-compression/) support
4+
5+
### Enhancements
6+
7+
- Add support for [SOGS](https://blog.playcanvas.com/playcanvas-adopts-sogs-for-20x-3dgs-compression/) compression format 3D Gaussian Splatting (#73) (@asundqui)
8+
- Change splat shapes by using any RGBA texture to compute the Gaussian falloff (#79) (@asundqui)
9+
- Use RenderTarget properties to reduce manual render state tracking (#80) (@mrxz)
10+
11+
### Bug fixes
12+
13+
- Visual quality, Fix .ksplat decoding (fix #66) (@asundqui)
14+
- Visual quality, Fix Spherical Harmonics not included in SPZ transcoding (fix #66) (#83) (@asundqui)
15+
- Visual quality, Fix incorrect calculation of renderer size. Especially improves rendering in high DPI displays (#71) (@mrxz)
16+
- Fix support of compressed .ply files exported from SuperSplat. Newer versions include min/max_r/g/b properties in the header that were not parsed (#82) (@asundqui)
17+
118
### 0.1.4 (June 24, 2025)
219

320
### Enhancements

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Copy the following code into an `index.html` file.
5353
{
5454
"imports": {
5555
"three": "https://cdnjs.cloudflare.com/ajax/libs/three.js/0.174.0/three.module.js",
56-
"@sparkjsdev/spark": "https://sparkjs.dev/releases/spark/0.1.4/spark.module.js"
56+
"@sparkjsdev/spark": "https://sparkjs.dev/releases/spark/0.1.5/spark.module.js"
5757
}
5858
}
5959
</script>

docs/docs/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Copy and paste code below in an `index.html` file or remix in the [Web Playgroun
1010
{
1111
"imports": {
1212
"three": "https://cdnjs.cloudflare.com/ajax/libs/three.js/0.174.0/three.module.js",
13-
"@sparkjsdev/spark": "https://sparkjs.dev/releases/spark/0.1.4/spark.module.js"
13+
"@sparkjsdev/spark": "https://sparkjs.dev/releases/spark/0.1.5/spark.module.js"
1414
}
1515
}
1616
</script>
@@ -36,6 +36,7 @@ Copy and paste code below in an `index.html` file or remix in the [Web Playgroun
3636
});
3737
</script>
3838
```
39+
3940
## Install with NPM
4041

4142
```shell

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sparkjsdev/spark",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "An advanced 3D Gaussian Splatting renderer for THREE.js",
55
"homepage": "https://sparkjs.dev/",
66
"type": "module",

0 commit comments

Comments
 (0)