<body>
<h3>1.7 (version code 8)</h3>
-<p>16 June 2016 - minimum API 19, target API 23</p>
+<p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=347e702f50a02782add9400afa552fbee1cf7ab6;ds=inline">16 June 2016</a> - minimum API 19, target API 23</p>
<ul>
<li>Create an <a href="https://redmine.stoutner.com/issues/15">About activity with a TabView</a>.</li>
<li>Create a Guide activity with a TabView.</li>
color: 0D4781;
}
- strong {
+ item {
color: BF360C;
+ font-weight: bold;
}
</style>
</head>
<body>
<h3>Cleaning Out the Cruft</h3>
-<p>Clear and Exit does the following things:</p>
+<p><strong>Clear and Exit</strong> does the following things:</p>
<ul>
- <li><strong>Removes all cookies</strong>.</li>
- <li><strong>Removes all DOM storage</strong>.</li>
- <li><strong>Clears the cache, including disk files</strong>.</li>
- <li><strong>Clears the back/forward history</strong>.</li>
- <li><strong>Destroys the internal state of the WebView</strong>.</li>
- <li><strong>Closes Privacy Browser</strong>. For Android Lollipop and newer (version >= 5.0 or API >= 21), Privacy Browser is also removed from the recent app list.</li>
+ <li><item>Removes all cookies</item>.</li>
+ <li><item>Removes all DOM storage</item>.</li>
+ <li><item>Clears the cache, including disk files</item>.</li>
+ <li><item>Clears the back/forward history</item>.</li>
+ <li><item>Destroys the internal state of the WebView</item>.</li>
+ <li><item>Closes Privacy Browser</item>. For Android Lollipop and newer (version >= 5.0 or API >= 21), Privacy Browser is also removed from the recent app list.</li>
</ul>
</body>
</html>
\ No newline at end of file
<li><strong>Automatically loading of privacy settings by URL</strong>.</li>
<li><strong>Encrypted sync between devices</strong>.</li>
<li><strong>Tabbed browsing</strong>.</li>
+ <li><strong>Integrated ad blocker</strong>.</li>
</ul>
<p>A full list of planned features and bug reports is available on <a href="https://redmine.stoutner.com/projects/privacy-browser/issues">redmine.stoutner.com</a>.</p>
}
private void loadUrlFromTextBox() throws UnsupportedEncodingException {
- // Get the text from urlTextBox and convert it to a string.
- String unformattedUrlString = urlTextBox.getText().toString();
+ // Get the text from urlTextBox and convert it to a string. trim() removes white spaces from the beginning and end of the string.
+ String unformattedUrlString = urlTextBox.getText().toString().trim();
+
URL unformattedUrl = null;
Uri.Builder formattedUri = new Uri.Builder();