Bump backup format version number

This commit is contained in:
MM20 2024-01-19 22:33:07 +01:00
parent c16969ac5f
commit 8d490b3c05
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -139,10 +139,11 @@ class BackupManager(
/** /**
* Format changelog: * Format changelog:
* - 1.5: added `weight` to favorites * - 1.5: added `weight` to favorites
* - 1.9: migrate from proto to json data store
*/ */
private const val BackupFormatMajor = 1 private const val BackupFormatMajor = 1
private const val BackupFormatMinor = 8 private const val BackupFormatMinor = 9
internal const val BackupFormat = "$BackupFormatMajor.$BackupFormatMinor" internal const val BackupFormat = "$BackupFormatMajor.$BackupFormatMinor"
} }
} }