From ef2ec3ae9ce09a88eb1126aa99dfd845a3b7bc62 Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Mon, 2 Nov 2020 10:19:34 -0500 Subject: [PATCH] v2.19.4 --- CHANGELOG.md | 20 +++++++++++++++++++- modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c774b3f0..a7d2efc0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,24 @@ _Breaking developer changes, which may affect downstream projects or sites that [@xxxx]: https://github.com/xxxx --> +# 2.19.4 +##### 2020-Nov-2 + +#### :bug: Bugfixes +* Fix an issue with missing data in the Keyboard Shortcuts screen ([#8137]) +* Fix a bug where deselecting items in the selected features list would instead select them in some browsers ([#8151]) +* Properly open the Custom Background screen when a custom layer is requested but not set ([#8141], thanks [@willemarcel]) + +[#8137]: https://github.com/openstreetmap/iD/issues/8137 +[#8151]: https://github.com/openstreetmap/iD/issues/8151 +[#8141]: https://github.com/openstreetmap/iD/issues/8141 +[@willemarcel]: https://github.com/willemarcel + +#### :rocket: Presets +* Add Telephone field to Warehouse preset ([#8150]) + +[#8150]: https://github.com/openstreetmap/iD/issues/8150 + # 2.19.3 ##### 2020-Oct-29 @@ -6656,4 +6674,4 @@ _Map traffic signals, stop signs, benches, crossings, street lamps, fountains, t * Fixes for Opera compatibility * Update `osm-auth` to 0.2.1 * Fix the `note` functionality and textarea UI in presets -* Fix walkthrough translation issues \ No newline at end of file +* Fix walkthrough translation issues diff --git a/modules/core/context.js b/modules/core/context.js index efbd7c0ee..7f830b1eb 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -26,7 +26,7 @@ export function coreContext() { let context = utilRebind({}, dispatch, 'on'); let _deferred = new Set(); - context.version = '2.19.4-dev'; + context.version = '2.19.4'; context.privacyVersion = '20200407'; // iD will alter the hash so cache the parameters intended to setup the session diff --git a/package.json b/package.json index ca2e13621..ea4b04e76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.19.4-dev", + "version": "2.19.4", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",