diff options
author | mathieui <mathieui@mathieui.net> | 2013-03-11 23:06:52 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-03-11 23:06:52 +0100 |
commit | cec1151ecb577a270b9e1f0ae5eaa238d3269ae8 (patch) | |
tree | dad224100ca67d09301d6d2fc3d64b958b7acc54 /data | |
parent | d2d04162146e6df454d67a4e48ee6655af1d6c0a (diff) | |
download | poezio-cec1151ecb577a270b9e1f0ae5eaa238d3269ae8.tar.gz poezio-cec1151ecb577a270b9e1f0ae5eaa238d3269ae8.tar.bz2 poezio-cec1151ecb577a270b9e1f0ae5eaa238d3269ae8.tar.xz poezio-cec1151ecb577a270b9e1f0ae5eaa238d3269ae8.zip |
Fix #1839 (User mood/activity)
- Added as always new theming variables:
CHAR_ROSTER_MOOD, CHAR_ROSTER_ACTIVITY (a SNOWMAN!)
COLOR_ROSTER_MOOD, COLOR_ROSTER_ACTIVITY
- Added two new notification types in Theme.INFO_COLORS (mood/activity)
- Added new configuration options:
display_mood/activity/tune_notifications (those can be set for a
specific JID)
enable_user_tune/nick/activity/mood
- Added /activity and /mood commands, with completions
- Moved the old /activity to /last_activity
- Details are show in the ContactInfoWin if there is room, or with "i"
on a contact in the roster.
Diffstat (limited to 'data')
-rw-r--r-- | data/default_config.cfg | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index cbab6f64..19f435bc 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -347,11 +347,29 @@ display_tune_notifications = false # in the roster). # If this is set to false, then the display_tune_notifications # option will be ignored. -receive_user_tune = true +enable_user_tune = true + +# Display user mood notifications as information messages or not +display_mood_notifications = false + +# Receive the mood notifications or not (in order to display informations +# in the roster). +# If this is set to false, then the display_mood_notifications +# option will be ignored. +enable_user_mood = true + +# Display user activity notifications as information messages or not +display_activity_notifications = false + +# Receive the activity notifications or not (in order to display informations +# in the roster). +# If this is set to false, then the display_activity_notifications +# option will be ignored. +enable_user_activity = true # If set to true, use the nickname broadcasted by the user if none has been # set manually. -use_pep_nick = true +enable_user_nick = true # if true, chat states will be sent to the people you are talking to. # Chat states are, for example, messages informing that you are composing |