@babylonjs/viewer 7.39.1 → 7.39.2

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/readme.md +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/viewer",
3
- "version": "7.39.1",
3
+ "version": "7.39.2",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "types": "index.d.ts",
@@ -18,10 +18,10 @@
18
18
  "postcompile": "build-tools -c add-js-to-es6"
19
19
  },
20
20
  "dependencies": {
21
- "@babylonjs/core": "^7.39.1",
22
- "@babylonjs/loaders": "^7.39.1",
23
- "babylonjs-gltf2interface": "^7.39.1",
24
- "babylonjs-viewer-assets": "^7.39.1",
21
+ "@babylonjs/core": "^7.39.2",
22
+ "@babylonjs/loaders": "^7.39.2",
23
+ "babylonjs-gltf2interface": "^7.39.2",
24
+ "babylonjs-viewer-assets": "^7.39.2",
25
25
  "deepmerge": "~4.2.2",
26
26
  "handlebars": "~4.7.7",
27
27
  "pepjs": "~0.5.3",
package/readme.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # BabylonJS Viewer
2
2
 
3
+ ⚠️ **BabylonJS Viewer V1 is being deprecated.**
4
+
5
+ > At the end of 2024, the Babylon Viewer V1 will be deprecated in favor of the new [Babylon Viewer V2](https://doc.babylonjs.com/features/featuresDeepDive/babylonViewer). To use the Babylon Viewer V2, use the `preview` tag or append `-alpha` to the version when installing this package, e.g. `npm install @babylonjs/viewer@preview`. If you have any questions or concerns about this change, please get in touch with us on the Babylon [forum](https://forum.babylonjs.com/c/questions)!
6
+
7
+
3
8
  This project is a 3d model viewer using babylonjs.
4
9
  Online docs: https://doc.babylonjs.com/features/featuresDeepDive/babylonViewer/viewerExamples
5
10