diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-12-26 00:06:24 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-12-26 00:06:24 +0100 |
commit | 2f937667ca96b4beed8eb66a1025bd74d8a4a73e (patch) | |
tree | 61c5fe1dae1265cd2c4ae78b65eca5ec4668074e | |
parent | 367fd28be00e541f251854893b0eeeb5168e59d3 (diff) |
Increase version number for next release
-rw-r--r-- | AndroidManifest.xml | 4 | ||||
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index b3103ac0..b15156d6 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="56" - android:versionName="0.5.28" > + android:versionCode="57" + android:versionName="0.5.29" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 98f15044..4c3c05f0 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -104,6 +104,7 @@ public class VpnProfile implements Serializable{ public boolean mPersistTun = false; public String mConnectRetryMax="5"; public String mConnectRetry="5"; + public boolean mUserEditable=true; static final String MINIVPN = "miniopenvpn"; |