Skip to content

Commit

Permalink
Merge pull request #4977 from klingerj/fuchsia-color-spelling
Browse files Browse the repository at this point in the history
Fixed spelling of Color.FUCHSIA
  • Loading branch information
emackey committed Feb 9, 2017
2 parents f8335d0 + 95d9b17 commit 33b6bf0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Change Log
==========

### 1.31 - 2017-03-01
* Breaking changes
* Corrected spelling of `Color.FUCHSIA` from `Color.FUSCHIA`
* Added support to `DebugCameraPrimitive` to draw multifrustum planes. The attribute `debugShowFrustumPlanes` of `Scene` and `frustumPlanes` of `CesiumInspector` toggles this. `FrameState` has been augmented to include `frustumSplits` which is a `Number[]` of the near/far planes of the camera frustums.
* Enable rendering `GroundPrimitives` on hardware without the `EXT_frag_depth` extension; however, this could cause artifacts for certain viewing angles.
* Added compressed texture support. [#4758](https://github.com/AnalyticalGraphicsInc/cesium/pull/4758)
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu
* [Aristeidis Bampakos](https://github.com/bampakoa)
* [Jane Minghui Guo](https://github.com/Jane-Of-Art)
* [Prasanna Natarajan](https://github.com/PrasannaNatarajan)
* [Joseph Klinger](https://github.com/klingerj)
2 changes: 1 addition & 1 deletion Source/Core/Color.js
Original file line number Diff line number Diff line change
Expand Up @@ -1374,7 +1374,7 @@ define([
* @constant
* @type {Color}
*/
Color.FUSCHIA = freezeObject(Color.fromCssColorString('#FF00FF'));
Color.FUCHSIA = freezeObject(Color.fromCssColorString('#FF00FF'));

/**
* An immutable Color instance initialized to CSS color #DCDCDC
Expand Down

0 comments on commit 33b6bf0

Please sign in to comment.