This repository was archived by the owner on Nov 26, 2024. It is now read-only.
File tree 8 files changed +12
-11
lines changed
8 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 6
6
7
7
##### Fixes :wrench:
8
8
9
- - Fixed tracked entity camera controls . [#11286 ](https://github.com/CesiumGS/cesium/issues/11286 )
9
+ - Fixed label background rendering . [#11293 ](https://github.com/CesiumGS/cesium/pull/11293 )
10
10
- Fixed color creation from CSS color string with modern "space-separated" syntax. [#11271](https://github.com/CesiumGS/cesium/pull/11271)
11
+ - Fixed tracked entity camera controls. [#11286](https://github.com/CesiumGS/cesium/issues/11286)
11
12
- Fixed a race condition when loading cut-out terrain. [#11296](https://github.com/CesiumGS/cesium/pull/11296)
12
13
- Fixed async behavior for custom terrain and imagery providers. [#11274](https://github.com/CesiumGS/cesium/issues/11274)
13
- - Fixed label background rendering. [#11293](https://github.com/CesiumGS/cesium/pull/11293)
14
14
15
15
### 1.105.2 - 2023-05-15
16
16
Original file line number Diff line number Diff line change 36
36
"license" : [
37
37
" Apache-2.0"
38
38
],
39
- "version" : " 3.0.2 " ,
39
+ "version" : " 3.0.3 " ,
40
40
"url" : " https://www.npmjs.com/package/dompurify" ,
41
41
"notes" : " dompurify is available as both MPL-2.0 OR Apache-2.0"
42
42
},
125
125
"license" : [
126
126
" MIT"
127
127
],
128
- "version" : " 0.18.1 " ,
128
+ "version" : " 0.19.0 " ,
129
129
"url" : " https://www.npmjs.com/package/meshoptimizer"
130
130
},
131
131
{
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cesium" ,
3
- "version" : " 1.105.2 " ,
3
+ "version" : " 1.106.0 " ,
4
4
"description" : " CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin." ,
5
5
"homepage" : " http://cesium.com/cesiumjs/" ,
6
6
"license" : " Apache-2.0" ,
51
51
" ./Specs/**/*"
52
52
],
53
53
"dependencies" : {
54
- "@cesium/engine" : " 2.4.0 " ,
54
+ "@cesium/engine" : " 2.4.1 " ,
55
55
"@cesium/widgets" : " 2.3.0"
56
56
},
57
57
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import defined from "./defined.js";
3
3
import Resource from "./Resource.js" ;
4
4
5
5
let defaultKeyCredit ;
6
- const defaultKey = "AIzaSyBESBYnp1EcqtlAcjMTJ65GjUsJtaCWVXA " ;
6
+ const defaultKey = "AIzaSyBqCv5lozjjhtIQ_pZuj2obyAL9bTJdY28 " ;
7
7
8
8
/**
9
9
* Default settings for accessing the Google Maps API.
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import Resource from "./Resource.js";
4
4
5
5
let defaultTokenCredit ;
6
6
const defaultAccessToken =
7
- "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwZWQ3OWFlZC1kOTg3LTRlZjctYTAyYy0xNjFmODE1MWE2NGUiLCJpZCI6MjU5LCJpYXQiOjE2ODI5NDYzODh9.DEH4GpqliH-xsDE7h-ZCICtHgnGu32wdSjt4hFqw7lU" ;
7
+ "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJmYmE2YWEzOS1lZDUyLTQ0YWMtOTlkNS0wN2VhZWI3NTc4MmEiLCJpZCI6MjU5LCJpYXQiOjE2ODU2MzQ0Njl9.AswCMxsN03WYwuZL-r183OZicN64Ks9aPExWhA3fuLY" ;
8
+
8
9
/**
9
10
* Default settings for accessing the Cesium ion API.
10
11
*
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Resource from "../Core/Resource.js";
4
4
5
5
let defaultTokenCredit ;
6
6
const defaultAccessToken =
7
- "AAPKd815e334cb774973b7245e23a67f4d08Js7A8e8xvfBpgnZIzp1jbL3FWJTmx7AKG8wa87OwDcWEu4CxQCNiydpPbGpALiTf " ;
7
+ "AAPKac82a6d80f1340a4aa9587f789d07e96a_Jj1a4fbA59cggYHArDizxxA2U4QDofLUm36VivpUsSRyK7O1JjRPwy916Y-7ld " ;
8
8
/**
9
9
* Default options for accessing the ArcGIS image tile service.
10
10
*
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cesium/engine" ,
3
- "version" : " 2.4.0 " ,
3
+ "version" : " 2.4.1 " ,
4
4
"description" : " CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin." ,
5
5
"keywords" : [
6
6
" 3D" ,
Original file line number Diff line number Diff line change 28
28
"node" : " >=14.0.0"
29
29
},
30
30
"dependencies" : {
31
- "@cesium/engine" : " 2.4.0 " ,
31
+ "@cesium/engine" : " 2.4.1 " ,
32
32
"nosleep.js" : " ^0.12.0"
33
33
},
34
34
"type" : " module" ,
You can’t perform that action at this time.
0 commit comments