diff options
author | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-02-23 21:33:37 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-02-23 21:33:37 +0100 |
commit | bfee69b00b2762a910f7f3f1714d18fddc99a9ad (patch) | |
tree | 56b370ae05bff9174ceeb4c7423d90c2d5bb8406 /res/xml/preferences.xml | |
parent | 4bffb4d94db6d32d8e98b8241402cb5e51a879e7 (diff) |
add contact to roster if a new conversation is created
Diffstat (limited to 'res/xml/preferences.xml')
-rw-r--r-- | res/xml/preferences.xml | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index 390dc3a9..e8f5d982 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -1,22 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > <PreferenceCategory - android:title="Security"> - <CheckBoxPreference - android:key="trust_unknown_tls_certificates" - android:title="Trust TLS certificates" - android:summary="Accounts with untrusted certificates simply will not connect to server" - /> + android:title="Security and Privacy Options"> <ListPreference android:key="default_conversation_encryption_type" android:title="Default conversation encryption" android:dialogTitle="Default conversation encryption" android:entries="@array/conversation_encryption_type_entries" android:entryValues="@array/conversation_encryption_type_values" - android:defaultValue="pgp"/> + android:defaultValue="none"/> + <CheckBoxPreference + android:key="grant_new_contacts" + android:title="Grant presence updates" + android:summary="Preemptivly grant and ask for presence subscription for contacts you created" + android:defaultValue="true" + /> </PreferenceCategory> <PreferenceCategory - android:title="Notification settings"> + android:title="Notification Settings"> <CheckBoxPreference android:key="show_notification" android:title="Notification" @@ -33,9 +34,13 @@ android:ringtoneType="notification" android:dependency="show_notification" android:summary="Play ringtone with notification"/> + <CheckBoxPreference + android:key="notify_in_conversation_when_highlighted" + android:title="Conference notification" + android:summary="Always notify when a new conference message arrives instead of only when highlighted"/> </PreferenceCategory> <PreferenceCategory - android:title="Advanced settings"> + android:title="UI Options"> <CheckBoxPreference android:key="show_phone_selfcontact_picture" android:title="Use Phones self contact picture" |