]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Release 1.8. v1.8
authorSoren Stoutner <soren@stoutner.com>
Sat, 16 Jul 2016 12:14:56 +0000 (05:14 -0700)
committerSoren Stoutner <soren@stoutner.com>
Sat, 16 Jul 2016 12:14:56 +0000 (05:14 -0700)
app/build.gradle
app/src/main/assets/about_changelog.html
app/src/main/java/com/stoutner/privacybrowser/BookmarksActivity.java

index 8b0f695b61fbd87e50cdfb5b214446f0ba5bccf0..0a2c245bf31141fa1ec09236dccca5fa25e2e85b 100644 (file)
@@ -29,8 +29,8 @@ android {
         applicationId "com.stoutner.privacybrowser"
         minSdkVersion 19
         targetSdkVersion 23
-        versionCode 8
-        versionName "1.7"
+        versionCode 9
+        versionName "1.8"
     }
 
     buildTypes {
index 8bef64365515a9625cce1d4947557d6f7a1799fe..dd374779160f7d6c804a4a41a126c2c0d028f83c 100644 (file)
 </head>
 
 <body>
+<h3>1.8 (version code 9)</h3>
+<p>16 July 2016 - minimum API 19, target API 23</p>
+<ul>
+    <li>Add a <a href="https://redmine.stoutner.com/issues/16">bookmarks interface</a>.</li>
+    <li>Add <a href="https://redmine.stoutner.com/issues/29">basic controls for form data</a>.</li>
+    <li>Fix a bug that <a href="https://redmine.stoutner.com/issues/40">prevented editing the custom user agent</a>.</li>
+    <li>Fix a bug that <a href="https://redmine.stoutner.com/issues/33">prevented URLs from loading if there are whitespaces at the beginning or end</a>.</li>
+</ul>
+
+
 <h3>1.7 (version code 8)</h3>
 <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>
index f228c5268a620abe125690ddc56afd564902d660..9b9bfb71dc11e385c3316ef606079be1d36f2890 100644 (file)
@@ -713,6 +713,9 @@ public class BookmarksActivity extends AppCompatActivity implements CreateBookma
             String cannot_rename_folder = getResources().getString(R.string.cannot_rename_folder) + " \"" + newFolderNameString + "\"";
             Snackbar.make(findViewById(R.id.bookmarks_coordinatorlayout), cannot_rename_folder, Snackbar.LENGTH_INDEFINITE).show();
         }
+
+        // Close the contextual action mode.
+        contextualActionMode.finish();
     }
 
     @Override