Skip to content

Commit f42a8c0

Browse files
committed
Update CHANGES.md and version to 1.14.
1 parent 407f041 commit f42a8c0

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

CHANGES.md

+6-10
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,20 @@ Change Log
33

44
### 1.14 - 2015-10-01
55

6-
* Breaking changes
7-
* ...
8-
* Deprecated
9-
* ...
6+
* Fixed issues causing the terrain and sky to disappear when the camera is near the surface. [#2415](https://github.com/AnalyticalGraphicsInc/cesium/issues/2415) and [#2271](https://github.com/AnalyticalGraphicsInc/cesium/issues/2271)
7+
* Changed the `ScreenSpaceCameraController.minimumZoomDistance` default from `20.0` to `1.0`.
8+
* Added `Billboard.sizeInMeters`. `true` sets the billboard size to be measured in meters; otherwise, the size of the billboard is measured in pixels. Also added support for billboard `sizeInMeters` to entities and CZML.
9+
* Fixed a bug in `AssociativeArray` that would cause unbounded memory growth when adding and removing lots of items.
10+
* Provided a workaround for Safari 9 where WebGL constants can't be accessed through `WebGLRenderingContext`. Now constants are hard-coded in `WebGLConstants`. [#2989](https://github.com/AnalyticalGraphicsInc/cesium/issues/2989)
11+
* Added a workaround for Chrome 45, where the first character in a label with a small font size would not appear. [#3011](https://github.com/AnalyticalGraphicsInc/cesium/pull/3011)
1012
* Added `subdomains` option to the `WebMapTileServiceImageryProvider` constructor.
1113
* Added `subdomains` option to the `WebMapServiceImageryProvider` constructor.
1214
* Fix zooming in 2D when tracking an object. The zoom was based on location rather than the tracked object. [#2991](https://github.com/AnalyticalGraphicsInc/cesium/issues/2991)
1315
* Added `options.credit` parameter to `MapboxImageryProvider`.
14-
* Provided a workaround for Safari 9 where WebGL constants can't be accessed through `WebGLRenderingContext`. Now constants are hard-coded in `WebGLConstants`. [#2989](https://github.com/AnalyticalGraphicsInc/cesium/issues/2989)
1516
* Fixed an issue with drill picking at low frame rates that would cause a crash. [#3010](https://github.com/AnalyticalGraphicsInc/cesium/pull/3010)
1617
* Fixed a bug that prevented `setView` from working across all scene modes.
1718
* Fixed a bug that caused `camera.positionWC` to occasionally return the incorrect value.
18-
* Added a workaround for Chrome 45, where the first character in a label with a small font size would not appear. [#3011](https://github.com/AnalyticalGraphicsInc/cesium/pull/3011)
19-
* Fixed issues causing the terrain and sky to disappear when the camera is near the surface. [#2415](https://github.com/AnalyticalGraphicsInc/cesium/issues/2415) and [#2271](https://github.com/AnalyticalGraphicsInc/cesium/issues/2271)
20-
* Changed the `ScreenSpaceCameraController.minimumZoomDistance` default from `20.0` to `1.0`.
2119
* Used all the template urls defined in the CesiumTerrain provider.[#3038](https://github.com/AnalyticalGraphicsInc/cesium/pull/3038)
22-
* Added `Billboard.sizeInMeters`. `true` sets the billboard size to be measured in meters; otherwise, the size of the billboard is measured in pixels. Also added support for billboard `sizeInMeters` to entities and CZML.
23-
* Fixed a bug in `AssociativeArray` that would cause unbounded memory growth when adding and removing lots of items.
2420

2521
### 1.13 - 2015-09-01
2622

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112

113113
<!-- Inputs -->
114114
<!-- this version should be set to the upcoming version, so it can be tagged without requiring a bump first -->
115-
<property name="version" value="1.13" />
115+
<property name="version" value="1.14" />
116116
<property name="sourceDirectory" location="Source" />
117117
<property name="shadersDirectory" location="${sourceDirectory}/Shaders" />
118118
<property name="examplesDirectory" location="Examples" />

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cesium",
3-
"version": "1.13.0",
3+
"version": "1.14.0",
44
"description": "Cesium is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
55
"homepage": "http://cesiumjs.org",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)