Skip to content

Commit fc5dbdd

Browse files
committed
v0.14.2
1 parent 4cbdbc6 commit fc5dbdd

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.14.2 (Feb 19 2016)
2+
3+
#### Bugfixes
4+
5+
Look for loaded parent tiles in cache
6+
Set tile cache size based on viewport size (#2137)
7+
Fix tile render order for layer-by-layer
8+
Remove source update throttling (#2139)
9+
Make panning while zooming more linear (#2070)
10+
Round points created during bucket creation (#2067)
11+
Correct bounds for a rotated or tilted map (#1842)
12+
Fix overscaled featuresAt (#2103)
13+
Allow using `tileSize: 512` as a switch to trade retina support for 512px raster tiles
14+
Fix the serialization of paint classes (#2107)
15+
Fixed bug where unsetting style properties could mutate the value of other style properties (#2105)
16+
Less slanted dashed lines near sharp corners (#967)
17+
Fire map#load if no initial style is set (#2042)
18+
119
## 0.14.1 (Feb 10 2016)
220

321
#### Bugfixes

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ A WebGL JavaScript interactive maps library that can render [Mapbox Vector Tiles
77
Include the source via HTML tags:
88

99
```html
10-
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1/mapbox-gl.js'></script>
11-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1/mapbox-gl.css' rel='stylesheet' />
10+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2/mapbox-gl.js'></script>
11+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2/mapbox-gl.css' rel='stylesheet' />
1212
```
1313

1414
For more information, see the [API documentation](https://www.mapbox.com/mapbox-gl-js/api/) and [examples](https://www.mapbox.com/mapbox-gl-js/examples/).

_config.mb-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /:categories/:title
66
baseurl: /mapbox-gl-js
77
highlighter: pygments
88
excerpt_separator: ""
9-
version: v0.14.1
9+
version: v0.14.2
1010
rdiscount:
1111
extensions: [smart]
1212
exclude: [dist]

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /:categories/:title
66
baseurl: /mapbox-gl-js
77
highlighter: pygments
88
excerpt_separator: ""
9-
version: v0.14.1
9+
version: v0.14.2
1010
mapboxglbase: /mapbox-gl-js/dist
1111
rdiscount:
1212
extensions: [smart]

bench/fps/site.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var urls = [
2-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1/mapbox-gl.js',
2+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2/mapbox-gl.js',
33
'/dist/mapbox-gl.js',
4-
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1/mapbox-gl.js',
4+
'https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2/mapbox-gl.js',
55
'/dist/mapbox-gl.js'
66
];
77

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mapbox-gl",
33
"description": "A WebGL interactive maps library",
4-
"version": "0.14.1",
4+
"version": "0.14.2",
55
"main": "js/mapbox-gl.js",
66
"license": "BSD-3-Clause",
77
"repository": {

0 commit comments

Comments
 (0)