Some checks failed
CI - Multi-Platform Native / Build iOS (RSSuper) (push) Has been cancelled
CI - Multi-Platform Native / Build macOS (push) Has been cancelled
CI - Multi-Platform Native / Build Android (push) Has been cancelled
CI - Multi-Platform Native / Build Linux (push) Has been cancelled
CI - Multi-Platform Native / Build Summary (push) Has been cancelled
74 lines
2.2 KiB
XML
74 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<gsettings schema="org.rssuper.notification.preferences">
|
|
<prefix>rssuper</prefix>
|
|
<binding>
|
|
<property name="newArticles" type="boolean"/>
|
|
</binding>
|
|
<binding>
|
|
<property name="episodeReleases" type="boolean"/>
|
|
</binding>
|
|
<binding>
|
|
<property name="customAlerts" type="boolean"/>
|
|
</binding>
|
|
<binding>
|
|
<property name="badgeCount" type="boolean"/>
|
|
</binding>
|
|
<binding>
|
|
<property name="sound" type="boolean"/>
|
|
</binding>
|
|
<binding>
|
|
<property name="vibration" type="boolean"/>
|
|
</binding>
|
|
<binding>
|
|
<property name="preferences" type="json"/>
|
|
</binding>
|
|
|
|
<keyvalue>
|
|
<key name="newArticles">New Article Notifications</key>
|
|
<default>true</default>
|
|
<description>Enable notifications for new articles</description>
|
|
</keyvalue>
|
|
|
|
<keyvalue>
|
|
<key name="episodeReleases">Episode Release Notifications</key>
|
|
<default>true</default>
|
|
<description>Enable notifications for episode releases</description>
|
|
</keyvalue>
|
|
|
|
<keyvalue>
|
|
<key name="customAlerts">Custom Alert Notifications</key>
|
|
<default>true</default>
|
|
<description>Enable notifications for custom alerts</description>
|
|
</keyvalue>
|
|
|
|
<keyvalue>
|
|
<key name="badgeCount">Badge Count</key>
|
|
<default>true</default>
|
|
<description>Show badge count in app header</description>
|
|
</keyvalue>
|
|
|
|
<keyvalue>
|
|
<key name="sound">Sound</key>
|
|
<default>true</default>
|
|
<description>Play sound on notification</description>
|
|
</keyvalue>
|
|
|
|
<keyvalue>
|
|
<key name="vibration">Vibration</key>
|
|
<default>true</default>
|
|
<description>Vibrate device on notification</description>
|
|
</keyvalue>
|
|
|
|
<keyvalue>
|
|
<key name="preferences">All Preferences</key>
|
|
<default>{
|
|
"newArticles": true,
|
|
"episodeReleases": true,
|
|
"customAlerts": true,
|
|
"badgeCount": true,
|
|
"sound": true,
|
|
"vibration": true
|
|
}</default>
|
|
<description>All notification preferences as JSON</description>
|
|
</keyvalue>
|
|
</gsettings> |