Update libsignal to 0.65.0

This commit is contained in:
Greyson Parrelli
2025-01-09 11:39:34 -05:00
parent ef71410eaf
commit 6487fbe687
415 changed files with 181 additions and 167 deletions

View File

@@ -39,6 +39,7 @@ class BackupValues(store: KeyValueStore) : SignalStoreValues(store) {
private const val KEY_LATEST_BACKUP_TIER = "backup.latestBackupTier"
private const val KEY_LAST_CHECK_IN_MILLIS = "backup.lastCheckInMilliseconds"
private const val KEY_LAST_CHECK_IN_SNOOZE_MILLIS = "backup.lastCheckInSnoozeMilliseconds"
private const val KEY_FIRST_APP_VERSION = "backup.firstAppVersion"
private const val KEY_NEXT_BACKUP_TIME = "backup.nextBackupTime"
private const val KEY_LAST_BACKUP_TIME = "backup.lastBackupTime"
@@ -120,6 +121,11 @@ class BackupValues(store: KeyValueStore) : SignalStoreValues(store) {
*/
var lastCheckInSnoozeMillis: Long by longValue(KEY_LAST_CHECK_IN_SNOOZE_MILLIS, 0)
/**
* The first app version to make a backup. Persisted across backup/restores to help indicate backup age.
*/
var firstAppVersion: String by stringValue(KEY_FIRST_APP_VERSION, "")
/**
* Key used to backup messages.
*/