This commit is contained in:
Bryan Housel
2017-05-12 10:37:14 -04:00
parent f6e922bb83
commit fc4c85d1e0
3 changed files with 18 additions and 2 deletions

View File

@@ -26,6 +26,22 @@ _Breaking changes, which may affect downstream projects or sites that embed iD,
[@xxxx]: https://github.com/xxxx
-->
# 2.2.1
##### May 12, 2017
#### :bug: Bugfixes
* Allow right-click and contextmenu events to work on the sidebar ([#4036])
* Omit global search UI when no geocoder ([#4032], thanks [@mojodna])
* Don't replace spaces with underscores in `opening_hours` field ([#4030])
[#4036]: https://github.com/openstreetmap/iD/issues/4036
[#4030]: https://github.com/openstreetmap/iD/issues/4030
[#4032]: https://github.com/openstreetmap/iD/issues/4032
[@mojodna]: https://github.com/mojodna
# 2.2.0
##### May 9, 2017

View File

@@ -377,7 +377,7 @@ export function coreContext() {
/* Init */
context.version = '2.2.0';
context.version = '2.2.1';
context.projection = geoRawMercator();
context.curtainProjection = geoRawMercator();

View File

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