Changelog

This commit is contained in:
Philipp Heckel 2025-12-29 20:57:45 -05:00
parent ea5efdd1b3
commit b3acda873a
2 changed files with 3 additions and 0 deletions

View file

@ -13,12 +13,14 @@
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <!-- As of Android 13, we need to ask for permission to post notifications -->
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/> <!-- Allows to ignore battery optimization without going to the settings -->
<!-- UnifiedPush "raise to foreground" requirement, see https://unifiedpush.org/developers/spec/android/#service-to-raise-to-the-foreground -->
<queries>
<intent>
<action android:name="org.unifiedpush.android.connector.RAISE_TO_FOREGROUND" />
</intent>
</queries>
<!-- Application -->
<application
android:name=".app.Application"
android:allowBackup="true"

View file

@ -1,6 +1,7 @@
Features:
* Allow publishing messages through the message bar and publish dialog (#98, ntfy-android#144)
* Define custom HTTP headers to support authenticated proxies, tunnels and SSO (#116, #1018, ntfy-android#132, ntfy-android#146, thanks to @CrazyWolf13)
* Implement UnifiedPush "raise to foreground" requirement (ntfy-android#98, ntfy-android#148, thanks to @p1gp1g)
* 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 (#957, ntfy-android#71, thanks to @brennenputh)