mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-30 12:32:17 -05:00
Changelog 3.1.1
This commit is contained in:
parent
18255e331b
commit
26a4cf2a56
@ -1,3 +1,7 @@
|
|||||||
|
## 3.1.1
|
||||||
|
* Fix key export to files (they were written partially)
|
||||||
|
* Fix crash on Android 2.3
|
||||||
|
|
||||||
## 3.1
|
## 3.1
|
||||||
* Fix crash on Android 5
|
* Fix crash on Android 5
|
||||||
* New certify screen
|
* New certify screen
|
||||||
|
@ -658,7 +658,7 @@ public class ProviderHelper {
|
|||||||
|
|
||||||
// first, mark all keys as not available
|
// first, mark all keys as not available
|
||||||
ContentValues values = new ContentValues();
|
ContentValues values = new ContentValues();
|
||||||
values.put(Keys.HAS_SECRET, 0);
|
values.put(Keys.HAS_SECRET, SecretKeyType.UNAVAILABLE.getNum());
|
||||||
mContentResolver.update(uri, values, null, null);
|
mContentResolver.update(uri, values, null, null);
|
||||||
|
|
||||||
// then, mark exactly the keys we have available
|
// then, mark exactly the keys we have available
|
||||||
|
@ -6,6 +6,12 @@ And don't add newlines before or after p tags because of transifex -->
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<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>
|
<h2>3.1</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fix crash on Android 5</li>
|
<li>Fix crash on Android 5</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user