<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ics_openvpn.git/src/de/blinkt/openvpn/FileSelectionFragment.java, branch v0.6.55</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 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>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>Start work on clear setting for file dialog</title>
<updated>2012-07-16T20:48:23+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-07-16T20:48:23+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=7fe13897bf2ba07ac553b3a47cb5cf66c766f67d'/>
<id>7fe13897bf2ba07ac553b3a47cb5cf66c766f67d</id>
<content type='text'>
Add a quick start quide stating the obvious (*sigh*)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a quick start quide stating the obvious (*sigh*)
</pre>
</div>
</content>
</entry>
<entry>
<title>- Make Ipv6 support complete (minus tun-ipv6 warning)</title>
<updated>2012-05-17T22:06:49+00:00</updated>
<author>
<name>Arne Schwabe</name>
<email>arne@rfc2549.org</email>
</author>
<published>2012-05-17T22:06:49+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/ics_openvpn.git/commit/?id=7ad69e645000fc66951a79104b0ce5ac3478b9f3'/>
<id>7ad69e645000fc66951a79104b0ce5ac3478b9f3</id>
<content type='text'>
- Implement byte counter support in the log window
- Fix spelling of secret (closes issue #22)
- Replace &amp;quot;quot; with &amp;quot;, no idea what went wrong there (closes issue #21)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Implement byte counter support in the log window
- Fix spelling of secret (closes issue #22)
- Replace &amp;quot;quot; with &amp;quot;, no idea what went wrong there (closes issue #21)
</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>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>
</feed>
