Add release notes for 2.5
This commit is contained in:
parent
552cac8ac2
commit
a1a15e790b
3 changed files with 11 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
<resources>
|
||||
<string name="app_name">OsmAnd~</string>
|
||||
<string name="app_name_free">OsmAndF~</string>
|
||||
<string name="app_version">2.4.0</string>
|
||||
<string name="app_version">2.5.0</string>
|
||||
<!--
|
||||
Note: For our dev build apk's, the above "app_version" is provided (via osmand/build.xml) as the base version prefix to our build number in the format:
|
||||
X.X.X#YYYYZ , where
|
||||
|
|
|
@ -15,6 +15,15 @@
|
|||
<string name="shared_string_recorded">Recorded</string>
|
||||
<string name="shared_string_record">Record</string>
|
||||
<string name="gpx_logging_no_data">No data</string>
|
||||
<string name="release_2_5">
|
||||
\u2022 Clickable icons on the map\n\n
|
||||
\u2022 Powerful POI Filter Search: search restaurants by cuisine, campings with specific needs\n\n
|
||||
\u2022 New OsmAnd Topo Style for cyclists and hikers\n\n
|
||||
\u2022 Improved Trip recording (new settings)\n\n
|
||||
\u2022 Improved navigation notifications (Android Wear)\n\n
|
||||
\u2022 Many other improvements and bug fixes\n\n
|
||||
and more…
|
||||
</string>
|
||||
<string name="rendering_attr_contourColorScheme_description">Color scheme of contours</string>
|
||||
<string name="save_track_min_speed">Logging minimal speed</string>
|
||||
<string name="save_track_min_speed_descr">Choose minimal speed that logging will be triggered</string>
|
||||
|
|
|
@ -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_2_4))
|
||||
.setMessage(getString(R.string.release_2_5))
|
||||
.setNegativeButton(R.string.shared_string_close, null);
|
||||
if (AppInitializer.LATEST_CHANGES_URL != null) {
|
||||
builder.setPositiveButton(R.string.read_more, new DialogInterface.OnClickListener() {
|
||||
|
|
Loading…
Reference in a new issue