summaryrefslogtreecommitdiff
path: root/src/core/wee-config.c
AgeCommit message (Collapse)Author
2009-03-27Fix SSL connection to some IRC servers using Diffie Hellman and small ↵Sebastien Helleu
exchange keys (bug #25996)
2009-03-07Add new key to zoom a window (meta-z by default) (task #7470)Sebastien Helleu
2009-03-06Add new hook type "process": launch command with fork and catch result ↵Sebastien Helleu
(rc/stdout/stderr) via callback
2009-02-26Fix "/window refresh" (key ctrl+L): force curses refresh (was broken by ↵Sebastien Helleu
previous commit for terminal resize)
2009-02-23Test return code of some malloc/strdupSebastien Helleu
2009-01-30Add plugin name in buffer name for filtersSebastien Helleu
For example, freenode.#weechat becomes irc.freenode.#weechat for buffer name in filter.
2009-01-03Update copyright datesSebastien Helleu
2009-01-02Add null values for options, new syntax for /set, reintroduce temporary IRC ↵Sebastien Helleu
server feature, improve IRC server options, new functions in API
2008-12-19Remove obsolete nicklist options, add /bar toggle to hide/show quietly a barSebastien Helleu
2008-12-17Use nick color for display of IRC action messagesSebastien Helleu
2008-12-15Add new bar filling types: columns_horizontal and columns_verticalSebastien Helleu
2008-11-24Fix option weechat.look.color_nicks_number, value is now immediately applied ↵Sebastien Helleu
on nicks by IRC plugin
2008-11-23Add support for more than one proxy, with proxy selection for each IRC ↵Sebastien Helleu
server (task #6859)
2008-11-19Remove old and unused color optionsSebastien Helleu
2008-11-02Remove debug plugin (merged to core), new debug variable for each plugin (no ↵Sebastien Helleu
more signals for setting debug)
2008-10-30Add new features to logger plugin (command /logger, log level, level by ↵Sebastien Helleu
buffer, mask by buffer, ..), fix some bugs New features: - new command /logger - log level, to log only some messages, according to importance (task #8592) - level by buffer: custom level for some buffers (or group of buffers) - log filename mask by buffer (or group of buffers) - marker line is added after display of backlog - add "delete" callback for config file sections - add "mkdir_parents" function to plugin API - remove old log options in IRC plugin Bug fix: - marker line is set only when user switches buffer (not when a plugin force switch, like IRC plugin does when opening server or channel buffer) - backlog fixed (sometimes lines were not properly displayed)
2008-10-25Add smart join/part/quit message filter in IRC plugin, add names for filtersSebastien Helleu
2008-10-24Add "enabled" flag for each filter (now possible to disable only one or some ↵Sebastien Helleu
filters)
2008-10-18Remove unused option look.input_format, fix refresh bug with input prompt ↵Sebastien Helleu
for IRC buffers
2008-10-18Add new argument "value" to function config_new_optionSebastien Helleu
2008-10-12Remove old title/nicklist/status/input, use of new barsSebastien Helleu
2008-10-03Add color for marker on lines where text sought is foundSebastien Helleu
2008-10-02Add new option scroll_page_percent to choose percent of height to scroll ↵Sebastien Helleu
with page_up and page_down keys (task #8702)
2008-10-02Add new /layout command and save_layout_on_exit config option, to ↵Sebastien Helleu
save/restore windows and buffers order (task #5453)
2008-09-23Fix bug when changing options look.set_title and look.save_on_exit (bug #24350)Sebastien Helleu
2008-09-18Remove "category" for buffers (keep only name).Sebastien Helleu
2008-07-03Add "buffer_nicklist" bar item and scroll feature in bars with /bar scrollSebastien Helleu
2008-06-28Add "default" option to command /bar, to create default bars (today only ↵Sebastien Helleu
input and status)
2008-06-21Remove infobarSebastien Helleu
2008-06-18Add new options for completion, optional stop instead of cycling with words ↵Sebastien Helleu
found
2008-06-17New plugin "notify", new option for debug messages in pluginsSebastien Helleu
2008-06-16New defaut time format for buffer linesSebastien Helleu
2008-06-15Fix weechat slogan (and it's now translated) (bug #23531)Sebastien Helleu
2008-06-15Fix bug/crash when any color option is changed (bug #23566)Sebastien Helleu
2008-06-07Fix crash with config reload and bug with empty key section (no more keys ↵Sebastien Helleu
after reload if weechat.conf was deleted) (bug #23514)
2008-06-03Add "const" keyword for some "char *" function arguments (core and plugins API)Sebastien Helleu
2008-06-02Add constants for config file read/write/set/unset callbacksSebastien Helleu
2008-06-01Reintroduce highlight (move code from irc plugin to core)Sebastien Helleu
2008-05-04Added new plugin "xfer" (used by irc plugin for DCC file and chat) (warning: ↵Sebastien Helleu
initial commit, not working yet)
2008-04-29Removed key functions (replaced by /input command)Sebastien Helleu
2008-04-29Added bar priority (replaces bar number)Sebastien Helleu
2008-04-27Added marker line (or dotted line), more visible than single magenta char ↵Sebastien Helleu
(char is still possible)
2008-04-24Added filling/color_fg/color_bg options for bars, added ↵Sebastien Helleu
config_get/config_get_plugin/config_set_plugin in script API
2008-04-22Added conditions for bar display and bar max sizeSebastien Helleu
2008-04-15Added keys by buffer (useful for buffers with free content that need own keys)Sebastien Helleu
These keys can be set thru API function "buffer_set", for example: weechat_buffer_set(my_buffer, "key_bind_meta2-A", "/mycommand up"); weechat_buffer_set(my_buffer, "key_bind_meta2-B", "/mycommand down"); weechat_buffer_set(my_buffer, "key_unbind_meta2-B", ""); weechat_buffer_set(my_buffer, "key_unbind_*", ""); These keys are volatile and not saved in any config file. So they must be set when buffer is open.
2008-04-15New format for [bar] section in weechat.conf file, bar options can be set ↵Sebastien Helleu
with /set command
2008-04-12Added new default bar item "time"Sebastien Helleu
2008-04-12Fixed minor bugs with help on optionsSebastien Helleu
2008-04-11Fixed bugs with nicks color and sorting in nicklistSebastien Helleu
2008-04-11Improved /set command, added /unset command, new name for config files (*.conf)Sebastien Helleu