From 946b5572e53252f2ab54a628ce56d9519d1af2c7 Mon Sep 17 00:00:00 2001 From: Joshua Bahnsen Date: Wed, 23 Jan 2013 23:52:38 -0700 Subject: [PATCH] Consistent casing in Settings, fix footer in Albums when More is not visible. --- AndroidManifest.xml | 2 +- res/values/strings.xml | 12 ++++++------ .../androidapp/activity/SelectAlbumActivity.java | 3 +-- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index e13c2456..3ecd286b 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2,7 +2,7 @@ + a:versionName="3.9.9.12" a:installLocation="auto"> diff --git a/res/values/strings.xml b/res/values/strings.xml index a4f4c5f4..182ef4d7 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -137,7 +137,7 @@ Username Password Music Cache - Songs to preload + Songs To Preload Cache Size Cache Location Invalid cache location. Using default. @@ -167,7 +167,7 @@ 256 Kbps 320 Kbps Unlimited - Wi-Fi streaming only + Wi-Fi Streaming Only Only stream media if connected to Wi-Fi 1 song 2 songs @@ -184,7 +184,7 @@ 10 GB 20 GB Unlimited - Clear search history + Clear Search History Search history cleared Other Settings Search Settings @@ -197,8 +197,8 @@ Respond to phone, headset and Bluetooth media buttons Keep Screen On Keeping the screen on while downloading improves download speed. - Buffer length - Network timeout + Buffer Length + Network Timeout 2 seconds 5 seconds 8 seconds @@ -215,7 +215,7 @@ 90 seconds 105 seconds 120 seconds - Show notification + Show Notification Show now playing notification in the status bar Max Albums Number of albums to return diff --git a/src/net/sourceforge/subsonic/androidapp/activity/SelectAlbumActivity.java b/src/net/sourceforge/subsonic/androidapp/activity/SelectAlbumActivity.java index d5be485e..bba41dae 100644 --- a/src/net/sourceforge/subsonic/androidapp/activity/SelectAlbumActivity.java +++ b/src/net/sourceforge/subsonic/androidapp/activity/SelectAlbumActivity.java @@ -378,10 +378,9 @@ public class SelectAlbumActivity extends SubsonicTabActivity { if (result.getFirst().getChildren().size() < getIntent().getIntExtra(Constants.INTENT_EXTRA_NAME_ALBUM_LIST_SIZE, 0)) { moreButton.setVisibility(View.GONE); } else { + entryList.addFooterView(footer); moreButton.setVisibility(View.VISIBLE); } - - entryList.addFooterView(footer); moreButton.setOnClickListener(new View.OnClickListener() { @Override