|
@@ -5,6 +5,7 @@ import android.content.Context
|
|
|
import android.content.Intent
|
|
|
import android.net.Uri
|
|
|
import androidx.core.app.NotificationCompat
|
|
|
+import androidx.core.net.toUri
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
import eu.kanade.tachiyomi.data.notification.NotificationHandler
|
|
|
import eu.kanade.tachiyomi.data.notification.NotificationReceiver
|
|
@@ -25,22 +26,32 @@ internal class AppUpdateNotifier(private val context: Context) {
|
|
|
context.notificationManager.notify(id, build())
|
|
|
}
|
|
|
|
|
|
- fun promptUpdate(url: String) {
|
|
|
+ fun promptUpdate(release: GithubRelease) {
|
|
|
val intent = Intent(context, AppUpdateService::class.java).apply {
|
|
|
- putExtra(AppUpdateService.EXTRA_DOWNLOAD_URL, url)
|
|
|
+ putExtra(AppUpdateService.EXTRA_DOWNLOAD_URL, release.getDownloadLink())
|
|
|
}
|
|
|
- val pendingIntent = PendingIntent.getService(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT)
|
|
|
+ val updateIntent = PendingIntent.getService(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT)
|
|
|
+
|
|
|
+ val releaseIntent = Intent(Intent.ACTION_VIEW, release.releaseLink.toUri()).apply {
|
|
|
+ flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP
|
|
|
+ }
|
|
|
+ val releaseInfoIntent = PendingIntent.getActivity(context, release.hashCode(), releaseIntent, PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE)
|
|
|
+
|
|
|
with(notificationBuilder) {
|
|
|
- setContentTitle(context.getString(R.string.app_name))
|
|
|
- setContentText(context.getString(R.string.update_check_notification_update_available))
|
|
|
+ setContentTitle(context.getString(R.string.update_check_notification_update_available))
|
|
|
setSmallIcon(android.R.drawable.stat_sys_download_done)
|
|
|
- setContentIntent(pendingIntent)
|
|
|
+ setContentIntent(updateIntent)
|
|
|
|
|
|
clearActions()
|
|
|
addAction(
|
|
|
android.R.drawable.stat_sys_download_done,
|
|
|
context.getString(R.string.action_download),
|
|
|
- pendingIntent
|
|
|
+ updateIntent,
|
|
|
+ )
|
|
|
+ addAction(
|
|
|
+ R.drawable.ic_info_24dp,
|
|
|
+ context.getString(R.string.whats_new),
|
|
|
+ releaseInfoIntent,
|
|
|
)
|
|
|
}
|
|
|
notificationBuilder.show()
|