<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ics_openvpn.git/src/de/blinkt/openvpn/OpenVpnManagementThread.java, branch v0.6.54</title>
<subtitle>[ics_openvpn] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/'/>
<entry>
<title>Break the classes into core classes that deal with handling the backend logic, the fragment and rest.</title>
<updated>2013-03-12T13:18:53+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-03-12T13:18:53+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=ef4438a0ede0394736f8abdbcf4fa24b712ec7eb'/>
<id>ef4438a0ede0394736f8abdbcf4fa24b712ec7eb</id>
<content type='text'>
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 =&gt; src/de/blinkt/openvpn/core/CIDRIP.java
rename : src/de/blinkt/openvpn/ConfigParser.java =&gt; src/de/blinkt/openvpn/core/ConfigParser.java
rename : src/de/blinkt/openvpn/NetworkSateReceiver.java =&gt; src/de/blinkt/openvpn/core/NetworkSateReceiver.java
rename : src/de/blinkt/openvpn/OpenVPN.java =&gt; src/de/blinkt/openvpn/core/OpenVPN.java
rename : src/de/blinkt/openvpn/OpenVPNMangement.java =&gt; src/de/blinkt/openvpn/core/OpenVPNMangement.java
rename : src/de/blinkt/openvpn/OpenVPNThread.java =&gt; src/de/blinkt/openvpn/core/OpenVPNThread.java
rename : src/de/blinkt/openvpn/OpenVpnManagementThread.java =&gt; src/de/blinkt/openvpn/core/OpenVpnManagementThread.java
rename : src/de/blinkt/openvpn/OpenVpnService.java =&gt; src/de/blinkt/openvpn/core/OpenVpnService.java
rename : src/de/blinkt/openvpn/ProfileManager.java =&gt; src/de/blinkt/openvpn/core/ProfileManager.java
rename : src/de/blinkt/openvpn/ProxyDetection.java =&gt; src/de/blinkt/openvpn/core/ProxyDetection.java
rename : src/de/blinkt/openvpn/VPNLaunchHelper.java =&gt; src/de/blinkt/openvpn/core/VPNLaunchHelper.java
rename : src/de/blinkt/openvpn/AboutFragment.java =&gt; src/de/blinkt/openvpn/fragments/AboutFragment.java
rename : src/de/blinkt/openvpn/FaqFragment.java =&gt; src/de/blinkt/openvpn/fragments/FaqFragment.java
rename : src/de/blinkt/openvpn/FileSelectionFragment.java =&gt; src/de/blinkt/openvpn/fragments/FileSelectionFragment.java
rename : src/de/blinkt/openvpn/GeneralSettings.java =&gt; src/de/blinkt/openvpn/fragments/GeneralSettings.java
rename : src/de/blinkt/openvpn/InlineFileTab.java =&gt; src/de/blinkt/openvpn/fragments/InlineFileTab.java
rename : src/de/blinkt/openvpn/OpenVpnPreferencesFragment.java =&gt; src/de/blinkt/openvpn/fragments/OpenVpnPreferencesFragment.java
rename : src/de/blinkt/openvpn/SendDumpFragment.java =&gt; src/de/blinkt/openvpn/fragments/SendDumpFragment.java
rename : src/de/blinkt/openvpn/Settings_Authentication.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Authentication.java
rename : src/de/blinkt/openvpn/Settings_Basic.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Basic.java
rename : src/de/blinkt/openvpn/Settings_IP.java =&gt; src/de/blinkt/openvpn/fragments/Settings_IP.java
rename : src/de/blinkt/openvpn/Settings_Obscure.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Obscure.java
rename : src/de/blinkt/openvpn/Settings_Routing.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Routing.java
rename : src/de/blinkt/openvpn/ShowConfigFragment.java =&gt; src/de/blinkt/openvpn/fragments/ShowConfigFragment.java
rename : src/de/blinkt/openvpn/VPNProfileList.java =&gt; src/de/blinkt/openvpn/fragments/VPNProfileList.java
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 =&gt; src/de/blinkt/openvpn/core/CIDRIP.java
rename : src/de/blinkt/openvpn/ConfigParser.java =&gt; src/de/blinkt/openvpn/core/ConfigParser.java
rename : src/de/blinkt/openvpn/NetworkSateReceiver.java =&gt; src/de/blinkt/openvpn/core/NetworkSateReceiver.java
rename : src/de/blinkt/openvpn/OpenVPN.java =&gt; src/de/blinkt/openvpn/core/OpenVPN.java
rename : src/de/blinkt/openvpn/OpenVPNMangement.java =&gt; src/de/blinkt/openvpn/core/OpenVPNMangement.java
rename : src/de/blinkt/openvpn/OpenVPNThread.java =&gt; src/de/blinkt/openvpn/core/OpenVPNThread.java
rename : src/de/blinkt/openvpn/OpenVpnManagementThread.java =&gt; src/de/blinkt/openvpn/core/OpenVpnManagementThread.java
rename : src/de/blinkt/openvpn/OpenVpnService.java =&gt; src/de/blinkt/openvpn/core/OpenVpnService.java
rename : src/de/blinkt/openvpn/ProfileManager.java =&gt; src/de/blinkt/openvpn/core/ProfileManager.java
rename : src/de/blinkt/openvpn/ProxyDetection.java =&gt; src/de/blinkt/openvpn/core/ProxyDetection.java
rename : src/de/blinkt/openvpn/VPNLaunchHelper.java =&gt; src/de/blinkt/openvpn/core/VPNLaunchHelper.java
rename : src/de/blinkt/openvpn/AboutFragment.java =&gt; src/de/blinkt/openvpn/fragments/AboutFragment.java
rename : src/de/blinkt/openvpn/FaqFragment.java =&gt; src/de/blinkt/openvpn/fragments/FaqFragment.java
rename : src/de/blinkt/openvpn/FileSelectionFragment.java =&gt; src/de/blinkt/openvpn/fragments/FileSelectionFragment.java
rename : src/de/blinkt/openvpn/GeneralSettings.java =&gt; src/de/blinkt/openvpn/fragments/GeneralSettings.java
rename : src/de/blinkt/openvpn/InlineFileTab.java =&gt; src/de/blinkt/openvpn/fragments/InlineFileTab.java
rename : src/de/blinkt/openvpn/OpenVpnPreferencesFragment.java =&gt; src/de/blinkt/openvpn/fragments/OpenVpnPreferencesFragment.java
rename : src/de/blinkt/openvpn/SendDumpFragment.java =&gt; src/de/blinkt/openvpn/fragments/SendDumpFragment.java
rename : src/de/blinkt/openvpn/Settings_Authentication.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Authentication.java
rename : src/de/blinkt/openvpn/Settings_Basic.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Basic.java
rename : src/de/blinkt/openvpn/Settings_IP.java =&gt; src/de/blinkt/openvpn/fragments/Settings_IP.java
rename : src/de/blinkt/openvpn/Settings_Obscure.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Obscure.java
rename : src/de/blinkt/openvpn/Settings_Routing.java =&gt; src/de/blinkt/openvpn/fragments/Settings_Routing.java
rename : src/de/blinkt/openvpn/ShowConfigFragment.java =&gt; src/de/blinkt/openvpn/fragments/ShowConfigFragment.java
rename : src/de/blinkt/openvpn/VPNProfileList.java =&gt; src/de/blinkt/openvpn/fragments/VPNProfileList.java
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor ConnectionStatus to be an enumeration</title>
<updated>2013-02-26T22:12:44+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-26T22:12:44+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=428ef31f6a1de54cd6e3c20264f5ab411a076aaa'/>
<id>428ef31f6a1de54cd6e3c20264f5ab411a076aaa</id>
<content type='text'>
--HG--
extra : rebase_source : 6cf34d83b33bdb25d2311ad9adaa446ac0aac823
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
extra : rebase_source : 6cf34d83b33bdb25d2311ad9adaa446ac0aac823
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix display of speed in the notification.</title>
<updated>2013-02-11T14:53:43+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-11T14:53:43+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=24bdb287646f94b134d0073e2a2c4e90f09a5eb0'/>
<id>24bdb287646f94b134d0073e2a2c4e90f09a5eb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use different icons in the status bar depending on status.</title>
<updated>2013-02-10T20:55:46+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-10T20:55:46+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=2a9f7fcdb1ddf8c2ee39ed87334bf0bc58955808'/>
<id>2a9f7fcdb1ddf8c2ee39ed87334bf0bc58955808</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge non OpenVPN3 specific into main</title>
<updated>2013-02-09T16:03:27+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-09T16:03:27+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=c89414179f77982751064a5709122913c3ffd6c4'/>
<id>c89414179f77982751064a5709122913c3ffd6c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Locale related errors/bugs. Update … to unicode replacement. Fix the speed display.</title>
<updated>2013-02-05T08:49:06+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-05T08:49:06+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=1a65622af5d97bfcf56c84e90e40bfd0b214e43b'/>
<id>1a65622af5d97bfcf56c84e90e40bfd0b214e43b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Give the hint of android bug with alphanumeric Keystore Aliases. (closes issue #132)</title>
<updated>2013-02-02T15:08:52+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-02T15:08:52+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=f4b9c3edf8d35c7246853dac72eecd57b248e97f'/>
<id>f4b9c3edf8d35c7246853dac72eecd57b248e97f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow finer control of notification messages</title>
<updated>2013-01-31T16:45:21+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-01-31T16:45:21+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=6d8a143adc28c7b9c1434b117f21c147667e4f26'/>
<id>6d8a143adc28c7b9c1434b117f21c147667e4f26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some more changes making external API possible</title>
<updated>2013-01-04T19:54:50+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-01-04T19:54:50+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=5350c37c79e7fc3561c0bda068565ef19630131a'/>
<id>5350c37c79e7fc3561c0bda068565ef19630131a</id>
<content type='text'>
--HG--
extra : rebase_source : a62d022b917c997a5e116c34802fecfb1f066459
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
extra : rebase_source : a62d022b917c997a5e116c34802fecfb1f066459
</pre>
</div>
</content>
</entry>
<entry>
<title>Make state messages translatable and nicer.</title>
<updated>2013-01-01T16:35:10+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-01-01T16:35:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=410900f7619be50371d2fe3163873f2422928660'/>
<id>410900f7619be50371d2fe3163873f2422928660</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
