Increase build version and updated deprecation dates (#1008)

pull/1710/head
SessionHero01 4 weeks ago committed by GitHub
parent 19a435b913
commit 3bdba5374e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,7 +15,7 @@ configurations.configureEach {
exclude module: "commons-logging"
}
def canonicalVersionCode = 395
def canonicalVersionCode = 396
def canonicalVersionName = "1.21.0"
def postFixSize = 10

@ -24,7 +24,7 @@ class LegacyGroupDeprecationManager(private val prefs: TextSecurePreferences) {
// The time all legacy groups will cease working. This value can be overridden by a debug
// facility.
private val defaultDeprecatedTime = ZonedDateTime.of(2025, 7, 1, 0, 0, 0, 0, ZoneId.of("UTC"))
private val defaultDeprecatedTime = ZonedDateTime.of(2025, 4, 2, 22, 0, 0, 0, ZoneId.of("UTC"))
private val mutableDeprecatedTime = MutableStateFlow<ZonedDateTime>(
prefs.deprecatedTimeOverride ?: defaultDeprecatedTime
@ -33,7 +33,7 @@ class LegacyGroupDeprecationManager(private val prefs: TextSecurePreferences) {
val deprecatedTime: StateFlow<ZonedDateTime> get() = mutableDeprecatedTime
// The time a warning will be shown to users that legacy groups are being deprecated.
private val defaultDeprecatingStartTime = ZonedDateTime.of(2025, 2, 24, 0, 0, 0, 0, ZoneId.of("UTC"))
private val defaultDeprecatingStartTime = ZonedDateTime.of(2025, 3, 19, 22, 0, 0, 0, ZoneId.of("UTC"))
private val mutableDeprecatingStartTime: MutableStateFlow<ZonedDateTime> = MutableStateFlow(
prefs.deprecatingStartTimeOverride ?: defaultDeprecatingStartTime

Loading…
Cancel
Save