Skip to content

Commit

Permalink
Bump version number, fix up CHANGES.
Browse files Browse the repository at this point in the history
  • Loading branch information
mramato committed Jan 6, 2014
1 parent fb016ee commit 7e6701f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,21 @@ Beta Releases
### b24 - 2014-01-06

* Breaking changes:
* Added `allowTextureFilterAnisotropic` (default: `true`) and `failIfMajorPerformanceCaveat` (default: `true`) properties to the `contextOption` property passed to `Viewer`, `CesiumWidget`, and `Scene` constructors and moved the existing properties to a new `webgl` sub-property. For example, code that looked like:
* Added `allowTextureFilterAnisotropic` (default: `true`) and `failIfMajorPerformanceCaveat` (default: `true`) properties to the `contextOptions` property passed to `Viewer`, `CesiumWidget`, and `Scene` constructors and moved the existing properties to a new `webgl` sub-property. For example, code that looked like:

var viewer = new Viewer('cesiumContainer', {
alpha : true
contextOptions : {
alpha : true
}
});

should now look like:

var viewer = new Viewer('cesiumContainer', {
webgl : {
alpha : true
contextOptions : {
webgl : {
alpha : true
}
}
});
* The read-only `Cartesian3` objects must now be cloned to camera properties instead of assigned. For example, code that looked like:
Expand All @@ -34,13 +38,13 @@ Beta Releases
* Removed prototype version of `BoundingSphere.transform`
* `Matrix4.multiplyByPoint` now returns a `Cartesian3` instead of a `Cartesian4`
* The minified, combined `Cesium.js` file now omits certain `DeveloperError` checks, to increase performance and reduce file size. When developing your application, we recommend using the unminified version locally for early error detection, then deploying the minified version to production.
* Fixed disabling `CentralBody.enableLighting`.
* Fixed `Geocoder` flights when following an object.
* The `Viewer` widget now clears `Geocoder` input when the user clicks the home button.
* The `Geocoder` input type has been changed to `search`, which improves usability (particularly on mobile devices). There were also some other minor styling improvements.
* Added `CentralBody.maximumScreenSpaceError`.
* Added `translateEventTypes`, `zoomEventTypes`, `rotateEventTypes`, `tiltEventTypes`, and `lookEventTypes` properties to `ScreenSpaceCameraController` to change the default mouse inputs.
* Added `Billboard.setPixelOffsetScaleByDistance`, `Label.setPixelOffsetScaleByDistance`, `DynamicBillboard.pixelOffsetScaleByDistance`, and `DynamicLabel.pixelOffsetScaleByDistance` to control minimum/maximum pixelOffset scaling based on camera distance.
* The `Viewer` widget now clears `Geocoder` input when the user clicks the home button.
* The `Geocoder` input type has been changed to `search`, which improves usability (particularly on mobile devices). There were also some other minor styling improvements.
* Fixed disabling `CentralBody.enableLighting`.
* Fixed geocoder flights when following an object.
* Added `BoundingSphere.transformsWithoutScale`
* Added `fromArray` function to `Matrix2`, `Matrix3` and `Matrix4`
* Added `Matrix4.multiplyTransformation`, `Matrix4.multiplyByPointAsVector`
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

<!-- Inputs -->
<!-- this version should be set to the upcoming version, so it can be tagged without requiring a bump first -->
<property name="version" value="b23" />
<property name="version" value="b24" />
<property name="sourceDirectory" location="Source" />
<property name="shadersDirectory" location="${sourceDirectory}/Shaders" />
<property name="examplesDirectory" location="Examples" />
Expand Down

0 comments on commit 7e6701f

Please sign in to comment.