| @@ -1,5 +1,23 @@ | |||
| # Change Log | |||
| ### 2.16.0 - 2022-08-14 | |||
| #### Breaking Changes 📣 | |||
| - Upgrade Cesium to version 1.96.0 | |||
| - Abandon the init function | |||
| - Modify Cesium introduction | |||
| #### Additions 🎉 | |||
| - Add transparent values for viewable field colors | |||
| #### Fixes 🔧 | |||
| - Optimize the parabola function to add an end point to the calculation result | |||
| - Optimize the use of name space module. | |||
| - Fix the problem that the framework cannot be used due to repeated use in CDN mode. | |||
| ### 2.15.0 - 2022-07-16 | |||
| #### Breaking Changes 📣 | |||
| @@ -1,5 +1,23 @@ | |||
| # Change Log | |||
| ### 2.16.0 - 2022-08-14 | |||
| #### Breaking Changes 📣 | |||
| - 升级 Cesium 到 1.96.0 版本 | |||
| - 舍弃init函数 | |||
| - 修改 Cesium 引入方式 | |||
| #### Additions 🎉 | |||
| - 添加可视域颜色的透明值 | |||
| #### Fixes 🔧 | |||
| - 优化 parabola 函数,计算结果添加结束点 | |||
| - 优化 name space 模块的使用方式 | |||
| - 修复 CDN 方式下,重复使用 use 导致框架无法使用的问题 | |||
| ### 2.15.0 - 2022-07-16 | |||
| #### Breaking Changes 📣 | |||
| @@ -37,7 +37,7 @@ | |||
| "build:mapv": "yarn run clean:mapv && webpack --config build/webpack.mapv.conf --mode production --env.production", | |||
| "dev:s3m": "yarn run clean:s3m && webpack --config build/webpack.s3m.conf --mode development", | |||
| "build:s3m": "yarn run clean:s3m && webpack --config build/webpack.s3m.conf --mode production --env.production", | |||
| "clean": "yarn run clean:base && yarn run clean:core && yarn run clean:chart && yarn run clean:mapv && yarn run clean:sdk", | |||
| "clean": "yarn run clean:base && yarn run clean:core && yarn run clean:chart && yarn run clean:mapv && yarn run clean:s3m && yarn run clean:sdk", | |||
| "clean:base": "rimraf packages/base/dist", | |||
| "clean:core": "rimraf packages/core/dist", | |||
| "clean:chart": "rimraf packages/chart/dist", | |||