Skip to content

Commit

Permalink
Update CHANGES
Browse files Browse the repository at this point in the history
Also ran sortRequires.
  • Loading branch information
mramato committed Oct 26, 2015
1 parent c2649d8 commit 595bb4e
Show file tree
Hide file tree
Showing 13 changed files with 56 additions and 55 deletions.
13 changes: 7 additions & 6 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@ Change Log
* The following options to `Camera.setView` have been deprecated and will be removed in 1.17:
* `position`: use `destination` instead.
* `positionCartographic`: convert to a `Cartesian3` and use `destination` instead.
* `heading`, `pitch` and `roll`: use `orientation.heading/pitch/roll` instead.
* `heading`, `pitch` and `roll`: use `orientation.heading/pitch/roll` instead.
* Decreased GPU memory usage in `BillboardCollection` and `LabelCollection` by using the WebGL ANGLE_instanced_arrays extension.
* Added CZML examples to Sandcastle. See the new CZML tab.
* Fixed token issue in `ArcGisMapServerImageryProvider`.
* `ImageryLayerFeatureInfo` now has an `imageryLayer` property, indicating the layer that contains the feature.
* Added `BoxOutlineGeometry.fromAxisAlignedBoundingBox` and `BoxGeometry.fromAxisAlignedBoundingBox` functions.
* Switched to [gulp](http://gulpjs.com/) for all build tasks. `Java` and `ant` are no longer required to develop Cesium. [#3106](https://github.com/AnalyticalGraphicsInc/cesium/pull/3106)
* The WebGL setting of `failIfMajorPerformanceCaveat` now defaults to `false`, which is the official WebGL default. This improves compatibility with out-of-date drivers and remote desktop sessions. Cesium will run slower in these cases instead of simply failing to load.
* Changed `Camera.setView` to take the same parameter options as `Camera.flyTo`. `options.destination` takes a rectangle, `options.orientation` works with heading/pitch/roll or direction/up, and `options.endTransform` was added.
* Fixed the issue where the camera inertia takes too long to finish causing the camera move events to fire after it appears to. [2839](https://github.com/AnalyticalGraphicsInc/cesium/issues/2839)
* Updated `requirejs` from 2.1.9 to 2.1.20.
* Updated `almond` from 0.2.6 to 0.3.1.
* The WebGL setting of `failIfMajorPerformanceCaveat` now defaults to `false`, which is the official WebGL default. This improves compatibility with out-of-date drivers and remote desktop sessions. Cesium will run slower in these cases instead of simply failing to load. [#3108](https://github.com/AnalyticalGraphicsInc/cesium/pull/3108)
* Changed `Camera.setView` to take the same parameter options as `Camera.flyTo`. `options.destination` takes a rectangle, `options.orientation` works with heading/pitch/roll or direction/up, and `options.endTransform` was added. [#3100](https://github.com/AnalyticalGraphicsInc/cesium/pull/3100)
* Fixed the issue where the camera inertia takes too long to finish causing the camera move events to fire after it appears to. [#2839](https://github.com/AnalyticalGraphicsInc/cesium/issues/2839)
* Make KML invalid coordinate processing match Google Earth behavior. (#3124)[https://github.com/AnalyticalGraphicsInc/cesium/pull/3124]
* Updated `requirejs` from 2.1.9 to 2.1.20. [#3107](https://github.com/AnalyticalGraphicsInc/cesium/pull/3107)
* Updated `almond` from 0.2.6 to 0.3.1. [#3107](https://github.com/AnalyticalGraphicsInc/cesium/pull/3107)

### 1.14 - 2015-10-01

Expand Down
34 changes: 17 additions & 17 deletions Source/Core/loadJsonp.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
/*global define*/
define([
'../ThirdParty/Uri',
'../ThirdParty/when',
'./combine',
'./defaultValue',
'./defined',
'./DeveloperError',
'./objectToQuery',
'./queryToObject'
], function(
Uri,
when,
combine,
defaultValue,
defined,
DeveloperError,
objectToQuery,
queryToObject) {
'../ThirdParty/Uri',
'../ThirdParty/when',
'./combine',
'./defaultValue',
'./defined',
'./DeveloperError',
'./objectToQuery',
'./queryToObject'
], function(
Uri,
when,
combine,
defaultValue,
defined,
DeveloperError,
objectToQuery,
queryToObject) {
"use strict";

/**
Expand Down
4 changes: 2 additions & 2 deletions Source/DataSources/EntityView.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ define([
'../Core/defineProperties',
'../Core/DeveloperError',
'../Core/Ellipsoid',
'../Core/HeadingPitchRange',
'../Core/JulianDate',
'../Core/Math',
'../Core/Matrix3',
'../Core/Matrix4',
'../Core/Transforms',
'../Core/HeadingPitchRange',
'../Scene/SceneMode'
], function(
BoundingSphere,
Expand All @@ -24,12 +24,12 @@ define([
defineProperties,
DeveloperError,
Ellipsoid,
HeadingPitchRange,
JulianDate,
CesiumMath,
Matrix3,
Matrix4,
Transforms,
HeadingPitchRange,
SceneMode) {
"use strict";

Expand Down
4 changes: 2 additions & 2 deletions Source/Scene/ArcGisMapServerImageryProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ define([
'../Core/Event',
'../Core/GeographicProjection',
'../Core/GeographicTilingScheme',
'../Core/loadJsonp',
'../Core/loadJson',
'../Core/loadJsonp',
'../Core/Math',
'../Core/Rectangle',
'../Core/TileProviderError',
Expand All @@ -34,8 +34,8 @@ define([
Event,
GeographicProjection,
GeographicTilingScheme,
loadJsonp,
loadJson,
loadJsonp,
CesiumMath,
Rectangle,
TileProviderError,
Expand Down
8 changes: 4 additions & 4 deletions Source/Scene/Camera.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ define([
'../Core/Cartesian4',
'../Core/Cartographic',
'../Core/defaultValue',
'../Core/deprecationWarning',
'../Core/defined',
'../Core/defineProperties',
'../Core/deprecationWarning',
'../Core/DeveloperError',
'../Core/EasingFunction',
'../Core/Ellipsoid',
'../Core/EllipsoidGeodesic',
'../Core/Event',
'../Core/HeadingPitchRange',
'../Core/IntersectionTests',
'../Core/Math',
'../Core/Matrix3',
Expand All @@ -22,7 +23,6 @@ define([
'../Core/Rectangle',
'../Core/Transforms',
'./CameraFlightPath',
'../Core/HeadingPitchRange',
'./PerspectiveFrustum',
'./SceneMode'
], function(
Expand All @@ -31,14 +31,15 @@ define([
Cartesian4,
Cartographic,
defaultValue,
deprecationWarning,
defined,
defineProperties,
deprecationWarning,
DeveloperError,
EasingFunction,
Ellipsoid,
EllipsoidGeodesic,
Event,
HeadingPitchRange,
IntersectionTests,
CesiumMath,
Matrix3,
Expand All @@ -48,7 +49,6 @@ define([
Rectangle,
Transforms,
CameraFlightPath,
HeadingPitchRange,
PerspectiveFrustum,
SceneMode) {
"use strict";
Expand Down
8 changes: 4 additions & 4 deletions Source/Scene/HeadingPitchRange.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*global define*/
define([
'../Core/HeadingPitchRange',
'../Core/deprecationWarning'
'../Core/deprecationWarning',
'../Core/HeadingPitchRange'
], function(
CoreHeadingPitchRange,
deprecationWarning) {
deprecationWarning,
CoreHeadingPitchRange) {
"use strict";

/**
Expand Down
6 changes: 3 additions & 3 deletions Specs/Core/HeadingPitchRangeSpec.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*global defineSuite*/
defineSuite([
'Core/HeadingPitchRange'
], function(
HeadingPitchRange) {
'Core/HeadingPitchRange'
], function(
HeadingPitchRange) {
"use strict";
/*global jasmine,describe,xdescribe,it,xit,expect,beforeEach,afterEach,beforeAll,afterAll,spyOn*/

Expand Down
14 changes: 7 additions & 7 deletions Specs/Core/loadJsonpSpec.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*global defineSuite*/
defineSuite([
'Core/loadJsonp',
'Core/DefaultProxy',
'Core/RequestErrorEvent'
], function(
loadJsonp,
DefaultProxy,
RequestErrorEvent) {
'Core/loadJsonp',
'Core/DefaultProxy',
'Core/RequestErrorEvent'
], function(
loadJsonp,
DefaultProxy,
RequestErrorEvent) {
"use strict";
/*global jasmine,describe,xdescribe,it,xit,expect,beforeEach,afterEach,beforeAll,afterAll,spyOn*/

Expand Down
4 changes: 2 additions & 2 deletions Specs/Scene/ArcGisMapServerImageryProviderSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ defineSuite([
'Core/defined',
'Core/GeographicProjection',
'Core/GeographicTilingScheme',
'Core/loadJsonp',
'Core/loadImage',
'Core/loadJsonp',
'Core/loadWithXhr',
'Core/queryToObject',
'Core/Rectangle',
Expand All @@ -32,8 +32,8 @@ defineSuite([
defined,
GeographicProjection,
GeographicTilingScheme,
loadJsonp,
loadImage,
loadJsonp,
loadWithXhr,
queryToObject,
Rectangle,
Expand Down
4 changes: 2 additions & 2 deletions Specs/Scene/BingMapsImageryProviderSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ defineSuite([
'Scene/BingMapsImageryProvider',
'Core/DefaultProxy',
'Core/defined',
'Core/loadJsonp',
'Core/loadImage',
'Core/loadJsonp',
'Core/loadWithXhr',
'Core/WebMercatorTilingScheme',
'Scene/BingMapsStyle',
Expand All @@ -18,8 +18,8 @@ defineSuite([
BingMapsImageryProvider,
DefaultProxy,
defined,
loadJsonp,
loadImage,
loadJsonp,
loadWithXhr,
WebMercatorTilingScheme,
BingMapsStyle,
Expand Down
4 changes: 2 additions & 2 deletions Specs/Scene/CameraSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ defineSuite([
'Core/defaultValue',
'Core/Ellipsoid',
'Core/GeographicProjection',
'Core/HeadingPitchRange',
'Core/Math',
'Core/Matrix3',
'Core/Matrix4',
'Core/Rectangle',
'Core/Transforms',
'Core/WebMercatorProjection',
'Scene/CameraFlightPath',
'Core/HeadingPitchRange',
'Scene/OrthographicFrustum',
'Scene/PerspectiveFrustum',
'Scene/SceneMode',
Expand All @@ -31,14 +31,14 @@ defineSuite([
defaultValue,
Ellipsoid,
GeographicProjection,
HeadingPitchRange,
CesiumMath,
Matrix3,
Matrix4,
Rectangle,
Transforms,
WebMercatorProjection,
CameraFlightPath,
HeadingPitchRange,
OrthographicFrustum,
PerspectiveFrustum,
SceneMode,
Expand Down
4 changes: 2 additions & 2 deletions Specs/Scene/ImageryLayerSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
defineSuite([
'Scene/ImageryLayer',
'Core/EllipsoidTerrainProvider',
'Core/loadJsonp',
'Core/loadImage',
'Core/loadJsonp',
'Core/loadWithXhr',
'Core/Rectangle',
'Renderer/ComputeEngine',
Expand All @@ -24,8 +24,8 @@ defineSuite([
], function(
ImageryLayer,
EllipsoidTerrainProvider,
loadJsonp,
loadImage,
loadJsonp,
loadWithXhr,
Rectangle,
ComputeEngine,
Expand Down
4 changes: 2 additions & 2 deletions Specs/Scene/ModelSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ defineSuite([
'Core/Cartesian4',
'Core/defaultValue',
'Core/FeatureDetection',
'Core/HeadingPitchRange',
'Core/JulianDate',
'Core/loadArrayBuffer',
'Core/Math',
Expand All @@ -14,7 +15,6 @@ defineSuite([
'Core/Transforms',
'Renderer/RenderState',
'Renderer/WebGLConstants',
'Core/HeadingPitchRange',
'Scene/ModelAnimationLoop',
'Specs/createScene',
'Specs/pollToPromise',
Expand All @@ -26,6 +26,7 @@ defineSuite([
Cartesian4,
defaultValue,
FeatureDetection,
HeadingPitchRange,
JulianDate,
loadArrayBuffer,
CesiumMath,
Expand All @@ -34,7 +35,6 @@ defineSuite([
Transforms,
RenderState,
WebGLConstants,
HeadingPitchRange,
ModelAnimationLoop,
createScene,
pollToPromise,
Expand Down

0 comments on commit 595bb4e

Please sign in to comment.