Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Add short description to library update notification

Cette révision appartient à :
len 2017-03-30 20:02:48 +02:00
Parent 8ef3ab0d49
révision f9fec74ffd
2 fichiers modifiés avec 5 ajouts et 1 suppressions

Voir le fichier

@ -380,7 +380,6 @@ class LibraryUpdateService(
* @param updates a list of manga with new updates.
*/
private fun showResultNotification(updates: List<Manga>) {
val title = getString(R.string.notification_new_chapters)
val newUpdates = updates.map { it.title.chop(45) }.toMutableSet()
// Append new chapters from a previous, existing notification
@ -398,10 +397,14 @@ class LibraryUpdateService(
}
}
val title = getString(R.string.notification_new_chapters)
val text = getString(R.string.notification_new_chapters_text, newUpdates.size)
notificationManager.notify(Constants.NOTIFICATION_LIBRARY_RESULT_ID, notification {
setSmallIcon(R.drawable.ic_book_white_24dp)
setLargeIcon(notificationBitmap)
setContentTitle(title)
setContentText(text)
setStyle(NotificationCompat.BigTextStyle().bigText(newUpdates.joinToString("\n")))
setContentIntent(getNotificationIntent())
setAutoCancel(true)

Voir le fichier

@ -340,6 +340,7 @@
<!-- Library update service notifications -->
<string name="notification_update_progress">Update progress: %1$d/%2$d</string>
<string name="notification_new_chapters">New chapters found</string>
<string name="notification_new_chapters_text">For %1$d titles</string>
<string name="notification_cover_update_failed">Failed to update cover</string>
<string name="notification_first_add_to_library">Please add the manga to your library before doing this</string>
<string name="notification_not_connected_to_ac_title">Sync canceled</string>