summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-04-30 18:45:26 +0200
committerArne Schwabe <arne@rfc2549.org>2012-04-30 18:45:26 +0200
commitd6737f741ce7fb426e1ecfbe04b516a1a69f9f4c (patch)
tree2e2495f4e3a087e980186cd2669e3f995059f4c2
parentc3a13c133484e0750786b33ced635cbb2c642904 (diff)
Really set version
-rw-r--r--AndroidManifest.xml4
-rw-r--r--res/xml/vpn_obscure.xml1
-rw-r--r--src/de/blinkt/openvpn/Settings_Obscure.java1
3 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 5c779f5e..7b600181 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -17,8 +17,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.blinkt.openvpn"
- android:versionCode="12"
- android:versionName="0.4.4" >
+ android:versionCode="13"
+ android:versionName="0.4.5" >
<uses-permission android:name="android.permission.INTERNET" />
diff --git a/res/xml/vpn_obscure.xml b/res/xml/vpn_obscure.xml
index 718f1920..6c7d4983 100644
--- a/res/xml/vpn_obscure.xml
+++ b/res/xml/vpn_obscure.xml
@@ -7,7 +7,6 @@
android:entryValues="@array/verb_values"
android:key="verblevel"
android:persistent="false"
- android:summary="%s"
android:title="Log verbosity level" />
<CheckBoxPreference
diff --git a/src/de/blinkt/openvpn/Settings_Obscure.java b/src/de/blinkt/openvpn/Settings_Obscure.java
index 55615917..02a433fb 100644
--- a/src/de/blinkt/openvpn/Settings_Obscure.java
+++ b/src/de/blinkt/openvpn/Settings_Obscure.java
@@ -33,6 +33,7 @@ public class Settings_Obscure extends PreferenceFragment implements OnPreference
mLogverbosity = (ListPreference) findPreference("verblevel");
mLogverbosity.setOnPreferenceChangeListener(this);
+ mLogverbosity.setSummary("%s");
loadSettings();