<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ics_openvpn.git/src/de/blinkt/openvpn/FileSelect.java, branch v0.5.44</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>Fix even stupider bug</title>
<updated>2013-03-01T14:18:06+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-03-01T14:18:06+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=3892ffb62c1b0bff4f41bdec52c5e25b790dada5'/>
<id>3892ffb62c1b0bff4f41bdec52c5e25b790dada5</id>
<content type='text'>
--HG--
extra : amend_source : d8c0fc1d7c1f5ad498fb9ecd37b58929b1aa7f7b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
extra : amend_source : d8c0fc1d7c1f5ad498fb9ecd37b58929b1aa7f7b
</pre>
</div>
</content>
</entry>
<entry>
<title>New Layout for main screen</title>
<updated>2013-02-28T16:43:12+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-28T16:43:12+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=c2d2473b1618a9a002344ec6be1e67004fdb1f94'/>
<id>c2d2473b1618a9a002344ec6be1e67004fdb1f94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix embedding inline files (closes issue #141)</title>
<updated>2013-02-06T20:09:18+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-02-06T20:09:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=b6386e685176add87a06943d34bf01d8cd1dbea4'/>
<id>b6386e685176add87a06943d34bf01d8cd1dbea4</id>
<content type='text'>
increase version number
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
increase version number
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix inserting inline certificates, increase log buffer</title>
<updated>2013-01-10T14:14:33+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2013-01-10T14:14:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=162f73a94b80c18fe49bcd28af0123d94426eb92'/>
<id>162f73a94b80c18fe49bcd28af0123d94426eb92</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow embedding of plcs12 files from the fileselect dialog</title>
<updated>2012-09-04T21:43:23+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-09-04T21:43:23+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=196a0efe693b5f6c4bd79defc247adbbdff0f7e0'/>
<id>196a0efe693b5f6c4bd79defc247adbbdff0f7e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace /mnt/sdcard with real location of external storage, add read sdcard permission to manifest</title>
<updated>2012-09-03T15:41:40+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-09-03T15:41:40+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=477e8afbc003326e07d9b9c1936d027591e4f31f'/>
<id>477e8afbc003326e07d9b9c1936d027591e4f31f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow clearing of the CA Cert (closes issue #57)</title>
<updated>2012-07-20T22:23:13+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-07-20T22:23:13+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=e8261bbc90f46dad1a7c0bb8bd998ebf9107f0f9'/>
<id>e8261bbc90f46dad1a7c0bb8bd998ebf9107f0f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The 'be ready for Jelly Beans' commit</title>
<updated>2012-06-28T17:33:05+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-06-28T17:33:05+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=78172a10165a969b8c002b6bdcf9dc47fa6cd5f3'/>
<id>78172a10165a969b8c002b6bdcf9dc47fa6cd5f3</id>
<content type='text'>
- 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- 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
</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>
</feed>
