zincjs 1.0.17 → 1.2.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 +19 -1
- package/build/zinc.frontend.js +1 -1
- package/build/zinc.js +39 -20
- package/build/zinc.js.map +1 -1
- package/package.json +1 -1
- package/src/controls.js +3 -3
- package/src/primitives/glyphset.js +2 -1
- package/src/primitives/marker.js +15 -0
- package/src/primitives/textureSlides.js +2 -1
- package/src/primitives/zincObject.js +59 -10
- package/src/region.js +41 -16
- package/src/scene.js +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
9
9
|
|
|
10
|
-
## [v1.0
|
|
10
|
+
## [v1.2.0](https://github.com/alan-wu/ZincJS/compare/v1.1.0...v1.2.0)
|
|
11
|
+
|
|
12
|
+
### Merged
|
|
13
|
+
|
|
14
|
+
- Add UUID to region, scene and primitives [`#47`](https://github.com/alan-wu/ZincJS/pull/47)
|
|
15
|
+
|
|
16
|
+
### Commits
|
|
17
|
+
|
|
18
|
+
- Add a way to enable marker for specific zinc objects, [`7b717b0`](https://github.com/alan-wu/ZincJS/commit/7b717b074855f36e154b66a05ec7fbab87752162)
|
|
19
|
+
|
|
20
|
+
## [v1.1.0](https://github.com/alan-wu/ZincJS/compare/v1.0.17...v1.1.0) - 2023-08-30
|
|
21
|
+
|
|
22
|
+
### Commits
|
|
23
|
+
|
|
24
|
+
- Fix bugs found in multiple places. [`304e479`](https://github.com/alan-wu/ZincJS/commit/304e4799bbb3bb781fbeee43d69bb338312b9136)
|
|
25
|
+
- Add uuid to primitives, regions and scenes. [`7720c36`](https://github.com/alan-wu/ZincJS/commit/7720c363eded632e4660f551abe2637e903e8c8b)
|
|
26
|
+
- Clean up markers. [`a6fd701`](https://github.com/alan-wu/ZincJS/commit/a6fd7018799ad183a059cea23b83965373c02520)
|
|
27
|
+
|
|
28
|
+
## [v1.0.17](https://github.com/alan-wu/ZincJS/compare/v1.0.16...v1.0.17) - 2023-08-10
|
|
11
29
|
|
|
12
30
|
### Merged
|
|
13
31
|
|