summaryrefslogtreecommitdiff
path: root/main/src/ui
AgeCommit message (Collapse)Author
2021-10-25Implement custom summary provider for DNSArne Schwabe
2021-10-24Convert IP settings to Kotlin and use autosummary providerArne Schwabe
2021-10-24Convert Settings_connections to kotlinArne Schwabe
2021-10-20Fix selecting tls-auth file not workingArne Schwabe
2021-10-20Show a toast when VPN setting intent is not available instead crashingArne Schwabe
2021-10-20Fix writing tls profile to static key config and few cleanupsArne Schwabe
2021-10-16Fix possible NPE in fragment UtilsArne Schwabe
2021-10-16Update translationsArne Schwabe
2021-10-16Add TLS Profile to config converter and remove AsyncTaskArne Schwabe
2021-10-16Fix crash when switching between night and day modeArne Schwabe
2021-10-16Remove manually set background from logview and connection (closes #1403)Arne Schwabe
2021-10-15Add log message for unsupported key encryptionArne Schwabe
2021-10-15Improve detection and logging of weak md error FAQ hintArne Schwabe
2021-10-15Implement tls-cert-profile in profile and parserArne Schwabe
2021-10-13Fix summary of Auth settings dialog and add TLS Profile settingArne Schwabe
2021-10-13Fix Remote CN Preference styleArne Schwabe
2021-10-13Convert SettingsAuthentication to KotlinArne Schwabe
2021-10-13Update translationsArne Schwabe
2021-10-13Fine tune some strings and make them untranslatableArne Schwabe
2021-10-13Make a toggle to allow community translation (closes #681)Arne Schwabe
Since it is hard for me to check languages other than the ones that I speak myself, languages other than English/German default to off. This might change if I have someone trusted to review other languages.
2021-10-13Enable proper legacy provider handling with OpenVPN3Arne Schwabe
2021-10-09Fix some corner case NPE report by play consoleArne Schwabe
2021-10-09Use coroutines instead AsyncTask in OpenSSL Speed testArne Schwabe
2021-10-08Minor fixesArne Schwabe
2021-10-08Add red warnings if a profile uses deprecated/insecure optionsArne Schwabe
2021-10-07Fix two small issues reported in crashes from Play ConsoleArne Schwabe
2021-10-06Fix legacy preovider option not being saved.Arne Schwabe
2021-10-06Allow legacy algorithm in the OpenSSL Speed testArne Schwabe
2021-10-06Detect broken server URLs on import instead crashingArne Schwabe
2021-10-06Fix NPE in Toast on Android TV (closes #1370)Arne Schwabe
2021-10-06Add option to allow loading the legacy providerArne Schwabe
2021-10-04Hide autologin checkbox when importing from URLArne Schwabe
2021-10-04Update okhttp to version 4.9.1 and adjust API usageArne Schwabe
2021-10-04Minor code cleanupArne Schwabe
2021-10-04Ensure profile is saved if auth/password is queried on startupArne Schwabe
This ensure the profile counter is incremented and the profile is saved to disk to avoid the race condition of not getting the user/pass which was started. Closes #1342
2021-10-02Fix lint issueArne Schwabe
2021-10-01Implement using compat-modeArne Schwabe
2021-10-01Implement new signing API as required by the OpenSSL 3.0 providerArne Schwabe
2021-09-27Fix background in Tab BarArne Schwabe
2021-09-09Fix NPE when resuming VPN activitysyphyr
Fixes: Implement support of openvpn://import-profile/ support E AndroidRuntime: FATAL EXCEPTION: main E AndroidRuntime: Process: de.blinkt.openvpn, PID: 15364 E AndroidRuntime: java.lang.RuntimeException: Unable to resume activity {de.blinkt.openvpn/de.blinkt.openvpn.activities.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference E AndroidRuntime: at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3454) E AndroidRuntime: at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494) E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757) E AndroidRuntime: at android.app.ActivityThread.-wrap12(ActivityThread.java) E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1496) E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102) E AndroidRuntime: at android.os.Looper.loop(Looper.java:154) E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6186) E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889) E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779) E AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference E AndroidRuntime: at de.blinkt.openvpn.activities.MainActivity.onResume(MainActivity.java:82) E AndroidRuntime: at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270) E AndroidRuntime: at android.app.Activity.performResume(Activity.java:6788) E AndroidRuntime: at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431) E AndroidRuntime: ... 10 more
2021-08-24Implement support of openvpn://import-profile/ supportArne Schwabe
For details about the protocol see https://github.com/OpenVPN/openvpn3/blob/master/doc/webauth.md
2021-08-13Add a dialog in Log Window allowing to start pending authArne Schwabe
2021-08-13Add WEB_AUTH pending auth supportArne Schwabe
2021-07-18Change provider authority reference to include applicationIdDániel Zolnai
We have found an issue that we couldn't install any of our apps next to each other, and also next to the official OpenVPN for Android app. The reason is that the provider authorities must be unique globally on the device. Since the class name is hardcoded, it will be the same for all of the implementors of this library. Although this issue can be easily fixed by changing this manually, I think it is important to do it, because it might be missed by most developers, since we usually do not test 2 VPN apps next to each other. By doing this change, the authority will always start with the final application package ID, so it should be unique globally.
2021-06-15Cleanup kotlin migration and message to use Always on VPNArne Schwabe
2021-06-15Number of miscellenous fixes and clean upsArne Schwabe
2021-06-14Convert General Settings to KotlinArne Schwabe
2021-04-15Implement VPN http proxy support (Android 10+) (closes #1263)Arne Schwabe
Use dhcp-option PROXY_HTTP 1.2.3.4 8080 or push "dhcp-option PROXY_HTTP 1.2.3.4 8080" from a server to use the feature.
2021-04-15Update gradle files, remove anko dependencyArne Schwabe
2021-04-09Fix custom options in serverlist fragment (closes #1298)Arne Schwabe