/**
- * Copyright 2016 Soren Stoutner <soren@stoutner.com>.
+ * Copyright 2016-2017 Soren Stoutner <soren@stoutner.com>.
*
* This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
*
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
- versionCode 16
- versionName "1.14"
+ versionCode 17
+ versionName "1.14.1"
}
buildTypes {
<!--\r
- Copyright 2016 Soren Stoutner <soren@stoutner.com>.\r
+ Copyright 2016-2017 Soren Stoutner <soren@stoutner.com>.\r
\r
Translation 2016 Aaron Gerlach <aaron@gerlach.com>. Copyright assigned to Soren Stoutner <soren@stoutner.com>.\r
\r
\r
<body>\r
\r
+<h3>1.14.1 (version code 17)</h3>\r
+<p>4 January 2016 - minimum API 19, target API 25</p>\r
+<ul>\r
+ <li>Fix a bug that caused Privacy Browser to <a href="https://redmine.stoutner.com/issues/80">crash on some websites</a> when ad blocking was enabled.</li>\r
+</ul>\r
+\r
<h3>1.14 (version code 16)</h3>\r
<p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=6d3d23ab62cfdd6ef142dbdb764a6bac8fc38ce1">26 December 2016</a> - minimum API 19, target API 25</p>\r
<ul>\r
<!--
- Copyright 2016 Soren Stoutner <soren@stoutner.com>.
+ Copyright 2016-2017 Soren Stoutner <soren@stoutner.com>.
This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
<body>
+<h3>1.14.1 (version code 17)</h3>
+<p>4 January 2016 - minimum API 19, target API 25</p>
+<ul>
+ <li>Fix a bug that caused Privacy Browser to <a href="https://redmine.stoutner.com/issues/80">crash on some websites</a> when ad blocking was enabled.</li>
+</ul>
+
<h3>1.14 (version code 16)</h3>
<p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=6d3d23ab62cfdd6ef142dbdb764a6bac8fc38ce1">26 December 2016</a> - minimum API 19, target API 25</p>
<ul>
<!--
- Copyright 2016 Soren Stoutner <soren@stoutner.com>.
+ Copyright 2016-2017 Soren Stoutner <soren@stoutner.com>.
This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
<body>
+<h3>1.14.1 (código de versión 17)</h3>
+<p>4 de enero de 2016 - API mínimo 19, API dirigido 25</p>
+<ul>
+ <li>Arreglar un error que causó Navegador Privado a <a href="https://redmine.stoutner.com/issues/80">colgarse en algunas páginas de web</a> cuando el bloqueador de anuncios estaba habilitado.</li>
+</ul>
+
<h3>1.14 (código de versión 16)</h3>
<p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=6d3d23ab62cfdd6ef142dbdb764a6bac8fc38ce1">26 de diciembre de 2016</a> - API mínimo 19, API dirigido 25</p>
<ul>
// Create a variable to track if this is an ad server.
boolean requestHostIsAdServer = false;
- // Check all the subdomains of `requestHost` if it is not null.
+ // Check all the subdomains of `requestHost` if it is not `null`.
if (requestHost != null) {
while (requestHost.contains(".")) {
if (adServersSet.contains(requestHost)) {