summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/OpenVPN.java
AgeCommit message (Collapse)Author
2013-03-12Break the classes into core classes that deal with handling the backend ↵Arne Schwabe
logic, the fragment and rest. LaunchVPN, MainActivity, ConfigConvert are public API that is recorded in shortcuts, launchers etc. Moving them would break public API. Also VPNProfile belongs into core but since the reading VPN Profiles depends on the class name keep it in the main package. --HG-- rename : src/de/blinkt/openvpn/CIDRIP.java => src/de/blinkt/openvpn/core/CIDRIP.java rename : src/de/blinkt/openvpn/ConfigParser.java => src/de/blinkt/openvpn/core/ConfigParser.java rename : src/de/blinkt/openvpn/NetworkSateReceiver.java => src/de/blinkt/openvpn/core/NetworkSateReceiver.java rename : src/de/blinkt/openvpn/OpenVPN.java => src/de/blinkt/openvpn/core/OpenVPN.java rename : src/de/blinkt/openvpn/OpenVPNMangement.java => src/de/blinkt/openvpn/core/OpenVPNMangement.java rename : src/de/blinkt/openvpn/OpenVPNThread.java => src/de/blinkt/openvpn/core/OpenVPNThread.java rename : src/de/blinkt/openvpn/OpenVpnManagementThread.java => src/de/blinkt/openvpn/core/OpenVpnManagementThread.java rename : src/de/blinkt/openvpn/OpenVpnService.java => src/de/blinkt/openvpn/core/OpenVpnService.java rename : src/de/blinkt/openvpn/ProfileManager.java => src/de/blinkt/openvpn/core/ProfileManager.java rename : src/de/blinkt/openvpn/ProxyDetection.java => src/de/blinkt/openvpn/core/ProxyDetection.java rename : src/de/blinkt/openvpn/VPNLaunchHelper.java => src/de/blinkt/openvpn/core/VPNLaunchHelper.java rename : src/de/blinkt/openvpn/AboutFragment.java => src/de/blinkt/openvpn/fragments/AboutFragment.java rename : src/de/blinkt/openvpn/FaqFragment.java => src/de/blinkt/openvpn/fragments/FaqFragment.java rename : src/de/blinkt/openvpn/FileSelectionFragment.java => src/de/blinkt/openvpn/fragments/FileSelectionFragment.java rename : src/de/blinkt/openvpn/GeneralSettings.java => src/de/blinkt/openvpn/fragments/GeneralSettings.java rename : src/de/blinkt/openvpn/InlineFileTab.java => src/de/blinkt/openvpn/fragments/InlineFileTab.java rename : src/de/blinkt/openvpn/OpenVpnPreferencesFragment.java => src/de/blinkt/openvpn/fragments/OpenVpnPreferencesFragment.java rename : src/de/blinkt/openvpn/SendDumpFragment.java => src/de/blinkt/openvpn/fragments/SendDumpFragment.java rename : src/de/blinkt/openvpn/Settings_Authentication.java => src/de/blinkt/openvpn/fragments/Settings_Authentication.java rename : src/de/blinkt/openvpn/Settings_Basic.java => src/de/blinkt/openvpn/fragments/Settings_Basic.java rename : src/de/blinkt/openvpn/Settings_IP.java => src/de/blinkt/openvpn/fragments/Settings_IP.java rename : src/de/blinkt/openvpn/Settings_Obscure.java => src/de/blinkt/openvpn/fragments/Settings_Obscure.java rename : src/de/blinkt/openvpn/Settings_Routing.java => src/de/blinkt/openvpn/fragments/Settings_Routing.java rename : src/de/blinkt/openvpn/ShowConfigFragment.java => src/de/blinkt/openvpn/fragments/ShowConfigFragment.java rename : src/de/blinkt/openvpn/VPNProfileList.java => src/de/blinkt/openvpn/fragments/VPNProfileList.java
2013-02-28New Layout for main screenArne Schwabe
2013-02-26Refactor ConnectionStatus to be an enumerationv0.5.32Arne Schwabe
--HG-- extra : rebase_source : 6cf34d83b33bdb25d2311ad9adaa446ac0aac823
2013-02-25Fix notificationalwaysvisible bugArne Schwabe
2013-02-25Make listener methods synchronizedArne Schwabe
2013-02-20Display if the build is done by me or other persons (will help finding the ↵Arne Schwabe
native library problems of strange build) --HG-- extra : amend_source : 1df0499d036bab9cfd6b73f8b539d159304c3909
2013-02-10Use different icons in the status bar depending on status.Arne Schwabe
2013-02-10Add timestamps to log windowArne Schwabe
--HG-- extra : rebase_source : cbcf8f519b4a2c616a645636653fe711304a5942
2013-02-09Merge non OpenVPN3 specific into mainArne Schwabe
2013-02-05Fix Locale related errors/bugs. Update … to unicode replacement. Fix the ↵Arne Schwabe
speed display.
2013-01-31Allow finer control of notification messagesArne Schwabe
2013-01-14Do not save BYTECOUNT state message as last message.Arne Schwabe
2013-01-10Fix inserting inline certificates, increase log bufferArne Schwabe
2013-01-07Logs arguments to strings for minidumpArne Schwabe
2013-01-01Make state messages translatable and nicer.Arne Schwabe
2012-12-31CleanupsArne Schwabe
2012-12-27Make changes needed to provide an external APIArne Schwabe
2012-12-24Make send mini dump work with non Gmail Mail app, make google sending better ↵Arne Schwabe
placed
2012-12-22Add google-breakpad support to ics-openvpnArne Schwabe
2012-08-28- Add status message when waiting for network.Arne Schwabe
- Using a priority higher than PRIORITY_MIN stop the flickering of the notification but make the icon visible again :/
2012-06-28The 'be ready for Jelly Beans' commitArne Schwabe
- fix concurrentaccess occuring on JB - JB does not allow to extract the private keys from the key storage, rewrite using the key storage to use JAVA API and the external-key management interface
2012-06-27log phone versionArne Schwabe
support more than 100 routes
2012-06-18Add a status message which shows the status of the connecting/connected VPNArne Schwabe
2012-06-17- Fix last commitv0.5.8Arne Schwabe
- Implement reading extra CA cert from file to fix keystore error on some mobile phones
2012-06-13Correct network state messageArne Schwabe
Improve logging framework a bit Add logging of certificates received from Keystore
2012-05-24Add more diagnostic messages for management password queriesArne Schwabe
2012-05-18Version 0.5.5v0.5.5Arne Schwabe
- Add state to speed display
2012-05-18- Make Ipv6 support complete (minus tun-ipv6 warning)Arne Schwabe
- Implement byte counter support in the log window - Fix spelling of secret (closes issue #22) - Replace "quot; with ", no idea what went wrong there (closes issue #21)
2012-05-11CLeanupsArne Schwabe
Fix backtrace from market console, I suspect someone tried IPv6 and I failed him/her :(
2012-05-11Rework FIle selection dialog.Arne Schwabe
Include possibility to include file content in VPN Profile. Allows safer storage of Certifcates and keys. (closes issue #13) --HG-- rename : src/com/lamerman/FileDialog.java => src/de/blinkt/openvpn/FileSelectionFragment.java
2012-05-09Openvpn as external external program is coming nearer ....Arne Schwabe
2012-05-06All control of openvpn is now over the unix socket. JNI is only used for ↵Arne Schwabe
starting openvpn. Fix configuration if no DNS information is available. (closes issue #7 hopefully) Version 0.5.0
2012-05-06- Ability to copy single log entries (issue #9)Arne Schwabe
- Remove dependency on JNI for all but early logging and opening tun
2012-05-05working protect fd through managementArne Schwabe
2012-05-05Error message if keystore cannot be accessed (e.g. after backup)Arne Schwabe
2012-05-05Version 0.4.7 with more route checking and fix of the tmp-dir bug :(Arne Schwabe
closes issue #6
2012-05-04Version 0.4.7 :)Arne Schwabe
2012-05-03add delete Profile supportArne Schwabe
add Config Parser begin openvpn config => Vpn Profile Converter
2012-04-30version 0.4.2Arne Schwabe
--HG-- rename : src/de/blinkt/openvpn/BasicSettings.java => src/de/blinkt/openvpn/Settings_Basic.java
2012-04-29Version 0.4schwabe
fixes iusse #1 fixes iusse #2 fixes iusse #3
2012-04-28Almost ready for version 0.4schwabe
2012-04-27it is not getIntent() nor savedState nor other fancy stuff, getArgument() is ↵Arne Schwabe
what I want
2012-04-16Initial importArne Schwabe