Compare commits

...

2 Commits

Author SHA1 Message Date
jeffrey-signal 906801c199 Bump version to 8.10.3 2026-05-19 11:32:59 -04:00
Alex Hart e876451ccc Fix display bug with donation type. 2026-05-19 11:08:27 -03:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ val staticIps = Properties().apply { file("static-ips.properties").reader().use
staticIps.stringPropertyNames().forEach { rootProject.extra[it] = staticIps.getProperty(it) }
val canonicalVersionCode = 1687
val canonicalVersionName = "8.10.2"
val currentHotfixVersion = 0
val canonicalVersionName = "8.10.3"
val currentHotfixVersion = 1
val maxHotfixVersions = 100
// We don't want versions to ever end in 0 so that they don't conflict with nightly versions
@@ -236,8 +236,8 @@ private fun TitleAndSubtitle(inAppPayment: InAppPaymentTable.InAppPayment) {
when (inAppPayment.type) {
InAppPaymentType.UNKNOWN -> error("Unsupported type UNKNOWN")
InAppPaymentType.ONE_TIME_GIFT -> OneTimeGiftTitleAndSubtitle(inAppPayment)
InAppPaymentType.ONE_TIME_DONATION -> RecurringDonationTitleAndSubtitle(inAppPayment)
InAppPaymentType.RECURRING_DONATION -> OneTimeDonationTitleAndSubtitle(inAppPayment)
InAppPaymentType.ONE_TIME_DONATION -> OneTimeDonationTitleAndSubtitle(inAppPayment)
InAppPaymentType.RECURRING_DONATION -> RecurringDonationTitleAndSubtitle(inAppPayment)
InAppPaymentType.RECURRING_BACKUP -> error("This type is not supported")
}
}