From d2558b950de4a38bf3e527c6507507b594041b38 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 11 Mar 2018 11:52:48 -0400 Subject: [PATCH] v2.7.1 --- CHANGELOG.md | 45 +++++++++++++++++++++++++++++++++++++++++ modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 47 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 465a22c88..7929bd7b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,51 @@ _Breaking changes, which may affect downstream projects or sites that embed iD, [@xxxx]: https://github.com/xxxx --> +# 2.7.1 +##### March 11, 2018 + +#### :tada: New Features +* Add support for EPSG:4326 WMS layers ([#4858], thanks [@tyrasd]) + +[#4858]: https://github.com/openstreetmap/iD/issues/4858 +[@tyrasd]: https://github.com/tyrasd + +#### :bug: Bugfixes +* Allow user to press esc to finish drawing in an invalid position ([#4845], [#4860], thanks [@jguthrie100]) +* Remove code attempting to extend short leaf ways in turn restriction editor ([#4869]) +* Properly split ways which are members of a via way turn restriction ([#4861]) +* Avoid reordering stops and platforms in PTv2 routes ([#4864]) +* `only_` restrictions should only count if they leave the FROM towards the VIA ([#4849]) + +[#4869]: https://github.com/openstreetmap/iD/issues/4869 +[#4864]: https://github.com/openstreetmap/iD/issues/4864 +[#4861]: https://github.com/openstreetmap/iD/issues/4861 +[#4860]: https://github.com/openstreetmap/iD/issues/4860 +[#4849]: https://github.com/openstreetmap/iD/issues/4849 +[#4845]: https://github.com/openstreetmap/iD/issues/4845 +[@jguthrie100]: https://github.com/jguthrie100 + +#### :earth_asia: Localization +* For Kurdish languages - set `ckb` to RTL and `ku` to LTR ([#4783]) + +[#4783]: https://github.com/openstreetmap/iD/issues/4783 + +#### :rocket: Presets +* Fix duplicate `opening_hours` on `shop=beauty` preset ([#4868], [#4867], thanks [@hikemaniac]) +* Add `name` field to `leisure=pitch` and `amenity=parking` presets ([#4865], [#4857], thanks [@umarpreet1]) +* Fix subway platform presets to use `subway=yes` tag ([#4862]) +* Add preset for Dance School - `leisure=dance`+`dance:teaching=yes` ([#4846], thanks [@hikemaniac]) + +[#4868]: https://github.com/openstreetmap/iD/issues/4868 +[#4867]: https://github.com/openstreetmap/iD/issues/4867 +[#4865]: https://github.com/openstreetmap/iD/issues/4865 +[#4857]: https://github.com/openstreetmap/iD/issues/4857 +[#4862]: https://github.com/openstreetmap/iD/issues/4862 +[#4846]: https://github.com/openstreetmap/iD/issues/4846 +[@hikemaniac]: https://github.com/hikemaniac +[@umarpreet1]: https://github.com/umarpreet1 + + # 2.7.0 ##### March 2, 2018 diff --git a/modules/core/context.js b/modules/core/context.js index ed3c69c2f..72e5ecd00 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -53,7 +53,7 @@ export function setAreaKeys(value) { export function coreContext() { var context = {}; - context.version = '2.7.0'; + context.version = '2.7.1'; // create a special translation that contains the keys in place of the strings var tkeys = _cloneDeep(dataEn); diff --git a/package.json b/package.json index 0a7605f6c..a1f75c4d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.7.0", + "version": "2.7.1", "description": "A friendly editor for OpenStreetMap", "main": "iD.js", "repository": "openstreetmap/iD",