From dbbbc9d008ee9cf51a0ce64c2c1c981ed94dbb15 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Mon, 13 Aug 2012 13:23:36 +0200 Subject: Fix authenticating with passwords containing # (Closes issue #68) --- src/de/blinkt/openvpn/VpnProfile.java | 2 +- todo.txt | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 024874a4..27ad783f 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -121,7 +121,7 @@ public class VpnProfile implements Serializable{ escapedString = escapedString.replace("\"","\\\""); escapedString = escapedString.replace("\n","\\n"); - if (escapedString.equals(unescaped) && !escapedString.contains(" ")) + if (escapedString.equals(unescaped) && !escapedString.contains(" ") && !escapedString.contains("#")) return unescaped; else return '"' + escapedString + '"'; diff --git a/todo.txt b/todo.txt index e4448c79..056fc8d5 100644 --- a/todo.txt +++ b/todo.txt @@ -12,7 +12,17 @@ Ideas: - Give the notification a nice speed bar -- map SIGUSR1 to SIGINT +- The app https://play.google.com/store/apps/details?id=org.proxydroid + has a nice feature: auto connect. Run a profile if a specified + network + is available (a user defined WIFI profile and/or "WIFI/2G/3G" and/or + "WIFI" and/or "2G/3G" - selection of more than one network type is + possible) + +- Copy/Duplicate an existing profile (to create a new one with nearly + exact settings) + + Bugfixes: - startpath file explorer -- cgit v1.2.3