Release notes, make it work

This commit is contained in:
Philipp Heckel 2025-12-28 20:24:55 -05:00
parent 031e3832fe
commit 1c92db5591
2 changed files with 2 additions and 1 deletions

View file

@ -119,7 +119,7 @@ class DetailAdapter(private val activity: Activity, private val lifecycleScope:
messageView.autoLinkMask = 0
markwon.setMarkdown(messageView, message.toString())
} else {
messageView.autoLinkMask = Linkify.WEB_URLS
messageView.autoLinkMask = Linkify.WEB_URLS or Linkify.EMAIL_ADDRESSES or Linkify.PHONE_NUMBERS
messageView.text = message
}
messageView.movementMethod = BetterLinkMovementMethod.getInstance()

View file

@ -1,6 +1,7 @@
Features:
* Allow publishing messages through the message bar and publish dialog (#98, ntfy-android#144)
* Language selector to allow overriding the system language (#1508, ntfy-android#145, thanks to @hudsonm62 for reporting)
* Highlight phone numbers and email addresses in notifications (ntfy-android#71, thanks to @brennenputh)
Maintenance + bug fixes:
* Add support for (technically incorrect) 'image/jpg' MIME type (ntfy-android#142, thanks to @Murilobeluco)