This commit is contained in:
Quincy Morgan
2020-11-02 10:19:34 -05:00
parent a8d0826a40
commit ef2ec3ae9c
3 changed files with 21 additions and 3 deletions
+19 -1
View File
@@ -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
* Fix walkthrough translation issues
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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",