Merge branch 'main' into constant-ring
This commit is contained in:
commit
e18be4a2a7
3 changed files with 4 additions and 1 deletions
|
@ -364,7 +364,7 @@ class NotificationService(val context: Context) {
|
||||||
}
|
}
|
||||||
return TaskStackBuilder.create(context).run {
|
return TaskStackBuilder.create(context).run {
|
||||||
addNextIntentWithParentStack(intent) // Add the intent, which inflates the back stack
|
addNextIntentWithParentStack(intent) // Add the intent, which inflates the back stack
|
||||||
getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE) // Get the PendingIntent containing the entire back stack
|
getPendingIntent(Random().nextInt(), PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE) // Get the PendingIntent containing the entire back stack
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -297,6 +297,7 @@ class SubscriberService : Service() {
|
||||||
.setContentIntent(pendingIntent)
|
.setContentIntent(pendingIntent)
|
||||||
.setSound(null)
|
.setSound(null)
|
||||||
.setShowWhen(false) // Don't show date/time
|
.setShowWhen(false) // Don't show date/time
|
||||||
|
.setOngoing(true) // Starting SDK 33 / Android 13, foreground notifications can be swiped away
|
||||||
.setGroup(NOTIFICATION_GROUP_ID) // Do not group with other notifications
|
.setGroup(NOTIFICATION_GROUP_ID) // Do not group with other notifications
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,11 +5,13 @@ Bug fixes + maintenance:
|
||||||
* Upgrade Android dependencies and build toolchain to SDK 33 (no ticket)
|
* Upgrade Android dependencies and build toolchain to SDK 33 (no ticket)
|
||||||
* Simplify F-Droid build: Disable tasks for Google Services (#516, thanks to @markosopcic)
|
* Simplify F-Droid build: Disable tasks for Google Services (#516, thanks to @markosopcic)
|
||||||
* Android 13: Ask for permission to post notifications (#508)
|
* Android 13: Ask for permission to post notifications (#508)
|
||||||
|
* Android 13: Do not allow swiping away the foreground notification (#521, thanks to @alexhorner for reporting)
|
||||||
* Remove timestamp when copying message text (#471, thanks to @wunter8)
|
* Remove timestamp when copying message text (#471, thanks to @wunter8)
|
||||||
* Fix auto-delete if some icons do not exist anymore (#506)
|
* Fix auto-delete if some icons do not exist anymore (#506)
|
||||||
* Fix notification icon color (#480, thanks to @s-h-a-r-d for reporting)
|
* Fix notification icon color (#480, thanks to @s-h-a-r-d for reporting)
|
||||||
* Fix topics do not re-subscribe to Firebase after restoring from backup (#511)
|
* Fix topics do not re-subscribe to Firebase after restoring from backup (#511)
|
||||||
* Fix crashes from large images (#474, thanks to @daedric7 for reporting)
|
* Fix crashes from large images (#474, thanks to @daedric7 for reporting)
|
||||||
|
* Fix notification click opens wrong subscription (#261, thanks to @SMAW for reporting)
|
||||||
* Add donate button (no ticket)
|
* Add donate button (no ticket)
|
||||||
|
|
||||||
Additional translations:
|
Additional translations:
|
||||||
|
|
Loading…
Reference in a new issue