From 825d5a6dd1aee29aef12d49d147b50f8ce7c15d0 Mon Sep 17 00:00:00 2001 From: mathieui <mathieui@mathieui.net> Date: Sun, 18 Dec 2011 20:16:19 +0100 Subject: Beep when receiving a MUC invitation (by default) --- data/default_config.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'data') diff --git a/data/default_config.cfg b/data/default_config.cfg index 540e021e..9763765b 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -170,7 +170,8 @@ show_inactive_tabs = true # - private (when a new private message is received, from your contacts or # someone from a MUC) # - message (any message from a MUC) -beep_on = highlight private +# - invite (when you receive an invitation for joining a MUC) +beep_on = highlight private invite # Theme -- cgit v1.2.3 From bbcd9c631ca6b47ad07eedc3ded9909045d6cc9e Mon Sep 17 00:00:00 2001 From: mathieui <mathieui@mathieui.net> Date: Thu, 26 Jan 2012 17:21:13 +0100 Subject: Add an auto_reconnect option --- data/default_config.cfg | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'data') diff --git a/data/default_config.cfg b/data/default_config.cfg index 9763765b..5284579f 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -10,6 +10,10 @@ server = anon.louiz.org # the port you'll use to connect port = 5222 +# Auto-reconnects you when you get disconnected from the server +# defaults to false because it should not be necessary +auto_reconnect = false + # the resource you will use # If it's empty, your resource will be chosen (most likely randomly) by the server # It is not recommended to use a resource that is easy to guess, because it can lead -- cgit v1.2.3 From 9534b5252b7cdf65bb4603eb6ab1c714578d4be1 Mon Sep 17 00:00:00 2001 From: Florent Le Coz <louiz@louiz.org> Date: Fri, 27 Jan 2012 19:35:10 +0100 Subject: Add ATTENTION colors to dark theme --- data/themes/dark.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'data') diff --git a/data/themes/dark.py b/data/themes/dark.py index 272c4d91..c7942290 100644 --- a/data/themes/dark.py +++ b/data/themes/dark.py @@ -20,6 +20,7 @@ class DarkTheme(theming.Theme): COLOR_TAB_CURRENT = (-1, 16) COLOR_TAB_NEW_MESSAGE = (3, 236) COLOR_TAB_HIGHLIGHT = (1, 236) + COLOR_TAB_ATTENTION = (6, 236) COLOR_TAB_PRIVATE = (2, 236) COLOR_TAB_DISCONNECTED = (13, 236) @@ -36,6 +37,7 @@ class DarkTheme(theming.Theme): COLOR_VERTICAL_TAB_NEW_MESSAGE = (3, -1) COLOR_VERTICAL_TAB_HIGHLIGHT = (1, -1) COLOR_VERTICAL_TAB_PRIVATE = (2, -1) + COLOR_VERTICAL_TAB_ATTENTION = (6, -1) COLOR_VERTICAL_TAB_DISCONNECTED = (13, -1) -- cgit v1.2.3 From b89cd8fd8322bf8aa23130398a0a70defcba708d Mon Sep 17 00:00:00 2001 From: mathieui <mathieui@mathieui.net> Date: Tue, 14 Feb 2012 11:49:09 +0100 Subject: Fixes #2303 (add user_list_sort option) --- data/default_config.cfg | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'data') diff --git a/data/default_config.cfg b/data/default_config.cfg index 5284579f..a717fbc2 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -198,6 +198,12 @@ vertical_tab_list_size = 20 vertical_tab_list_sort = desc +# Show the user list at the bottom when in a MUC +# (useful when you want to look at the bottom of the screen only) +# possible values: desc, asc +user_list_sort = desc + + # The nick of people who join, part, change their status, etc. in a MUC will # be displayed using their nick color if true. display_user_color_in_join_part = false -- cgit v1.2.3