@panoramax/web-viewer 3.0.2-develop-a8ea8e60-develop-3c6e8805 → 3.1.0-develop-537ffe27
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 -1
- package/build/index.css +1 -1
- package/build/index.js +3 -3
- package/build/index.js.map +1 -1
- package/docs/05_Compatibility.md +14 -0
- package/package.json +1 -1
- package/src/utils/I18n.js +13 -6
- package/src/utils/Map.js +42 -1
- package/tests/components/Map.test.js +2 -1
- package/tests/utils/I18n.test.js +84 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### Added
|
|
12
|
+
- Streets background supports translations (if offered in vector tiles).
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Better rendering of cities names in streets background (for default vector tiles).
|
|
16
|
+
|
|
17
|
+
## [3.1.0] - 2024-10-03
|
|
18
|
+
|
|
11
19
|
⚠️ Library has been renamed on NPM into `@panoramax/web-viewer`, you are invited to change your dependencies to keep track of new updates. Also, default import `GeoVisio` has been renamed into `Panoramax`, so you have to update your code as well.
|
|
12
20
|
|
|
13
21
|
### Added
|
|
@@ -402,7 +410,8 @@ Empty release to follow the API's minor version
|
|
|
402
410
|
- [A Photo Sphere Viewer under Chrome issue](https://github.com/mistic100/Photo-Sphere-Viewer/issues/937) was making classic pictures not visible
|
|
403
411
|
|
|
404
412
|
|
|
405
|
-
[Unreleased]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.0
|
|
413
|
+
[Unreleased]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.1.0...develop
|
|
414
|
+
[3.1.0]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.0.2...3.1.0
|
|
406
415
|
[3.0.2]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.0.1...3.0.2
|
|
407
416
|
[3.0.1]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.0.0...3.0.1
|
|
408
417
|
[3.0.0]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/2.5.1...3.0.0
|