This commit is contained in:
Bryan Housel
2018-04-24 10:13:54 -04:00
parent bfc6bcb294
commit e3fcbaaa50
3 changed files with 34 additions and 2 deletions

View File

@@ -28,6 +28,38 @@ _Breaking changes, which may affect downstream projects or sites that embed iD,
[@xxxx]: https://github.com/xxxx
-->
# 2.8.1
##### April 24, 2018
#### :sparkles: Usability
* Linkify subreddit in community description ([#4997])
[#4997]: https://github.com/openstreetmap/iD/issues/4997
#### :bug: Bugfixes
* Avoid reversing ways when using the join operation ([#4872])
* Fix join-line and join-point cursors ([#4887])
* Fix tabbing between fields in the tag editor on Firefox ([#4991])
* Don't add empty `source` tag on a changeset ([#4993])
[#4993]: https://github.com/openstreetmap/iD/issues/4993
[#4991]: https://github.com/openstreetmap/iD/issues/4991
[#4887]: https://github.com/openstreetmap/iD/issues/4887
[#4872]: https://github.com/openstreetmap/iD/issues/4872
#### :rocket: Presets
* Change `amenity=bureau_de_change` to allow tagging as a building/area ([#5005])
* Remove point as allowable geometry from `barrier=gate` ([#5004])
* Add `brand=*` field to `shop=car` preset ([#4998], [#4999], thanks [@hikemaniac])
[#5005]: https://github.com/openstreetmap/iD/issues/5005
[#5004]: https://github.com/openstreetmap/iD/issues/5004
[#4999]: https://github.com/openstreetmap/iD/issues/4999
[#4998]: https://github.com/openstreetmap/iD/issues/4998
[@hikemaniac]: https://github.com/hikemaniac
# 2.8.0
##### April 16, 2018

View File

@@ -53,7 +53,7 @@ export function setAreaKeys(value) {
export function coreContext() {
var context = {};
context.version = '2.8.0';
context.version = '2.8.1';
// 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.8.0",
"version": "2.8.1",
"description": "A friendly editor for OpenStreetMap",
"main": "iD.js",
"repository": "openstreetmap/iD",