Added information about new release 3.6
This commit is contained in:
parent
2b99880825
commit
4b2f0cf266
3 changed files with 16 additions and 2 deletions
|
@ -11,6 +11,20 @@
|
|||
Thx - Hardy
|
||||
|
||||
-->
|
||||
<string name="release_3_6">
|
||||
• Profiles: now you can change order, set icon for map, change all setting for base profiles and restore them back to defaults\n\n
|
||||
• Added exit number in the navigation\n\n
|
||||
• Reworked plugin settings\n\n
|
||||
• Reworked Settings screen for quick access to all profiles\n\n
|
||||
• Added option to copy settings from another profile\n\n
|
||||
• Added ability to change an order or hide POI categories in Search\n\n
|
||||
• Correctly aligned POI icons on the map\n\n
|
||||
• Added Sunset / Sunrise data to Configure Map\n\n
|
||||
• Added Home/Work icons on the map\n\n
|
||||
• Added support for multiline description in Settings\n\n
|
||||
• Added correct transliteration into the map of Japan\n\n
|
||||
• Added Antarctica map\n\n
|
||||
</string>
|
||||
<string name="copy_coordinates">Copy coordinates</string>
|
||||
<string name="reset_to_default_category_button_promo">Reset to default will reset sort order to the default state after installation.</string>
|
||||
<string name="use_system_screen_timeout">Use system screen timeout</string>
|
||||
|
|
|
@ -107,7 +107,7 @@ public class AppInitializer implements IProgress {
|
|||
private static final String VERSION_INSTALLED = "VERSION_INSTALLED"; //$NON-NLS-1$
|
||||
private static final String EXCEPTION_FILE_SIZE = "EXCEPTION_FS"; //$NON-NLS-1$
|
||||
|
||||
public static final String LATEST_CHANGES_URL = "https://osmand.net/blog/osmand-3-5-released";
|
||||
public static final String LATEST_CHANGES_URL = "https://osmand.net/blog/osmand-3-6-released";
|
||||
// public static final String LATEST_CHANGES_URL = null; // not enough to read
|
||||
public static final int APP_EXIT_CODE = 4;
|
||||
public static final String APP_EXIT_KEY = "APP_EXIT_KEY";
|
||||
|
|
|
@ -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_5))
|
||||
.setMessage(getString(R.string.release_3_6))
|
||||
.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