Skip to content

Commit

Permalink
5.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
1chandu committed Dec 19, 2017
1 parent 9c40fa6 commit d1da161
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 13 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,16 @@ For Earlier Beta Releases see below

## Beta Releases

### deck.gl v4.2 Beta Releases
### deck.gl v5.0 Beta Releases

#### [5.0.0-beta.1] - Dec 18
- Improve perf of experimental SolidPolygonLayer (#1224)
- Fix polygon normals in meter offset mode (#1244)
- Remove deprecated API (#1240)
- Remove old Coordinate system props. (#1242)
- Add SolidPolygonLayer to experimental layers (#1233)
- Fix the normal direction of the hexagon layer and additional transform in the lighting module associated with it (#1039)
- Fix blending parameter (#1241)

#### [4.2.0-alpha.31] - Dec 14
- API Audit: remove initWebGLParameters and move pure-js example (#1235)
Expand Down
1 change: 0 additions & 1 deletion examples/experimental/multi-viewport-transitions/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ class Root extends Component {
height={viewportProps.height}
viewports={viewports}
layers={this._renderLayers()}
initWebGLParameters
>
<StaticMap
viewportId="3rd-person"
Expand Down
1 change: 0 additions & 1 deletion examples/experimental/multi-viewport/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ class Root extends Component {
height={viewportProps.height}
viewports={viewports}
layers={this._renderLayers()}
initWebGLParameters
>
<StaticMap
viewportId="3rd-person"
Expand Down
4 changes: 2 additions & 2 deletions examples/layer-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
},
"dependencies": {
"colorbrewer": "^1.0.0",
"deck.gl": ">=4.2.0-alpha.29",
"deck.gl": ">=5.0.0-beta.1",
"deck.gl-layers": ">=0.0.2",
"extrude-polyline": "^1.0.6",
"luma.gl": ">=4.1.0-beta.1",
"luma.gl": ">=5.0.0-beta.1",
"react": "^15.4.1",
"react-autobind": "^1.0.6",
"react-dom": "^15.4.1",
Expand Down
1 change: 0 additions & 1 deletion examples/layer-browser/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ class App extends PureComponent {
onLayerHover={this._onHover}
onLayerClick={this._onClick}

initWebGLParameters
useDevicePixels={useDevicePixels}
debug={false}
drawPickingColors={drawPickingColors}
Expand Down
1 change: 0 additions & 1 deletion examples/point-cloud-laz/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ class Example extends PureComponent {
viewport={glViewport}
layers={[this._renderLazPointCloudLayer()]}
onWebGLInitialized={this._onInitialized}
initWebGLParameters
/>
</OrbitController>
);
Expand Down
1 change: 0 additions & 1 deletion examples/point-cloud-ply/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ class Example extends PureComponent {
height={height}
viewport={glViewport}
layers={[this._renderPointCloudLayer()]}
initWebGLParameters
/>
</OrbitController>
);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "deck.gl",
"description": "A suite of 3D-enabled data visualization overlays, suitable for react-map-gl",
"license": "MIT",
"version": "4.2.0-alpha.31",
"version": "5.0.0-beta.1",
"keywords": [
"webgl",
"visualization",
Expand Down Expand Up @@ -45,7 +45,7 @@
"d3-hexbin": "^0.2.1",
"earcut": "^2.0.6",
"lodash.flattendeep": "^4.4.0",
"luma.gl": ">=4.1.0-beta.1",
"luma.gl": ">=5.0.0-beta.1",
"math.gl": ">= 1.0.0-alpha.8",
"mjolnir.js": ">=0.1.0",
"prop-types": "^15.5.8",
Expand Down
2 changes: 0 additions & 2 deletions src/core/pure-js/deck-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const propTypes = {
glOptions: PropTypes.object,
gl: PropTypes.object,
pickingRadius: PropTypes.number,
initWebGLParameters: PropTypes.bool,
onWebGLInitialized: PropTypes.func,
onBeforeRender: PropTypes.func,
onAfterRender: PropTypes.func,
Expand All @@ -63,7 +62,6 @@ const defaultProps = {
glOptions: {},
gl: null,
effects: [],
initWebGLParameters: false, // Will be set to true in next major release
onWebGLInitialized: noop,
onBeforeRender: noop,
onAfterRender: noop,
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"expr-eval": "^1.0.0",
"highlight.js": "^9.7.0",
"immutable": "^3.7.5",
"luma.gl": "^4.1.0-beta.1",
"luma.gl": "^5.0.0-beta.1",
"marked": "^0.3.6",
"prop-types": "^15.5.8",
"rbush": "^2.0.1",
Expand Down

0 comments on commit d1da161

Please sign in to comment.