diff --git a/_posts/2016-07-16-leaflet-1.0-rc2.md b/_posts/2016-07-16-leaflet-1.0-rc2.md new file mode 100644 index 00000000..213aaccc --- /dev/null +++ b/_posts/2016-07-16-leaflet-1.0-rc2.md @@ -0,0 +1,52 @@ +--- +layout: post +title: Announcing Leaflet 1.0-rc2 +description: Leaflet 1.0 Release Candidate 2 is out +author: Yohan Boniface +authorsite: http://yohanboniface.me +--- + +Here comes the second release candidate for Leaflet 1.0, the more stable Leaflet version ever! + + +Leaflet 1.0-rc2 is mainly bug fixing, with two notable exceptions. The full list of changes is in the [1.0.0-rc2 changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md#10-rc2-july-18-2016) as usual. + + +### Notable changes + +* Event refactoring: thanks to an initial work from [@fab1an](https://github.com/fab1an), coordinated by [@perliedman](https://github.com/perliedman), the events are greatly optimized: they are faster, and consume less memory. + +* New `L.Tooltip` class: started as a port of Leaflet.Label plugin to Leaflet core, and then reworked, this new class allows to display small tooltips attached to map features. The API is very similar to what Leaflet.Label was (with some exceptions in options naming and default values), so the upgrade path from Leaflet.Label to `L.Tooltip` should be straightforward, and we encourage you to do so while upgrading your Leaflet to 1.0. + +![L.Tooltip](/docs/images/2016-07-18-tooltip.png) + +More in the [1.0.0-rc2 changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md#10-rc2-july-18-2016). + +### Leafdays + +The core team being spread all over Europe, we are doing so called "Leafdays" from time to time to remotely work together during one full day. Here is a debug session with [@perliedman](https://github.com/perliedman) screen sharing: + +![Remote session](/docs/images/2016-07-18-remote-session.png) + +Next face-to-face session will be during [FOSS4G](http://2016.foss4g.org/) in Bonn, in August, and we hope to see you there. Will this be the final 1.0 release session? + +### Get the release candidate + +As with previous releases, you can use the CDN: + + + + + +A non-minified version of the javascript file is also available as: + + + +The release is also available through NPM (`npm install leaflet@rc`), [GitHub download](https://github.com/Leaflet/Leaflet/archive/v1.0.0-rc.2.zip), and [CDN download](http://cdn.leafletjs.com/leaflet/v1.0.0-rc.2/leaflet.zip). We discourage using Bower. + +Use it, enjoy it, and please report any [issue](https://github.com/Leaflet/Leaflet/issues) to help preparing the final Leaflet 1.0 release! + + +Best, + +The "Leafteam" diff --git a/docs/images/2016-07-18-remote-session.png b/docs/images/2016-07-18-remote-session.png new file mode 100644 index 00000000..45ce2890 Binary files /dev/null and b/docs/images/2016-07-18-remote-session.png differ diff --git a/docs/images/2016-07-18-tooltip.png b/docs/images/2016-07-18-tooltip.png new file mode 100644 index 00000000..5c3ca374 Binary files /dev/null and b/docs/images/2016-07-18-tooltip.png differ