Skip to content

Commit

Permalink
v0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Wojciechowski committed Sep 19, 2016
1 parent 825e408 commit 7929862
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
## 0.24.0 (September 19 2016)

#### New Features & Improvements

* Allow querystrings in `mapbox://` URLs #3113
* Allow "drag rotate" interaction to control pitch #3105
* Improve performance by decreasing `Worker` script `Blob` size #3158
* Improve vector tile performance #3067
* Decrease size of distributed library by removing `package.json` #3174
* Add support for new lines in `text-field` #3179
* Make keyboard navigation smoother #3190
* Make mouse wheel zooming smoother #3189
* Add better error message when calling `Map#queryRenderedFeatures` on non-existant layer #3196
* Add support for imperial units on `Scale` control #3160
* Add map's pitch to URL hash #3218

#### Bugfixes

* Fix exception thrown when using box zoom handler #3078
* Ensure style filters cannot be mutated by reference #3093
* Fix exceptions thrown when opening marker-bound popup by click #3104
* Fix bug causing fills with transparent colors and patterns to not render #3107
* Fix order of latitudes in `Map#getBounds` #3081
* Fix incorrect evaluation of zoom-and-property functions #2827 #3155
* Fix incorrect evaluation of property functions #2828 #3155
* Fix bug causing garbled text rendering when multiple maps are rendered on the page #3086
* Fix rendering defects caused by `Map#setFilter` and map rotation on iOS 10 #3207
* Fix bug causing image and video sources to dissapear when zooming in #3010

## 0.23.0 (August 25 2016)

#### New Features & Improvements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ To use the [vector tiles](https://www.mapbox.com/maps/) and styles hosted on htt
<!DOCTYPE html>
<html>
<head>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.23.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.23.0/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.24.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.24.0/mapbox-gl.css' rel='stylesheet' />
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mapbox-gl",
"description": "A WebGL interactive maps library",
"version": "0.23.0",
"version": "0.24.0",
"main": "js/mapbox-gl.js",
"license": "BSD-3-Clause",
"repository": {
Expand Down

0 comments on commit 7929862

Please sign in to comment.