]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Release v1.14.1. v1.14.1
authorSoren Stoutner <soren@stoutner.com>
Wed, 4 Jan 2017 18:27:59 +0000 (11:27 -0700)
committerSoren Stoutner <soren@stoutner.com>
Wed, 4 Jan 2017 18:27:59 +0000 (11:27 -0700)
app/build.gradle
app/src/main/assets/de/about_changelog.html
app/src/main/assets/en/about_changelog.html
app/src/main/assets/es/about_changelog.html
app/src/main/java/com/stoutner/privacybrowser/activities/MainWebView.java

index 049deea64e626ace1aba458bd02ac05ab2f8ac56..7e45a6393641121489d28c9d1dade09f98b6cb5e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * 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>.
  *
@@ -25,8 +25,8 @@ android {
     defaultConfig {
         minSdkVersion 19
         targetSdkVersion 25
-        versionCode 16
-        versionName "1.14"
+        versionCode 17
+        versionName "1.14.1"
     }
 
     buildTypes {
index 54a413c348152c8c1bc94d8231c719ce7498278c..97deea7b0c5786268637edf542e0bc96f4b27209 100644 (file)
@@ -1,5 +1,5 @@
 <!--\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
index 322f8e00634676a9782269c26ead172724a3ffa9..9429da8fe4a4427b4c4c5df00c7ed17ff1f1552b 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-  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>
index a5ac401d651d66c4050c5c3e47065d30b4914758..09b63ecce70d870643b2871ddd7d04c7efd9d975 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-  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&oacute;digo de versi&oacute;n 17)</h3>
+<p>4 de enero de 2016 - API m&iacute;nimo 19, API dirigido 25</p>
+<ul>
+    <li>Arreglar un error que caus&oacute; Navegador Privado a <a href="https://redmine.stoutner.com/issues/80">colgarse en algunas p&aacute;ginas de web</a> cuando el bloqueador de anuncios estaba habilitado.</li>
+</ul>
+
 <h3>1.14 (c&oacute;digo de versi&oacute;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&iacute;nimo 19, API dirigido 25</p>
 <ul>
index 2e5503b639c752084ff3d11305defe99fd0b1613..26237d7506af1cd5ee78c42c2e3fb7032031cced 100644 (file)
@@ -528,7 +528,7 @@ public class MainWebView extends AppCompatActivity implements NavigationView.OnN
                     // 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)) {