From 71ce4842aad721295fbfd2793a567d8de455bc6c Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 18 Apr 2014 23:07:05 +0000 Subject: [PATCH] [weechat] Updates for 0.4.3 --- weechat/alias.conf | 2 +- weechat/aspell.conf | 9 +++++--- weechat/charset.conf | 2 +- weechat/irc.conf | 32 ++++++++++++++++++++-------- weechat/logger.conf | 8 ++++++- weechat/plugins.conf | 10 ++++----- weechat/relay.conf | 13 +++++++++++- weechat/rmodifier.conf | 2 +- weechat/script.conf | 48 ++++++++++++++++++++++++++++++++++++++++++ weechat/sec.conf | 11 ++++++++++ weechat/weechat.conf | 48 ++++++++++++++++++++++++++++++++++++------ weechat/xfer.conf | 5 ++++- 12 files changed, 159 insertions(+), 31 deletions(-) create mode 100644 weechat/script.conf create mode 100644 weechat/sec.conf diff --git a/weechat/alias.conf b/weechat/alias.conf index 1b62df3..2a5d648 100644 --- a/weechat/alias.conf +++ b/weechat/alias.conf @@ -1,5 +1,5 @@ # -# alias.conf -- weechat v0.3.7 +# alias.conf -- weechat v0.4.3 # [cmd] diff --git a/weechat/aspell.conf b/weechat/aspell.conf index eb2ccbe..49b99fb 100644 --- a/weechat/aspell.conf +++ b/weechat/aspell.conf @@ -1,15 +1,18 @@ # -# aspell.conf -- weechat v0.3.7 +# aspell.conf -- weechat v0.4.3 # -[look] -color = lightred +[color] +misspelled = lightred +suggestions = default [check] commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic" default_dict = "" during_search = off +enabled = off real_time = off +suggestions = -1 word_min_length = 2 [dict] diff --git a/weechat/charset.conf b/weechat/charset.conf index 2fda9fd..54dc741 100644 --- a/weechat/charset.conf +++ b/weechat/charset.conf @@ -1,5 +1,5 @@ # -# charset.conf -- weechat v0.3.7 +# charset.conf -- weechat v0.4.3 # [default] diff --git a/weechat/irc.conf b/weechat/irc.conf index 533678d..52bee77 100644 --- a/weechat/irc.conf +++ b/weechat/irc.conf @@ -1,5 +1,5 @@ # -# irc.conf -- weechat v0.3.7 +# irc.conf -- weechat v0.4.3 # [look] @@ -9,6 +9,7 @@ color_nicks_in_names = off color_nicks_in_nicklist = off color_nicks_in_server_messages = on color_pv_nick_like_channel = on +ctcp_time_format = "%a, %d %b %Y %T %z" display_away = local display_ctcp_blocked = on display_ctcp_reply = on @@ -16,16 +17,15 @@ display_ctcp_unknown = on display_host_join = on display_host_join_local = on display_host_quit = on +display_join_message = "329,332,333,366" display_old_topic = on display_pv_away_once = on display_pv_back = on -hide_nickserv_pwd = on highlight_channel = "$nick" highlight_pv = "$nick" highlight_server = "$nick" -highlight_tags = "irc_privmsg,irc_notice" +highlight_tags_restrict = "irc_privmsg,irc_notice" item_away_message = on -item_channel_modes = on item_channel_modes_hide_key = off item_display_server = buffer_plugin item_nick_modes = on @@ -34,19 +34,27 @@ msgbuffer_fallback = current new_channel_position = none new_pv_position = none nick_color_force = "" +nick_color_hash = sum nick_color_stop_chars = "_|[" nick_completion_smart = speakers -nick_prefix = "" -nick_suffix = "" +nick_mode = prefix +nick_mode_empty = off +nicks_hide_password = "nickserv" notice_as_pv = auto +notice_welcome_redirect = on +notice_welcome_tags = "" notify_tags_ison = "notify_message" notify_tags_whois = "notify_message" part_closes_buffer = off +pv_buffer = independent +pv_tags = "notify_private" raw_messages = 256 server_buffer = merge_with_core smart_filter = on smart_filter_delay = 5 smart_filter_join = on +smart_filter_join_unmask = 30 +smart_filter_mode = "ovh" smart_filter_nick = on smart_filter_quit = on topic_strip_colors = off @@ -60,26 +68,28 @@ item_lag_finished = yellow message_join = green message_quit = red mirc_remap = "1,-1:darkgray" -nick_prefix = green nick_prefixes = "q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue" -nick_suffix = green notice = green reason_quit = default topic_new = white topic_old = darkgray [network] +alternate_nick = on autoreconnect_delay_growing = 2 autoreconnect_delay_max = 1800 +ban_mask_default = "*!$user@$host" colors_receive = on colors_send = on lag_check = 60 -lag_disconnect = 0 +lag_max = 1800 lag_min_show = 500 +lag_reconnect = 0 lag_refresh_interval = 1 notify_check_ison = 1 notify_check_whois = 5 send_unknown_commands = off +whois_double_nick = on [msgbuffer] @@ -103,6 +113,7 @@ capabilities = "" command = "" command_delay = 0 connection_timeout = 60 +default_msg_kick = "" default_msg_part = "WeeChat %v" default_msg_quit = "WeeChat %v" ipv6 = off @@ -119,6 +130,7 @@ sasl_username = "" ssl = off ssl_cert = "" ssl_dhkey_size = 2048 +ssl_fingerprint = "" ssl_priorities = "NORMAL" ssl_verify = on username = "eryn" @@ -131,6 +143,7 @@ freenode.ssl = on freenode.ssl_cert freenode.ssl_priorities freenode.ssl_dhkey_size = 1024 +freenode.ssl_fingerprint freenode.ssl_verify freenode.password freenode.capabilities @@ -155,6 +168,7 @@ freenode.anti_flood_prio_high freenode.anti_flood_prio_low freenode.away_check freenode.away_check_max_nicks +freenode.default_msg_kick freenode.default_msg_part freenode.default_msg_quit freenode.notify diff --git a/weechat/logger.conf b/weechat/logger.conf index 0a664d5..112da73 100644 --- a/weechat/logger.conf +++ b/weechat/logger.conf @@ -1,16 +1,22 @@ # -# logger.conf -- weechat v0.3.7 +# logger.conf -- weechat v0.4.3 # [look] backlog = 20 +[color] +backlog_end = default +backlog_line = default + [file] auto_log = on flush_delay = 120 info_lines = off mask = "$plugin.$name.weechatlog" name_lower_case = on +nick_prefix = "" +nick_suffix = "" path = "%h/logs/" replacement_char = "_" time_format = "%Y-%m-%d %H:%M:%S" diff --git a/weechat/plugins.conf b/weechat/plugins.conf index 2061944..98b974b 100644 --- a/weechat/plugins.conf +++ b/weechat/plugins.conf @@ -1,14 +1,12 @@ # -# plugins.conf -- weechat v0.3.7 +# plugins.conf -- weechat v0.4.3 # [var] fifo.fifo = "on" -guile.check_license = "on" -lua.check_license = "on" -perl.check_license = "on" +guile.check_license = "off" +lua.check_license = "off" +perl.check_license = "off" python.check_license = "on" -ruby.check_license = "on" -tcl.check_license = "on" [desc] diff --git a/weechat/relay.conf b/weechat/relay.conf index c7eec4f..e5c404c 100644 --- a/weechat/relay.conf +++ b/weechat/relay.conf @@ -1,5 +1,5 @@ # -# relay.conf -- weechat v0.3.7 +# relay.conf -- weechat v0.4.3 # [look] @@ -7,6 +7,7 @@ auto_open_buffer = on raw_messages = 256 [color] +client = cyan status_active = lightblue status_auth_failed = lightred status_connecting = yellow @@ -20,7 +21,17 @@ text_selected = white allowed_ips = "" bind_address = "" compression_level = 6 +ipv6 = on max_clients = 5 password = "" +ssl_cert_key = "%h/ssl/relay.pem" +websocket_allowed_origins = "" + +[irc] +backlog_max_minutes = 1440 +backlog_max_number = 256 +backlog_since_last_disconnect = on +backlog_tags = "irc_privmsg" +backlog_time_format = "[%H:%M] " [port] diff --git a/weechat/rmodifier.conf b/weechat/rmodifier.conf index 76fb005..ab4fe79 100644 --- a/weechat/rmodifier.conf +++ b/weechat/rmodifier.conf @@ -1,5 +1,5 @@ # -# rmodifier.conf -- weechat v0.3.7 +# rmodifier.conf -- weechat v0.4.3 # [look] diff --git a/weechat/script.conf b/weechat/script.conf new file mode 100644 index 0000000..cf24204 --- /dev/null +++ b/weechat/script.conf @@ -0,0 +1,48 @@ +# +# script.conf -- weechat v0.4.3 +# + +[look] +columns = "%s %n %V %v %u | %d | %t" +diff_color = on +diff_command = "auto" +display_source = on +quiet_actions = on +sort = "p,n" +translate_description = on +use_keys = on + +[color] +status_autoloaded = cyan +status_held = white +status_installed = lightcyan +status_obsolete = lightmagenta +status_popular = yellow +status_running = lightgreen +status_unknown = lightred +text = default +text_bg = default +text_bg_selected = red +text_date = default +text_date_selected = white +text_delimiters = default +text_description = default +text_description_selected = white +text_extension = default +text_extension_selected = white +text_name = cyan +text_name_selected = lightcyan +text_selected = white +text_tags = brown +text_tags_selected = yellow +text_version = magenta +text_version_loaded = default +text_version_loaded_selected = white +text_version_selected = lightmagenta + +[scripts] +autoload = on +cache_expire = 60 +dir = "%h/script" +hold = "" +url = "http://www.weechat.org/files/plugins.xml.gz" diff --git a/weechat/sec.conf b/weechat/sec.conf new file mode 100644 index 0000000..527627f --- /dev/null +++ b/weechat/sec.conf @@ -0,0 +1,11 @@ +# +# sec.conf -- weechat v0.4.3 +# + +[crypt] +cipher = aes256 +hash_algo = sha256 +passphrase_file = "" +salt = on + +[data] diff --git a/weechat/weechat.conf b/weechat/weechat.conf index e07a04b..8e92c3b 100644 --- a/weechat/weechat.conf +++ b/weechat/weechat.conf @@ -1,5 +1,5 @@ # -# weechat.conf -- weechat v0.3.7 +# weechat.conf -- weechat v0.4.3 # [debug] @@ -9,6 +9,7 @@ command_after_plugins = "" command_before_plugins = "" display_logo = on display_version = on +sys_rlimit = "" [look] align_end_of_lines = message @@ -16,7 +17,13 @@ bar_more_down = "++" bar_more_left = "<<" bar_more_right = ">>" bar_more_up = "--" +buffer_auto_renumber = on buffer_notify_default = all +buffer_position = end +buffer_search_case_sensitive = off +buffer_search_force_default = off +buffer_search_regex = off +buffer_search_where = message buffer_time_format = "%H:%M:%S" color_basic_force_bold = off color_inactive_buffer = off @@ -25,13 +32,16 @@ color_inactive_prefix = on color_inactive_prefix_buffer = on color_inactive_time = off color_inactive_window = off +color_nick_offline = off color_pairs_auto_reset = 5 color_real_white = off command_chars = "" confirm_quit = off day_change = on -day_change_time_format = "%a, %d %b %Y" +day_change_message_1date = "-- %a, %d %b %Y --" +day_change_message_2dates = "-- %%a, %%d %%b %%Y (%a, %d %b %Y) --" eat_newline_glitch = off +emphasized_attributes = "" highlight = "" highlight_regex = "" highlight_tags = "" @@ -43,34 +53,44 @@ hotlist_names_count = 3 hotlist_names_length = 0 hotlist_names_level = 12 hotlist_names_merged_buffers = off +hotlist_prefix = "H: " hotlist_short_names = on hotlist_sort = group_time_asc +hotlist_suffix = "" hotlist_unique_numbers = on input_cursor_scroll = 20 input_share = none input_share_overwrite = off input_undo_max = 32 item_buffer_filter = "*" +item_buffer_zoom = "!" item_time_format = "%H:%M" jump_current_to_previous_buffer = on jump_previous_buffer_when_closing = on +jump_smart_back_to_buffer = on +key_bind_safe = on mouse = off mouse_timer_delay = 100 -nickmode = on -nickmode_empty = off +nick_prefix = "" +nick_suffix = "" +paste_bracketed = on +paste_bracketed_timer_delay = 10 paste_max_lines = 3 prefix_action = " *" prefix_align = right prefix_align_max = 0 prefix_align_min = 0 -prefix_align_more = on +prefix_align_more = "+" +prefix_align_more_after = on prefix_buffer_align = right prefix_buffer_align_max = 0 -prefix_buffer_align_more = on +prefix_buffer_align_more = "+" +prefix_buffer_align_more_after = on prefix_error = "=!=" prefix_join = "-->" prefix_network = "--" prefix_quit = "<--" +prefix_same_nick = "" prefix_suffix = "|" read_marker = line read_marker_always_show = off @@ -83,8 +103,12 @@ scroll_page_percent = 100 search_text_not_found_alert = on separator_horizontal = "-" separator_vertical = "" -set_title = on +tab_width = 1 time_format = "%a, %d %b %Y %T" +window_auto_zoom = off +window_separator_horizontal = on +window_separator_vertical = on +window_title = "WeeChat ${info:version}" [palette] @@ -94,6 +118,7 @@ chat = default chat_bg = default chat_buffer = white chat_channel = white +chat_day_change = cyan chat_delimiters = green chat_highlight = red chat_highlight_bg = default @@ -102,8 +127,13 @@ chat_inactive_buffer = darkgray chat_inactive_window = darkgray chat_nick = default chat_nick_colors = "" +chat_nick_offline = default +chat_nick_offline_highlight = default +chat_nick_offline_highlight_bg = blue chat_nick_other = cyan +chat_nick_prefix = green chat_nick_self = white +chat_nick_suffix = green chat_prefix_action = white chat_prefix_buffer = brown chat_prefix_buffer_inactive_buffer = darkgray @@ -122,6 +152,8 @@ chat_text_found_bg = lightmagenta chat_time = default chat_time_delimiters = brown chat_value = cyan +emphasized = yellow +emphasized_bg = magenta input_actions = lightgreen input_text_not_found = red nicklist_away = cyan @@ -166,8 +198,10 @@ max_visited_buffers = 50 [proxy] [network] +connection_timeout = 60 gnutls_ca_file = "/etc/ssl/certs/ca-certificates.crt" gnutls_handshake_timeout = 30 +proxy_curl = "" [plugin] autoload = "*" diff --git a/weechat/xfer.conf b/weechat/xfer.conf index d04e420..29e6680 100644 --- a/weechat/xfer.conf +++ b/weechat/xfer.conf @@ -1,10 +1,11 @@ # -# xfer.conf -- weechat v0.3.7 +# xfer.conf -- weechat v0.4.3 # [look] auto_open_buffer = on progress_bar_size = 20 +pv_tags = "notify_private" [color] status_aborted = lightred @@ -28,6 +29,8 @@ timeout = 300 [file] auto_accept_chats = off auto_accept_files = off +auto_accept_nicks = "" +auto_check_crc32 = off auto_rename = on auto_resume = on convert_spaces = on