Signed-off-by: Martin Raifer <martin@raifer.tech>
This commit is contained in:
Martin Raifer
2022-11-10 12:35:21 +01:00
parent c724ced9be
commit 48f925a27b
3 changed files with 8 additions and 7 deletions
+6 -5
View File
@@ -36,16 +36,17 @@ _Breaking developer changes, which may affect downstream projects or sites that
-->
# Unreleased
# 2.23.0
##### 2022-Nov-10
#### :newspaper: News
#### :tada: New Features
#### :mega: Release Highlights
* Significantly quicker startup due to faster loading of presets ([#9347], thanks [@bhousel])!
* Add support for updated tagging presets schema version 5 ([#9320])
#### :sparkles: Usability & Accessibility
* Trigger context menu by long-presses of non-mouse inputs (touch or stylus) ([#8105])
* Improve comboboxes ([#9344]):
* (raw) tag values can be also entered (and are autocompleted) when localized strings are available for the respective options
* autocomplete now also works when taginfo service is slow or unavailable
#### :white_check_mark: Validation
#### :bug: Bugfixes
* Fix selection of best background source when starting on a zoomed-out view ([#9325])
* Fix leaking of localized strings in combo fields when taginfo service is unavailable ([#9342])
@@ -55,7 +56,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
* Fix phone number placeholder text now always using the correct localization ([#8380], thanks [@k-yle])
* Don't don't suggest to "connect the ends" if a feature with area tags also matches a line preset ([#6525])
#### :hourglass: Performance
* Speed up start-up by not pre-resolving complex locationSets ([#9347])
* Speed up start-up by not pre-resolving complex locationSets ([#9347], thanks [@bhousel])
#### :rocket: Presets
* Support tagging schema v5 ([#9320]):
* Add new field type `colour` ([schema-builder#38], [#8782])
+1 -1
View File
@@ -25,7 +25,7 @@ export function coreContext() {
let context = utilRebind({}, dispatch, 'on');
let _deferred = new Set();
context.version = '2.23.0-dev';
context.version = '2.23.0';
context.privacyVersion = '20201202';
// 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.23.0-dev",
"version": "2.23.0",
"description": "A friendly editor for OpenStreetMap",
"main": "dist/iD.min.js",
"repository": "github:openstreetmap/iD",