Changelog 3.1.1

This commit is contained in:
Dominik Schürmann 2014-10-30 12:48:06 +01:00
parent 18255e331b
commit 26a4cf2a56
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 3.1.1
* Fix key export to files (they were written partially)
* Fix crash on Android 2.3
## 3.1
* Fix crash on Android 5
* New certify screen

View File

@ -658,7 +658,7 @@ public class ProviderHelper {
// first, mark all keys as not available
ContentValues values = new ContentValues();
values.put(Keys.HAS_SECRET, 0);
values.put(Keys.HAS_SECRET, SecretKeyType.UNAVAILABLE.getNum());
mContentResolver.update(uri, values, null, null);
// then, mark exactly the keys we have available

View File

@ -6,6 +6,12 @@ And don't add newlines before or after p tags because of transifex -->
</head>
<body>
<h2>3.1.1</h2>
<ul>
<li>Fix key export to files (they were written partially)</li>
<li>Fix crash on Android 2.3</li>
</ul>
<h2>3.1</h2>
<ul>
<li>Fix crash on Android 5</li>