Add Release notes for 3.4 release

This commit is contained in:
Dmitriy Prodchenko 2019-06-27 13:34:57 +03:00
parent 9fa2932a0b
commit ebca756137
2 changed files with 11 additions and 1 deletions

View file

@ -11,6 +11,16 @@
Thx - Hardy
-->
<string name="release_3_4">
• Application profiles: create your own profile for your needs, with a custom icon and color\n\n
• Add settings for default and min/max speed for profiles\n\n
• Add a widget with current coordinates\n\n
• Add options to show the compass on the map with a radius ruler\n\n
• Improved map downloads in the background\n\n
• Fixed Wikipedia language selection\n\n
• Fixed compass button behavior during navigation\n\n
• Bug fixes\n\n
</string>
<string name="app_mode_personal_transporter">Personal transporter</string>
<string name="app_mode_monowheel">Monowheel</string>
<string name="app_mode_scooter">Scooter</string>

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_3_7))
.setMessage(getString(R.string.release_3_4))
.setNegativeButton(R.string.shared_string_close, null);
if (AppInitializer.LATEST_CHANGES_URL != null) {
builder.setPositiveButton(R.string.read_more, new DialogInterface.OnClickListener() {