This commit is contained in:
Quincy Morgan
2019-02-21 17:01:00 -05:00
parent f31679c920
commit 70e88ee9af
3 changed files with 35 additions and 2 deletions

View File

@@ -29,6 +29,39 @@ _Breaking changes, which may affect downstream projects or sites that embed iD,
[@xxxx]: https://github.com/xxxx
-->
# 2.14.2
##### 2019-Feb-21
#### :white_check_mark: Validation
* Don't flag crossing way issues for proposed, razed, or abandoned features ([#5922])
* Don't flag lines or areas as untagged while they are being drawn
* Deprecate "amenity=public_building" tag ([#5916])
[#5922]: https://github.com/openstreetmap/iD/issues/5922
[#5916]: https://github.com/openstreetmap/iD/issues/5916
#### :bug: Bugfixes
* Fix an issue where all map data would be removed upon switching modes while drawing a line or area ([#5917])
* Fix an issue where cancelling line or area drawing could leave an extra error ([#5918])
* Show all warnings and errors in the save sidebar
[#5917]: https://github.com/openstreetmap/iD/issues/5917
[#5918]: https://github.com/openstreetmap/iD/issues/5918
#### :hourglass: Performance
* Speed up validation, particularly the crossing ways check ([#5923])
[#5923]: https://github.com/openstreetmap/iD/issues/5923
#### :rocket: Presets
* Rename Excrement Bag Vending Machine to Excrement Bag Dispenser ([#5920], thanks [@SelfishSeahorse])
* Add Covered field to waterway presets
[#5920]: https://github.com/openstreetmap/iD/issues/5920
[@SelfishSeahorse]: https://github.com/SelfishSeahorse
# 2.14.1
##### 2019-Feb-20

View File

@@ -35,7 +35,7 @@ export function setAreaKeys(value) {
export function coreContext() {
var context = {};
context.version = '2.14.1';
context.version = '2.14.2';
// create a special translation that contains the keys in place of the strings
var tkeys = _cloneDeep(dataEn);

View File

@@ -1,6 +1,6 @@
{
"name": "iD",
"version": "2.14.1",
"version": "2.14.2",
"description": "A friendly editor for OpenStreetMap",
"main": "iD.js",
"repository": "openstreetmap/iD",