Update version 0.7
This commit is contained in:
parent
6e3fffd646
commit
8d54f56fcd
5 changed files with 15 additions and 6 deletions
|
@ -4,7 +4,7 @@ import java.io.UnsupportedEncodingException;
|
|||
import java.net.URLEncoder;
|
||||
|
||||
public class Version {
|
||||
public static String APP_VERSION = "0.7.0"; //$NON-NLS-1$
|
||||
public static String APP_VERSION = "0.7.1"; //$NON-NLS-1$
|
||||
public static final String APP_DESCRIPTION = "alpha"; //$NON-NLS-1$
|
||||
|
||||
public static final String APP_MAP_CREATOR_NAME = "OsmAndMapCreator"; //$NON-NLS-1$
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="net.osmand.plus" android:installLocation="auto" android:versionName="@string/app_version" android:versionCode="44">
|
||||
package="net.osmand.plus" android:installLocation="auto" android:versionName="@string/app_version" android:versionCode="45">
|
||||
<meta-data android:name="com.google.android.backup.api_key"
|
||||
android:value="AEdPqrEAAAAIqF3tNGT66etVBn_vgzpfAY1wmIzKV1Ss6Ku-2A" />
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
|||
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
|
||||
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
||||
android:debuggable="true" android:name="net.osmand.plus.activities.OsmandApplication" android:description="@string/app_description"
|
||||
android:debuggable="false" android:name="net.osmand.plus.activities.OsmandApplication" android:description="@string/app_description"
|
||||
android:backupAgent="net.osmand.plus.OsmandBackupAgent" android:restoreAnyVersion="true">
|
||||
<activity android:name="net.osmand.plus.activities.MainMenuActivity"
|
||||
android:label="@string/app_name">
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="tip_recent_changes_0_7_0_t">Изменения в 0.7.0 :
|
||||
\n\t- Offline Wikipedia карты со статьями
|
||||
\n\t- Обновление карт
|
||||
\n\t- Другие изменения
|
||||
</string>
|
||||
<string name="free_version_message">Бесплатная версия OsmAnd ограничена %1$s загрузками %2$s и не поддерживает геостатьи из wikipedia.</string>
|
||||
<string name="free_version_title">Бесплатная версия</string>
|
||||
<string name="poi_context_menu_showdescription">Показать POI описание</string>
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<resources>
|
||||
|
||||
<string name="tip_recent_changes_0_7_0_t">Changes in 0.7.0 :
|
||||
\n\t- Offline wikipedia maps with articles
|
||||
\n\t- Updated maps
|
||||
\n\t- Other small features
|
||||
</string>
|
||||
<string name="free_version_message">Free OsmAnd version is limited to %1$s downloads %2$s and doesn\'t support offline wikipedia articles.</string>
|
||||
<string name="free_version_title">Free version</string>
|
||||
<string name="poi_context_menu_showdescription">Show POI description</string>
|
||||
|
|
|
@ -14,7 +14,7 @@ import android.widget.TextView;
|
|||
|
||||
public class TipsAndTricksActivity {
|
||||
private int[][] tipNamesAndDescriptions = new int[][] {
|
||||
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_6_9_t},
|
||||
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_7_0_t},
|
||||
{R.string.tip_rotation_switching,R.string.tip_rotation_switching_t},
|
||||
{R.string.tip_update_index,R.string.tip_update_index_t},
|
||||
{R.string.tip_day_night_mode,R.string.tip_day_night_mode_t},
|
||||
|
@ -26,7 +26,7 @@ public class TipsAndTricksActivity {
|
|||
{R.string.tip_select_destination_point,R.string.tip_select_destination_point_t},
|
||||
{R.string.tip_navigation,R.string.tip_navigation_t},
|
||||
{R.string.tip_app_mode,R.string.tip_app_mode_t},
|
||||
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_6_7_t},
|
||||
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_6_9_t},
|
||||
{R.string.tip_map_switch,R.string.tip_map_switch_t},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue