summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/LogWindow.java
AgeCommit message (Collapse)Author
2013-12-11Move activities and views into packagesArne Schwabe
--HG-- rename : src/de/blinkt/openvpn/ConfigConverter.java => src/de/blinkt/openvpn/activities/ConfigConverter.java rename : src/de/blinkt/openvpn/app/CreateShortcuts.java => src/de/blinkt/openvpn/activities/CreateShortcuts.java rename : src/de/blinkt/openvpn/DisconnectVPN.java => src/de/blinkt/openvpn/activities/DisconnectVPN.java rename : src/de/blinkt/openvpn/FileSelect.java => src/de/blinkt/openvpn/activities/FileSelect.java rename : src/de/blinkt/openvpn/LogWindow.java => src/de/blinkt/openvpn/activities/LogWindow.java rename : src/de/blinkt/openvpn/MainActivity.java => src/de/blinkt/openvpn/activities/MainActivity.java rename : src/de/blinkt/openvpn/FileSelectLayout.java => src/de/blinkt/openvpn/views/FileSelectLayout.java rename : src/de/blinkt/openvpn/RemoteCNPreference.java => src/de/blinkt/openvpn/views/RemoteCNPreference.java rename : src/de/blinkt/openvpn/fragments/SeekBarTicks.java => src/de/blinkt/openvpn/views/SeekBarTicks.java extra : rebase_source : fccff1bc269dbc0ae33b96a4947b8a6e2924efeb
2013-11-21If a user specifies a higer --verb level show the messages at max verb levelArne Schwabe
2013-11-21Fix log window in landscapeArne Schwabe
2013-11-19Android 4.4 workaround,Arne Schwabe
2013-10-13Make disconnect option work again, add compat Logwindow classArne Schwabe
2013-10-13Working LogFragmentArne Schwabe
--HG-- rename : res/layout-w720dp/logwindow.xml => res/layout-w720dp/log_fragment.xml rename : res/layout/logwindow.xml => res/layout/log_fragment.xml rename : src/de/blinkt/openvpn/LogWindow.java => src/de/blinkt/openvpn/fragments/LogFragment.java
2013-10-13Add Seekbar with ticks, make a better layout for large screens of the log screenArne Schwabe
--HG-- rename : res/layout/logwindow.xml => res/layout-w720dp/logwindow.xml
2013-10-07Fix animationArne Schwabe
2013-09-27Implement changing log level on the fly in the log window, still needs some ↵Arne Schwabe
UI design love --HG-- extra : rebase_source : 207343cea3b74cd07ebdf00f8ef443465d12c966
2013-09-21Add ability to add icon to log messages indicating the log severity ↵Arne Schwabe
(disabled for now) --HG-- extra : rebase_source : 8cf05112d0c781a03d1d45d5b10607290bcb6c6b
2013-09-18Refactor logging messagesArne Schwabe
2013-08-20Rename OpenVPN class to a VPNStatusArne Schwabe
--HG-- rename : src/de/blinkt/openvpn/core/OpenVPN.java => src/de/blinkt/openvpn/core/VpnStatus.java
2013-08-07Always pass context when retrieving vpn config, don't try JB+ extra on ICS ↵Arne Schwabe
(closes issue #188)
2013-07-05Fix disconnecting VPN from notificationArne Schwabe
--HG-- extra : rebase_source : 78a533acc43184e8618f627ec4d1c3d964e616aa
2013-06-23Fix issues found by Code AnalysisArne Schwabe
2013-06-23Implement expandable notifications for 4.1Arne Schwabe
2013-04-10Always log tun informationArne Schwabe
I tired of bug reports without this information. Also this removes one of the unclear buttons in the Logwindow
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-26Refactor ConnectionStatus to be an enumerationv0.5.32Arne Schwabe
--HG-- extra : rebase_source : 6cf34d83b33bdb25d2311ad9adaa446ac0aac823
2013-02-21fix manifest, remember timestamp format, introduce overly accurate timestamp ↵Arne Schwabe
format (=ISO)
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-07Give the log window a natural up actionv0.5.31Arne Schwabe
2013-01-01Make state messages translatable and nicer.Arne 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-09-25make the context getting a bit more clean ,should not change anything but ↵Arne Schwabe
never know (NPE in market console)
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-08-13Allow editing the VPN Config from the log screen to ease configuration ↵Arne Schwabe
iterations
2012-08-12Implement starting a VPN on boot. (closes issue #62)Arne Schwabe
2012-06-20Make important message have a ticker message, fix status line in log windowArne Schwabe
2012-06-18Add a status message which shows the status of the connecting/connected VPNArne Schwabe
2012-06-13Correct network state messageArne Schwabe
Improve logging framework a bit Add logging of certificates received from Keystore
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-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-06Add ability to send the log (closes issue #9)Arne Schwabe
protect fd over unix socket
2012-05-05Version 0.4.7 with more route checking and fix of the tmp-dir bug :(Arne Schwabe
closes issue #6
2012-05-01The real 0.4.6 version as being pushed to the market.Arne Schwabe
adds working clear and disconnect buttons to log window
2012-04-30Version 0.4.6 - Codename "Welcome to the world people in 2012, where we use ↵Arne Schwabe
CIDR"
2012-04-30- new Icon :)Arne Schwabe
- Obscure settings - version 0.4.5 - quick launch
2012-04-30version 0.4.2Arne Schwabe
--HG-- rename : src/de/blinkt/openvpn/BasicSettings.java => src/de/blinkt/openvpn/Settings_Basic.java
2012-04-28Almost ready for version 0.4schwabe
2012-04-16Initial importArne Schwabe