@shapediver/viewer.data-engine.gltf-converter 2.6.5 → 2.7.1
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/LICENSE +2 -2
- package/dist/GLTFConverter.js +2 -2
- package/package.json +7 -7
- package/src/GLTFConverter.ts +2 -2
package/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Required Notice: Copyright
|
|
1
|
+
Required Notice: Copyright 2023 ShapeDiver GmbH (https://www.shapediver.com)
|
|
2
2
|
|
|
3
3
|
https://polyformproject.org/licenses/noncommercial/1.0.0
|
|
4
4
|
|
|
@@ -18,7 +18,7 @@ Notices
|
|
|
18
18
|
|
|
19
19
|
You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms or the URL for them above, as well as copies of any plain-text lines beginning with Required Notice: that the licensor provided with the software. For example:
|
|
20
20
|
|
|
21
|
-
Required Notice: Copyright
|
|
21
|
+
Required Notice: Copyright 2023 ShapeDiver GmbH (https://www.shapediver.com)
|
|
22
22
|
|
|
23
23
|
Changes and New Works License
|
|
24
24
|
|
package/dist/GLTFConverter.js
CHANGED
|
@@ -46,7 +46,7 @@ let GLTFConverter = class GLTFConverter {
|
|
|
46
46
|
this._byteOffset = 0;
|
|
47
47
|
this._content = {
|
|
48
48
|
asset: {
|
|
49
|
-
copyright: '
|
|
49
|
+
copyright: '2023 (c) ShapeDiver',
|
|
50
50
|
generator: 'ShapeDiverViewer@' + viewer_shared_build_data_1.build_data.build_version,
|
|
51
51
|
version: '2.0',
|
|
52
52
|
extensions: {}
|
|
@@ -656,7 +656,7 @@ let GLTFConverter = class GLTFConverter {
|
|
|
656
656
|
this._byteOffset = 0;
|
|
657
657
|
this._content = {
|
|
658
658
|
asset: {
|
|
659
|
-
copyright: '
|
|
659
|
+
copyright: '2023 (c) ShapeDiver',
|
|
660
660
|
generator: 'ShapeDiverViewer@' + viewer_shared_build_data_1.build_data.build_version,
|
|
661
661
|
version: '2.0',
|
|
662
662
|
extensions: {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shapediver/viewer.data-engine.gltf-converter",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Michael Oppitz <michael@shapediver.com>",
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"testEnvironment": "node"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@shapediver/viewer.data-engine.shared-types": "2.
|
|
43
|
-
"@shapediver/viewer.shared.build-data": "2.
|
|
44
|
-
"@shapediver/viewer.shared.node-tree": "2.
|
|
45
|
-
"@shapediver/viewer.shared.services": "2.
|
|
46
|
-
"@shapediver/viewer.shared.types": "2.
|
|
42
|
+
"@shapediver/viewer.data-engine.shared-types": "2.7.1",
|
|
43
|
+
"@shapediver/viewer.shared.build-data": "2.7.1",
|
|
44
|
+
"@shapediver/viewer.shared.node-tree": "2.7.1",
|
|
45
|
+
"@shapediver/viewer.shared.services": "2.7.1",
|
|
46
|
+
"@shapediver/viewer.shared.types": "2.7.1",
|
|
47
47
|
"@shapediver/viewer.utils.texture-unifier": "1.0.1",
|
|
48
48
|
"axios": "^0.21.1",
|
|
49
49
|
"gl-matrix": "3.3.0",
|
|
50
50
|
"tsyringe": "^4.5.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "be55cee0da7e6c40c1751770799c4fa40a0d942f"
|
|
53
53
|
}
|
package/src/GLTFConverter.ts
CHANGED
|
@@ -63,7 +63,7 @@ export class GLTFConverter {
|
|
|
63
63
|
private _byteOffset: number = 0;
|
|
64
64
|
private _content: IGLTF_v2 = {
|
|
65
65
|
asset: {
|
|
66
|
-
copyright: '
|
|
66
|
+
copyright: '2023 (c) ShapeDiver',
|
|
67
67
|
generator: 'ShapeDiverViewer@' + build_data.build_version,
|
|
68
68
|
version: '2.0',
|
|
69
69
|
extensions: {}
|
|
@@ -749,7 +749,7 @@ export class GLTFConverter {
|
|
|
749
749
|
this._byteOffset = 0;
|
|
750
750
|
this._content = {
|
|
751
751
|
asset: {
|
|
752
|
-
copyright: '
|
|
752
|
+
copyright: '2023 (c) ShapeDiver',
|
|
753
753
|
generator: 'ShapeDiverViewer@' + build_data.build_version,
|
|
754
754
|
version: '2.0',
|
|
755
755
|
extensions: {}
|