]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Completely remove Privacy Browser from RAM after exit. Updated German translations...
authorSoren Stoutner <soren@stoutner.com>
Tue, 25 Oct 2016 14:32:19 +0000 (07:32 -0700)
committerSoren Stoutner <soren@stoutner.com>
Tue, 25 Oct 2016 14:32:19 +0000 (07:32 -0700)
app/src/main/assets/de/about_changelog.html
app/src/main/assets/de/about_licenses.html
app/src/main/assets/en/about_changelog.html
app/src/main/java/com/stoutner/privacybrowser/MainWebViewActivity.java
app/src/main/res/values-de/strings.xml

index 53947d3cba4b72f0f9d8b0b9f690648c38a6cac5..59e28e685d0e815ceb312985a1bf27c5c0d77dc5 100644 (file)
 \r
 <body>\r
 \r
+<h3>1.11 (version code 13)</h3>\r
+<p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=d9974f13e3a4dad62f760e02e94d8782d6e4bb3d">22. Oktober 2016</a> - Mindest-API 19, Ziel-API 24</p>\r
+<ul>\r
+    <li>Ziel-API auf 24 hochgestuft, um Multi-Window auf Android Nougat zu erm&ouml;glichen.</li>\r
+    <li>Fehler behoben, der seit Version 1.10 exisiterte und <a href="https://redmine.stoutner.com/issues/66">gro&szlig;e Auslastung der CPU</a> ohne wirklichen Grund verursachte.</li>\r
+    <li><a href="https://redmine.stoutner.com/issues/18">Funktion zum Drucken</a> hinzugef&uuml;gt.</li>\r
+    <li>Fehler bezüglich <a href="https://redmine.stoutner.com/issues/67">Dateidownloads</a> auf KitKat und Lollipop behoben.</li>\r
+    <li>Deutsche &Uuml;bersetzung durch <a href="mailto:aaron@gerlach.com">Aaron Gerlach</a> fur die neuen Funktionen aktualisiert.</li>\r
+</ul>\r
+\r
 <h3>1.10 (version code 12)</h3>\r
 <p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=c9365866ad37cc2b0b0fa53ee04aaaa4740f70b7">15. September 2016</a> - Mindest-API 19, Ziel-API 23</p>\r
 <ul>\r
index a4aa2f0c8365e04d1c419c61502ae5a40e0d69d1..0ca96583cccd1fabd4a366f7fb5e41e0ed18f835 100644 (file)
@@ -56,7 +56,7 @@
 
 <h3>Attribute</h3>
 
-<p>Die Icons in Privacy Browser kommen aus dem Android Material Icon Set, welches unter der <a href=https://creativecommons.org/licenses/by/4.0/>CC-BY Lizenz</a> ver&ouml;ffentlicht wird.</p>
+<p>Die Icons in Privacy Browser kommen aus dem <a href="https://design.google.com/icons/">Android Material Icon Set</a>, welches unter der <a href ="https://www.apache.org/licenses/LICENSE-2.0">Apache-Lizenz 2.0</a> ver&ouml;ffentlicht wird.</p>
 
 <p><img class="left" src="../en/images/privacy_browser.png">
     <img class="left" src="../en/images/privacy_browser_free.png">
 
 <p><img class="icon" src="../en/images/ic_close.png"> ic_close.</p>
 
+<br/>
+
+<p><img class="left" src="../en/images/cookie.png"> Cookie wurde von Google erstellt.
+    Er ist unter der <a href ="https://www.apache.org/licenses/LICENSE-2.0">Apache-Lizenz 2.0</a> ver&ouml;ffentlicht
+    und kann unter <a href="https://materialdesignicons.com/icon/cookie">Material Design Icons</a> heruntergeladen werden.</p>
+
 <hr/>
 
 <h3>GNU General Public License</h3>
index aaac76eaddb742d25c1630781325398f584a0e59..0f37264d643c16db0a5c163176fea1b76bedb179 100644 (file)
 <body>
 
 <h3>1.11 (version code 13)</h3>
-<p>22 October 2016 - minimum API 19, target API 24</p>
+<p><a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=commitdiff;h=d9974f13e3a4dad62f760e02e94d8782d6e4bb3d">22 October 2016</a> - minimum API 19, target API 24</p>
 <ul>
     <li>Bump target API to 24, which enables multi-window support on Nougat.</li>
     <li>Fix a bug introduced in version 1.10 that consumed <a href="https://redmine.stoutner.com/issues/66">massive amounts of CPU</a> for no good reason.</li>
     <li>Add <a href="https://redmine.stoutner.com/issues/18">printing support</a>.</li>
     <li>Fix <a href="https://redmine.stoutner.com/issues/67">file downloading</a> on KitKat and Lollipop.</li>
+    <li>Updated German translation provided by <a href="mailto:aaron@gerlach.com">Aaron Gerlach</a>.</li>
 </ul>
 
 <h3>1.10 (version code 12)</h3>
index 982ff2d254c1de5ad9df6e43a2e7a489d22c970d..9bcc6e4b0b528087aee3577e427fdd1656b4a2de 100644 (file)
@@ -878,12 +878,15 @@ public class MainWebViewActivity extends AppCompatActivity implements Navigation
                 // Destroy the internal state of the webview.
                 mainWebView.destroy();
 
-                // Close Privacy Browser.  finishAndRemoveTask also removes Privacy Browser from the recent app list.
+                // Close Privacy Browser.  `finishAndRemoveTask` also removes Privacy Browser from the recent app list.
                 if (Build.VERSION.SDK_INT >= 21) {
                     finishAndRemoveTask();
                 } else {
                     finish();
                 }
+
+                // Remove the terminated program from RAM.  The status code is `0`.
+                System.exit(0);
                 break;
 
             default:
index 587e93f6037f0c98adbb7f3c9b65e73a2cf0d450..e592b1717914fe240c6e6d05bab451ff2c36d088 100644 (file)
         <string name="one_hundred_fifty_percent">150%</string>
         <string name="one_hundred_seventy_five_percent">175%</string>
         <string name="two_hundred_percent">200%</string>
+    <string name="find_on_page">Auf Seite finden</string>
     <string name="share">Teilen</string>
     <string name="add_to_home_screen">Zur Startseite hinzufügen</string>
+    <string name="print">Drucken</string>
+        <string name="privacy_browser_web_page">Privacy Browser-Website</string>
     <string name="refresh">Aktualisieren</string>
 
+    <!-- Find on Page. -->
+    <string name="previous">Vorheriges</string>
+    <string name="next">Nächstes</string>
+
     <!-- Create Home Screen Shortcut Alert Dialog. -->
     <string name="create_shortcut">Verknüpfung erstellen</string>
     <string name="shortcut_name">Name der Verknüpfung</string>