diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml
index c423b3072d..eb85f2626e 100644
--- a/OsmAnd/res/values/strings.xml
+++ b/OsmAnd/res/values/strings.xml
@@ -11,6 +11,20 @@
Thx - Hardy
-->
+
+ • 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
+
Copy coordinates
Reset to default will reset sort order to the default state after installation.
Use system screen timeout
diff --git a/OsmAnd/src/net/osmand/plus/AppInitializer.java b/OsmAnd/src/net/osmand/plus/AppInitializer.java
index 8fcb44f0dc..cff34c8eec 100644
--- a/OsmAnd/src/net/osmand/plus/AppInitializer.java
+++ b/OsmAnd/src/net/osmand/plus/AppInitializer.java
@@ -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";
diff --git a/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java b/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java
index be0597a633..f7d697444b 100644
--- a/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java
+++ b/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java
@@ -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() {