diff --git a/OsmAnd/no_translate.xml b/OsmAnd/no_translate.xml index e53b1bbb28..3bbd51ff80 100644 --- a/OsmAnd/no_translate.xml +++ b/OsmAnd/no_translate.xml @@ -1,7 +1,7 @@ OsmAnd~ - 2.3.0 + 2.2.0 - + \u2022 New context-sensitive UI for tapping locations on the map and on other screens\n\n \u2022 Choice between Dashboard or Menu as primary app control\n\n \u2022 New Wikipedia data, now downloads per country, and with much more complete data\n\n diff --git a/OsmAnd/src/net/osmand/plus/AppInitializer.java b/OsmAnd/src/net/osmand/plus/AppInitializer.java index 4d7ea00e57..33022387c7 100644 --- a/OsmAnd/src/net/osmand/plus/AppInitializer.java +++ b/OsmAnd/src/net/osmand/plus/AppInitializer.java @@ -65,8 +65,8 @@ 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 = "http://osmand.net/help/changes-2.2.html"; - public static final String LATEST_CHANGES_URL = null; // not enough to read + public static final String LATEST_CHANGES_URL = "http://osmand.net/blog?id=osmand-2-2-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"; private OsmandApplication app; diff --git a/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java b/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java index 31d7df6f10..cc6a209a6f 100644 --- a/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java +++ b/OsmAnd/src/net/osmand/plus/dialogs/WhatsNewDialogFragment.java @@ -27,7 +27,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_3)) + .setMessage(getString(R.string.release_2_2)) .setNegativeButton(R.string.shared_string_close, null); if (AppInitializer.LATEST_CHANGES_URL != null) { builder.setPositiveButton(R.string.read_more, new DialogInterface.OnClickListener() {