mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-23 17:22:16 -05:00
changelog
This commit is contained in:
parent
cf499462c5
commit
a41228fc06
@ -1,3 +1,6 @@
|
|||||||
|
2.3.1
|
||||||
|
* hotfix for crash when upgrading from old versions
|
||||||
|
|
||||||
2.3
|
2.3
|
||||||
* remove unnecessary export of public keys when exporting secret key (thanks to Ash Hughes)
|
* remove unnecessary export of public keys when exporting secret key (thanks to Ash Hughes)
|
||||||
* fix setting expiry dates on keys (thanks to Ash Hughes)
|
* fix setting expiry dates on keys (thanks to Ash Hughes)
|
||||||
|
@ -110,7 +110,7 @@ public class KeychainDatabase extends SQLiteOpenHelper {
|
|||||||
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
|
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
|
||||||
Log.w(Constants.TAG, "Upgrading database from version " + oldVersion + " to " + newVersion);
|
Log.w(Constants.TAG, "Upgrading database from version " + oldVersion + " to " + newVersion);
|
||||||
|
|
||||||
// Upgrade from oldVersion through all methods to newest one
|
// Upgrade from oldVersion through all cases to newest one
|
||||||
for (int version = oldVersion; version < newVersion; ++version) {
|
for (int version = oldVersion; version < newVersion; ++version) {
|
||||||
Log.w(Constants.TAG, "Upgrading database to version " + version);
|
Log.w(Constants.TAG, "Upgrading database to version " + version);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user