Skip to content

Commit 2b6f147

Browse files
committed
Bump version to 1.13
Also clean up CHANGES.
1 parent b738f05 commit 2b6f147

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGES.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Change Log
66
* Breaking changes
77
* Remove deprecated `AxisAlignedBoundingBox.intersect` and `BoundingSphere.intersect`. Use `BoundingSphere.intersectPlane` instead.
88
* Remove deprecated `getFeatureInfoAsGeoJson` and `getFeatureInfoAsXml` constructor parameters from `WebMapServiceImageryProvider`.
9-
* Added support for `GroundPrimitive` which works much like `Primitive` but it drapes the geometry over terrain. Valid geometries that can be draped on terrain are `CircleGeometry`, `CorridorGeometry`, `EllipseGeometry`, `PolygonGeometry`, and `RectangleGeometry`. Because of the cutting edge nature of this feature in WebGL, it requires the [EXT_frag_depth](https://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/) extension, which is currently only supported in Chrome, Firefox, and Edge. Apple support is expected in iOS 9 and MacOS Safari 9. Android support varies by hardware and IE11 will most likely never support it. You can use [webglreport.com](http://webglreport.com) to verify support for your hardware Finally, this feature is currently only supported in Primitives and can not be used via the Entity API yet.
10-
* Added `Scene.groundPrimitives`, which is a primitive collection like `Scene.primitives`, but for `GroundPrimitive`s. Use for correct z-ordering. For example:
9+
* Added support for `GroundPrimitive` which works much like `Primitive` but drapes geometry over terrain. Valid geometries that can be draped on terrain are `CircleGeometry`, `CorridorGeometry`, `EllipseGeometry`, `PolygonGeometry`, and `RectangleGeometry`. Because of the cutting edge nature of this feature in WebGL, it requires the [EXT_frag_depth](https://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/) extension, which is currently only supported in Chrome, Firefox, and Edge. Apple support is expected in iOS 9 and MacOS Safari 9. Android support varies by hardware and IE11 will most likely never support it. You can use [webglreport.com](http://webglreport.com) to verify support for your hardware. Finally, this feature is currently only supported in Primitives and not yet available via the Entity API. [#2865](https://github.com/AnalyticalGraphicsInc/cesium/pull/2865)
10+
* Added `Scene.groundPrimitives`, which is a primitive collection like `Scene.primitives`, but for `GroundPrimitive` instances. It allows custom z-ordering. [#2960](https://github.com/AnalyticalGraphicsInc/cesium/pull/2960) For example:
1111

1212
// draws the ellipse on top of the rectangle
1313
var ellipse = scene.groundPrimitives.add(new Cesium.GroundPrimitive({...}));
@@ -16,14 +16,14 @@ Change Log
1616
// move the rectangle to draw on top of the ellipse
1717
scene.groundPrimitives.raise(rectangle);
1818

19-
* Fix issue where extruded `PolygonGeometry` was always extruding to the ellipsoid surface instead of specified height.
20-
* Fix an issue where non-feature nodes prevented KML documents from loading. [#2945](https://github.com/AnalyticalGraphicsInc/cesium/pull/2945).
21-
* Added `reverseZ` tag to `UrlTemplateImageryProvider`.
22-
* Fix issue where `JulianDate` would not parse certain dates properly. [#405](https://github.com/AnalyticalGraphicsInc/cesium/issues/405)
23-
* Removed [es5-shim](https://github.com/kriskowal/es5-shim), which is no longer required by the unit tests. [#2933](https://github.com/AnalyticalGraphicsInc/cesium/pull/2945)
19+
* Added `reverseZ` tag to `UrlTemplateImageryProvider`. [#2961](https://github.com/AnalyticalGraphicsInc/cesium/pull/2961)
2420
* Added `BoundingSphere.isOccluded` and `OrientedBoundingBox.isOccluded` to determine if the volumes are occluded by an `Occluder`.
2521
* Added `distanceSquaredTo` and `computePlaneDistances` functions to `OrientedBoundingBox`.
26-
* Fixed a GLSL precision issue that enables Cesium to now support Mali-400MP GPUs and other mobile GPUs where GLSL shaders did not compile. [#2984](https://github.com/AnalyticalGraphicsInc/cesium/pull/2984)
22+
* Fixed a GLSL precision issue that enables Cesium to support Mali-400MP GPUs and other mobile GPUs where GLSL shaders did not previously compile. [#2984](https://github.com/AnalyticalGraphicsInc/cesium/pull/2984)
23+
* Fixed an issue where extruded `PolygonGeometry` was always extruding to the ellipsoid surface instead of specified height. [#2923](https://github.com/AnalyticalGraphicsInc/cesium/pull/2923)
24+
* Fixed an issue where non-feature nodes prevented KML documents from loading. [#2945](https://github.com/AnalyticalGraphicsInc/cesium/pull/2945)
25+
* Fixed an issue where `JulianDate` would not parse certain dates properly. [#405](https://github.com/AnalyticalGraphicsInc/cesium/issues/405)
26+
* Removed [es5-shim](https://github.com/kriskowal/es5-shim), which is no longer being used. [#2933](https://github.com/AnalyticalGraphicsInc/cesium/pull/2945)
2727

2828
### 1.12 - 2015-08-03
2929

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.12" />
115+
<property name="version" value="1.13" />
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.12.0",
3+
"version": "1.13.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)