Add info about Release 3.2

This commit is contained in:
Dmitriy Prodchenko 2018-09-05 15:57:55 +03:00
parent 7b0714733a
commit 226e34340e
2 changed files with 6 additions and 1 deletions

View file

@ -14,6 +14,11 @@
<string name="thank_you_for_feedback">Thank you for feedback</string>
<string name="poi_cannot_be_found">Node or way cannot be found.</string>
<string name="search_no_results_feedback">No search results?\nGive us feedback</string>
<string name="release_3_2_pre">
• Fixed crash on startup that occurred with non-latin maps\n\n
• Improve rendering speed issues on Android 8.0 devices\n\n
• Support for polygon (non-amenity) objects editing\n\n
</string>
<string name="release_3_1">
• Navigation: Fix progress bar, fast swapping of the start and end point of the route\n\n
• Map markers: fix turn on/off groups, ability to hide markers from the map\n\n

View file

@ -28,7 +28,7 @@ public class WhatsNewDialogFragment extends DialogFragment {
final OsmandApplication osmandApplication = (OsmandApplication) getActivity().getApplication();
final String appVersion = Version.getAppVersion(osmandApplication);
builder.setTitle(getString(R.string.whats_new) + " " + appVersion)
.setMessage(getString(R.string.release_3_1))
.setMessage(getString(R.string.release_3_2_pre))
.setNegativeButton(R.string.shared_string_close, null);
if (AppInitializer.LATEST_CHANGES_URL != null) {
builder.setPositiveButton(R.string.read_more, new DialogInterface.OnClickListener() {