<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ics_openvpn.git/src/de/blinkt/openvpn/Settings_Authentication.java, branch v0.6.22</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>Add x509-verify-name support to ics-openvpn GUI</title>
<updated>2013-03-07T21:22:42+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-03-07T21:22:42+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=8e6775102cae857726601cc4f32dcb774cd4e50b'/>
<id>8e6775102cae857726601cc4f32dcb774cd4e50b</id>
<content type='text'>
--HG--
extra : rebase_source : 58613dd0fdf7a9ea75d59b1ea16c68fb6524138b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
extra : rebase_source : 58613dd0fdf7a9ea75d59b1ea16c68fb6524138b
</pre>
</div>
</content>
</entry>
<entry>
<title>Add the --auth option to the auth/enc dialog</title>
<updated>2013-02-02T15:37:43+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-02T15:37:43+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=f00cd03f5aa1f8042b55ebee5050d297cef6bb8a'/>
<id>f00cd03f5aa1f8042b55ebee5050d297cef6bb8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix errors reported by lint</title>
<updated>2012-05-25T07:28:18+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-25T07:28:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=7aab2ed1a75b29c40c0f83b1d48d889b02deb61f'/>
<id>7aab2ed1a75b29c40c0f83b1d48d889b02deb61f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 0.5.5</title>
<updated>2012-05-18T17:12:38+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-18T17:12:38+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=bb987226c843375a93043bbd5f78a94e0edea29d'/>
<id>bb987226c843375a93043bbd5f78a94e0edea29d</id>
<content type='text'>
- Add state to speed display
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add state to speed display
</pre>
</div>
</content>
</entry>
<entry>
<title>- Rework saving state of preferences fragment</title>
<updated>2012-05-14T21:06:36+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-14T21:06:36+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=39e94d54313cf140929339a9f2613d79cbf734b0'/>
<id>39e94d54313cf140929339a9f2613d79cbf734b0</id>
<content type='text'>
- fix state of nobind not loaded (hopefully closes issue #19)
Version 0.5.4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fix state of nobind not loaded (hopefully closes issue #19)
Version 0.5.4
</pre>
</div>
</content>
</entry>
<entry>
<title>Almost working configuration import</title>
<updated>2012-05-12T19:18:37+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-12T19:18:37+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=5a65e0c5e80d147909acffa14b04d3c99d48de1a'/>
<id>5a65e0c5e80d147909acffa14b04d3c99d48de1a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CLeanups</title>
<updated>2012-05-10T23:17:01+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-10T23:17:01+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=0291c756696f9ef5a8e2a23ed3b4b1ff79e91e08'/>
<id>0291c756696f9ef5a8e2a23ed3b4b1ff79e91e08</id>
<content type='text'>
Fix backtrace from market console, I suspect someone tried IPv6 and I failed him/her :(
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix backtrace from market console, I suspect someone tried IPv6 and I failed him/her :(
</pre>
</div>
</content>
</entry>
<entry>
<title>Rework FIle selection dialog.</title>
<updated>2012-05-10T22:46:33+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-10T22:46:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=bfb51aa744b09b248daacd3ada8f04e6c6f7d5a5'/>
<id>bfb51aa744b09b248daacd3ada8f04e6c6f7d5a5</id>
<content type='text'>
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 =&gt; src/de/blinkt/openvpn/FileSelectionFragment.java
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 =&gt; src/de/blinkt/openvpn/FileSelectionFragment.java
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 0.5.1</title>
<updated>2012-05-09T22:56:14+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-09T22:56:14+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=c7c118c07a00c6a8c1f44e1736dfe75d55b92884'/>
<id>c7c118c07a00c6a8c1f44e1736dfe75d55b92884</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
