mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-06 03:11:22 +00:00
1.7.4
This commit is contained in:
4
API.md
4
API.md
@@ -16,9 +16,9 @@ in the hash portion of the URL:
|
||||
[imagery list](https://github.com/openstreetmap/iD/blob/master/data/imagery.json),
|
||||
or a custom tile URL. A custom URL is specified in the format `custom:<url>`,
|
||||
where the URL can contain the standard tile URL placeholders `{x}`, `{y}` and
|
||||
`{z}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for
|
||||
`{z}`/`{zoom}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for
|
||||
DNS multiplexing. Example:
|
||||
`background=custom:http://{switch:a,b,c}.tiles.mapbox.com/v3/examples.map-4l7djmvo/{z}/{x}/{y}.png`
|
||||
`background=custom:http://{switch:a,b,c}.tiles.mapbox.com/v4/examples.map-4l7djmvo/{z}/{x}/{y}.png`
|
||||
* `comment` - Prefills the changeset comment box, for use when integrating iD with
|
||||
external task management or quality assurance tools. Example:
|
||||
`comment=CAR%20crisis%2C%20refugee%20areas%20in%20Cameroon%20%23hotosm-task-592`.
|
||||
|
||||
35
CHANGELOG.md
35
CHANGELOG.md
@@ -1,3 +1,38 @@
|
||||
## 1.7.4
|
||||
* Show docs for the selected value in raw tag editor (#2754) (Thanks, M1dgard!)
|
||||
* Improve display of implied values in access UI field (#2763)
|
||||
* Better handling of preset search terms (#2756) (Thanks, M1dgard!)
|
||||
* Support cross-browser fullscreen display mode with F11 / ⌘⇧F (#2755) (Thanks, Paul Annekov!)
|
||||
* Fix performance issue with multipolygon outer test (#2755)
|
||||
* Change caption "Access" -> "Allowed Access" (#2761)
|
||||
* Fix broken link and other help improvements (#2760)
|
||||
* Fix bug with displaying label when centroid undefined (#2757) (Thanks, Martin Raifer!)
|
||||
* Replace close 'X' with Cancel button on save panel (#2378)
|
||||
* Add `recycling:glass_bottles`, `recycling:plastic` (#2730)
|
||||
* Add preset for `leisure=bowling_alley` (#2734)
|
||||
* Render `highway=road` differently from `highway=unclassified` (#2742)
|
||||
* Improve rendering of `highway=track` - dashed casing now more visible on dark backgrounds (#657)
|
||||
* Change `highway=path` rendering to be more like `highway=footway` to avoid new user errors (#2327)
|
||||
* Prevent users from accidentally adding `highway=yes` (#2744)
|
||||
* Better styling for ephemeral tags (e.g. razed/abandoned/construction/proposed) (#2740, #1893)
|
||||
* Add `bicycle=dismount` access option (#2726)
|
||||
* Add support for Irish postcodes in address field (#2729) (Thanks, Rory McCann!)
|
||||
* Add "Road Surface" preset for `area:highway=*` (#2627)
|
||||
* Add presets for Casino and Adult Gaming Center (#2684)
|
||||
* Restore complete list of `address:` keys for address UI field (#2698)
|
||||
* Preset searching should consider tag values (#2719)
|
||||
* Add `highway=corridor` preset and universal `level` field for indoor mapping (#2687, #2218)
|
||||
* Use space key to toggle radial menu (#2706)
|
||||
* Add presets (`volcano`, `saddle`, `adit`, `tree_row`, `plant_nursery`) (Thanks, jmespadero!)
|
||||
* Use HTTPS if location protocol is HTTPS in `iD.Connection` (#2681) (Thanks, Corey Farwell!)
|
||||
* Don't write unsavable changes to `localStorage` (#2705)
|
||||
* Add recycling_type preset field (#2689) (Thanks, Eric Brelsford!)
|
||||
* Fast zoom and pan with Cmd/Control modifier key (#2691) (Thanks, Rowan Hogan!)
|
||||
* Improve handling of Wikipedia URLs (#2694) (Thanks, Minh Nguyễn!)
|
||||
* Add minimap toggle to background menu, show GPX layer in minimap (#2693) (Thanks, Rowan Hogan!)
|
||||
* Add cycleway UI field for highways with bike lanes (#2686) (Thanks, Eric Brelsford!)
|
||||
* Improve appearance of Mapillary markers (#2690) (Thanks, Pierre Giraud!)
|
||||
|
||||
## 1.7.3
|
||||
* Add fee field to toilet preset (#2639)
|
||||
* Several improvements for more reliable save and post-save data fetch (#2667)
|
||||
|
||||
39
RELEASING.md
39
RELEASING.md
@@ -10,32 +10,31 @@
|
||||
|
||||
TODO: turn this into a script.
|
||||
|
||||
- [ ] make translations
|
||||
- [ ] make imagery
|
||||
- [ ] Update CHANGELOG.md
|
||||
- [ ] Update version number in id.js
|
||||
- [ ] Update version number in package.json
|
||||
- [ ] git checkout release && git reset --hard master
|
||||
- [ ] make
|
||||
- [ ] git add -f dist/*.css dist/*.js && git commit -m 'Check in build'
|
||||
- [ ] git tag vA.B.C
|
||||
- [ ] git push origin -f release vA.B.C
|
||||
- [ ] `make translations`
|
||||
- [ ] `make imagery`
|
||||
- [ ] Update `CHANGELOG.md`
|
||||
- [ ] Update version number in `id.js`, `package.json`
|
||||
- [ ] `git checkout release && git reset --hard master`
|
||||
- [ ] `make`
|
||||
- [ ] `git add -f dist/*.css dist/*.js && git commit -m 'Check in build'`
|
||||
- [ ] `git tag vA.B.C`
|
||||
- [ ] `git push origin -f release vA.B.C`
|
||||
|
||||
### Update openstreetmap-website
|
||||
|
||||
#### Setup remotes (one time only)
|
||||
|
||||
- [ ] git remote add osmlab git@github.com:osmlab/openstreetmap-website.git
|
||||
- [ ] git remote add upstream git@github.com:openstreetmap/openstreetmap-website.git
|
||||
- [ ] `git remote add osmlab git@github.com:osmlab/openstreetmap-website.git`
|
||||
- [ ] `git remote add upstream git@github.com:openstreetmap/openstreetmap-website.git`
|
||||
|
||||
#### Sync master and update iD (every time)
|
||||
|
||||
- [ ] git fetch --all
|
||||
- [ ] git checkout master
|
||||
- [ ] git reset --hard upstream/master
|
||||
- [ ] git checkout -b iD-A.B.C
|
||||
- [ ] rm -rf vendor/assets/iD/* && vendorer
|
||||
- [ ] git add .
|
||||
- [ ] git commit -m 'Update to iD vA.B.C'
|
||||
- [ ] git push osmlab
|
||||
- [ ] `git fetch --all`
|
||||
- [ ] `git checkout master`
|
||||
- [ ] `git reset --hard upstream/master`
|
||||
- [ ] `git checkout -b iD-A.B.C`
|
||||
- [ ] `rm -rf vendor/assets/iD/* && vendorer`
|
||||
- [ ] `git add .`
|
||||
- [ ] `git commit -m 'Update to iD vA.B.C'`
|
||||
- [ ] `git push osmlab`
|
||||
- [ ] Open pull request
|
||||
|
||||
@@ -333,7 +333,7 @@ window.iD = function () {
|
||||
return d3.rebind(context, dispatch, 'on');
|
||||
};
|
||||
|
||||
iD.version = '1.7.3';
|
||||
iD.version = '1.7.4';
|
||||
|
||||
(function() {
|
||||
var detected = {};
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "iD",
|
||||
"version": "1.7.3",
|
||||
"version": "1.7.4",
|
||||
"description": "a new editor for openstreetmap",
|
||||
"main": "iD.js",
|
||||
"directories": {
|
||||
|
||||
Reference in New Issue
Block a user