Skip to content

Commit

Permalink
Add 20.2 release note
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Nov 3, 2024
1 parent bbe8345 commit 2286b03
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 2 deletions.
65 changes: 65 additions & 0 deletions documentation/docs/help/en/20.2.0 Release notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Vespucci 20.2 BETA Highlights

2024-11-03

### Automatically generate summary of changes

Vespucci will now automatically add a summary of the edits made to the changeset tags. As this typically will be far more than what can be added to a single comment tag (max. 255 characters), it uses additional tags for this. If the comment tag is left empty it will add a comment referencing the automatically generated tags.

We further added an option on the "Properties" tab of the upload modal to reduce the nagging about filling out the comment field.

### Change of direction values handling

In 20.1 we added support for _direction_ tag handling including a specific modal for adding direction values, however we showed this for all direction values which was less than optimal. We've now added a further preset _value_type_ _cardinal_direction_ and will only show the direction modal for objects that match preset fields with that value.

### Support for _match_expression_ in presets

We now support the _match_expression_ attribute for preset items and fields (extension). This allows fine grained control of preset matching in cases for which the standard node, way closed way and relation matching isn't sufficient.

For example the _direction_ tag for _traffic_sign_ objects has different semantics depending on if the traffic sign is tagged on a way node of a _highway_ object, or if it is a stand alone traffic sign node (the relevant direction changes by 180°). Using match expressions allows to differentiate between these two cases.

### Support for replacing geometries

We've added support for the most common "replace geometry" operations.

#### Replace node by way

This operation will replace one of the way nodes with the node maintaining a link to the history and move and merge tags from the original node to the target way.

#### Replace way geometry with geometry of a source way

This operation will move the nodes of a target way to the positions of those in a source way, adding new and deleting existing nodes as necessary. Tagged way nodes that
would have to be moved more than a configurable distance (default 1m) will be extracted from the way and replaced by a new node.

### Improve GPX recording behaviour when device is locked

Depending on device and Android version devices would pause GPX track recoding if the device was locked (aka screen turned off) leading to breaks in the recording (if you left the screen on or forced it on this wasn't an issue). We now acquire a partial wake lock when GPX recording is active which should avoid this issue. Note that this means that power consumption in such situations will be higher.

### Optionally use hardware rendering on Android 10 and later

Starting with Android 10, Androids graphic library supports all operations that we use for OSM data rendering, in particular the scaling issues that used to make it unusable seem to
be fixed now, therefore we have re-enabled the support for it that you can turn on in the _Experimental_ section of the _advanced Preferences_. Note that this will not make things
blazingly fast, but it will allow use of graphics memory to store tiles and in general reduce some of the pressure on the JAVA heap.

## Miscellaneous

- Add support for HEIC/HEIF images on Android 10 and later
- Remove hardwired suppression of icons on buildings, building:parts etc.
- Add traffic_sign to hardwired object tags
- Add a search box to the WMS layer modal
- Add multi-select for tag only editing mode
- Support automatically selecting overpass query results
- Add basic and parking amenity rendering for multipolygons
- Lock screen if last use is more than 24 hours ago
- Add image orientation to photo index
- Add use a JOSM filter expression to determine exceptions to reversing rules
- Re-factor locking in StorageDelegator to reduce (rare) dead locks.

# Upgrading from previous versions

As a general precaution you should upload any pending changes before updating, particularly if you are upgrading from any major version that doesn't immediately precede this one.

# Known problems

* The documentation is out of date.
* For other known problems with this build please see [our issue tracker](https://github.com/MarcusWolschon/osmeditor4android/issues)
3 changes: 2 additions & 1 deletion documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ markdown_extensions:
permalink: "#"
toc_depth: 4
extra:
version: 20.1.0
version: 20.2.0
project: Vespucci
nav:
- Vespucci: 'index.md'
- Introduction:
- 'Introduction': 'help/en/Introduction.md'
- 'Features': 'tutorials/features.md'
- '20.2 BETA Release notes': 'help/en/20.2.0 Release notes.md'
- '20.1.0 Release notes': 'help/en/20.1.0 Release notes.md'
- '20.0.0 Release notes': 'help/en/20.0.0 Release notes.md'
- '19.3.0 Release notes': 'help/en/19.3.0 Release notes.md'
Expand Down
5 changes: 4 additions & 1 deletion src/main/res/values/helptopics.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
<string name="help_tag_only_mode">Tag only mode</string>
<string name="help_indoor_mode">Indoor mode</string>
<string name="help_address_mode">Address mode</string>
<string name="help_upgrade">20.1 Release notes</string>
<string name="help_upgrade">20.2 Release notes</string>
<string name="help_upgrade_210">20.1 Release notes</string>
<string name="help_upgrade_200">20.0 Release notes</string>
<string name="help_upgrade_193">19.3 Release notes</string>
<string name="help_upgrade_192">19.2 Release notes</string>
Expand Down Expand Up @@ -103,6 +104,7 @@
<item>@string/help_voice_commands</item>
<item>@string/help_add_route_segment</item>
<item>@string/help_upgrade</item>
<item>@string/help_upgrade_210</item>
<item>@string/help_upgrade_200</item>
<item>@string/help_upgrade_193</item>
<item>@string/help_upgrade_192</item>
Expand Down Expand Up @@ -166,6 +168,7 @@
<item>Address mode</item>
<item>Voice commands</item>
<item>Add route segment</item>
<item>20.2.0 Release notes</item>
<item>20.1.0 Release notes</item>
<item>20.0.0 Release notes</item>
<item>19.3.0 Release notes</item>
Expand Down

0 comments on commit 2286b03

Please sign in to comment.