git-svn-id: https://osmand.googlecode.com/svn/trunk@396 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
This commit is contained in:
Victor Shcherb 2010-07-26 10:49:52 +00:00
parent 4ff8a9b8f2
commit 69892cbbb3
5 changed files with 10 additions and 6 deletions

View file

@ -11,6 +11,10 @@ public class ToDoConstants {
// TODO // TODO
// 77. Implement upload gps track onto osm server
// 78. Add ruler to the main tile view
// 79. Download any WMS layer and add to swing version
// 80. Export/import points
// Improvements // Improvements
// 5. Download with wget // 5. Download with wget

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.osmand" android:versionName="0.3" android:versionCode="8"> package="com.osmand" android:versionName="0.3.1" android:versionCode="9">
<application android:icon="@drawable/icon" android:label="@string/app_name" <application android:icon="@drawable/icon" android:label="@string/app_name"
android:debuggable="false" android:name=".activities.OsmandApplication" android:description="@string/app_description"> android:debuggable="false" android:name=".activities.OsmandApplication" android:description="@string/app_description">
<activity android:name=".activities.MainMenuActivity" <activity android:name=".activities.MainMenuActivity"

View file

@ -293,7 +293,7 @@
<string name="context_menu_item_navigate_point">Идти к точке</string> <string name="context_menu_item_navigate_point">Идти к точке</string>
<string name="context_menu_item_add_favorite">Добавить к избранным</string> <string name="context_menu_item_add_favorite">Добавить к избранным</string>
<string name="context_menu_item_update_map">Обновить карту</string> <string name="context_menu_item_update_map">Обновить карту</string>
<string name="context_menu_item_open_bug">Создать open street bug</string> <string name="context_menu_item_open_bug">Создать open street ошибку</string>
<string name="context_menu_item_create_poi">Добавить poi</string> <string name="context_menu_item_create_poi">Добавить poi</string>
<string name="default_buttons_yes">Да</string> <string name="default_buttons_yes">Да</string>

View file

@ -118,7 +118,7 @@ public class OsmandSettings {
public static String getUserNameForOsmBug(Context ctx) { public static String getUserNameForOsmBug(Context ctx) {
SharedPreferences prefs = ctx.getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_WORLD_READABLE); SharedPreferences prefs = ctx.getSharedPreferences(SHARED_PREFERENCES_NAME, Context.MODE_WORLD_READABLE);
return prefs.getString(USER_OSM_BUG_NAME, "NoName"); //$NON-NLS-1$ return prefs.getString(USER_OSM_BUG_NAME, "NoName/Osmand"); //$NON-NLS-1$
} }
public static boolean setUserNameForOsmBug(Context ctx, String name) { public static boolean setUserNameForOsmBug(Context ctx, String name) {

View file

@ -520,7 +520,7 @@ public class ResourceManager {
if(source == null || source.getBitDensity() == 0){ if(source == null || source.getBitDensity() == 0){
maxImgCacheSize = 48; maxImgCacheSize = 48;
} else { } else {
maxImgCacheSize = 512 / source.getBitDensity(); maxImgCacheSize = 384 / source.getBitDensity();
} }
} }