Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-22 | Added conditions for bar display and bar max size | Sebastien Helleu | |
2008-04-19 | Fixed output of names on channels (now it's sorted/grouped/colored, like ↵ | Sebastien Helleu | |
v0.2.6) (bug #22935), added "nicklist" infolist | |||
2008-04-19 | Fixed bug with use of wrong command hooked (bug #22974) | Sebastien Helleu | |
2008-04-18 | Replaced /builtin command by /command, and can now be used to launch ↵ | Sebastien Helleu | |
commands with same name from different plugins | |||
2008-04-18 | Added option name and value when option is changed with /set command | Sebastien Helleu | |
2008-04-18 | Use of /window command for some key bindings with actions on current window ↵ | Sebastien Helleu | |
(like scroll, ..) | |||
2008-04-17 | Added infolist "window", scroll in buffers with free content, fixed config ↵ | Sebastien Helleu | |
hooks (use of string_match) | |||
2008-04-16 | Added "toggle" value for /set on boolean options, fixed refresh bugs, added ↵ | Sebastien Helleu | |
option type for infolist "options" | |||
2008-04-15 | Added 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-15 | New format for [bar] section in weechat.conf file, bar options can be set ↵ | Sebastien Helleu | |
with /set command | |||
2008-04-12 | Added new default bar item "time" | Sebastien Helleu | |
2008-04-12 | Fixed minor bugs with help on options | Sebastien Helleu | |
2008-04-11 | Fixed bugs with nicks color and sorting in nicklist | Sebastien Helleu | |
2008-04-11 | Improved /set command, added /unset command, new name for config files (*.conf) | Sebastien Helleu | |
2008-04-03 | Bugs fixed with bars | Sebastien Helleu | |
2008-04-03 | Fixed compilation problems when gnutls dev lib is not found | Sebastien Helleu | |
2008-04-03 | New features and bug fixes with bars | Sebastien Helleu | |
2008-03-23 | Removed sizeof(char) and useless type casts from void* to another pointer ↵ | Sebastien Helleu | |
type (patch from Leonid Evdokimov) | |||
2008-03-23 | Check plugin version when loading it, to prevent crash when loading old plugins | Sebastien Helleu | |
2008-03-22 | Added tags for lines and custom filtering by tags or regex (task #7674), ↵ | Sebastien Helleu | |
fixed many memory leaks | |||
2008-03-16 | Added comments in code for core sources | Sebastien Helleu | |
2008-03-15 | New default settings for action/network prefixes, new default color for ↵ | Sebastien Helleu | |
network prefix | |||
2008-03-15 | Fixed bug in string_explode function, new function string_strip | Sebastien Helleu | |
2008-03-14 | Fixed bug in string_explode function, introduced with previous commit | Sebastien Helleu | |
2008-03-13 | Fixed string_explode function, when string ends with separator(s) | Sebastien Helleu | |
2008-03-11 | Fix bug with options startup_command_{before|after}_plugins | Sebastien Helleu | |
2008-03-11 | Added "startup" section in config, new options ↵ | Sebastien Helleu | |
"startup_command_{before|after}_plugins" | |||
2008-03-09 | Minor changes in /buffer command and topic of WeeChat buffer | Sebastien Helleu | |
2008-03-08 | Fixed help of /bar command | Sebastien Helleu | |
2008-03-07 | Save of bars in main WeeChat config file (weechat.rc) | Sebastien Helleu | |
2008-03-05 | Partial support of bars, with custom items. | Sebastien Helleu | |
Today only root bars are partially working (refresh is not always performed), and bars are not saved in configuration file. To be continued... | |||
2008-03-02 | Fixed bug with config file write (crash on FreeBSD) | Sebastien Helleu | |
2008-02-24 | Moved sigsegv function to wee-debug.c | Sebastien Helleu | |
2008-02-22 | New "irc/debug" buffer (replaces old IRC raw buffer), improved status bar ↵ | Sebastien Helleu | |
display, fixed nick in input for IRC buffers The "irc/debug" buffer is displayed when IRC debug is enabled (with "/debug irc" thru debug plugin). If the buffer is closed, it is reopen when new messages are written, until debug is disabled by user (with "/debug irc"). | |||
2008-02-21 | Added new plugin "debug" | Sebastien Helleu | |
2008-02-04 | Removed typedef for keyboard structures in gui-keyboard.h | Sebastien Helleu | |
2008-02-02 | Use of sizeof(char) in all malloc/realloc for strings | Sebastien Helleu | |
2008-02-01 | Fixed bugs/crashs when closing buffers | Sebastien Helleu | |
2008-02-01 | Fixed bug with prefixes in config file | Sebastien Helleu | |
2008-01-27 | Added config file functions in plugins API, improved /reload and /save ↵ | Sebastien Helleu | |
commands (now possible to reload/save some files only), fixed completion bug | |||
2008-01-24 | Add of "modifier" hook, migration of charset plugin to new API, SIGHUP ↵ | Sebastien Helleu | |
signal catched (reload all config files), better config files reloading | |||
2008-01-19 | Updated translations | Sebastien Helleu | |
2008-01-16 | Added new functions and script name completion in script plugins, fixed some ↵ | Sebastien Helleu | |
bugs in weelist management and script plugins New functions in script plugins API: gettext, ngettext, list_new, list_add, list_search, list_casesearch, list_get, list_set, list_next, list_prev, list_string, list_size, list_remove, list_remove_all, list_free. | |||
2008-01-15 | Merge /clear command into /buffer command (/buffer clear something) | Sebastien Helleu | |
2008-01-12 | Migration of Python plugin to new API, bugs fixed in Perl/Python plugins | Sebastien Helleu | |
2008-01-11 | New arguments for function "register" in scripts (author, license), with ↵ | Sebastien Helleu | |
optional check of license when script is loaded | |||
2008-01-10 | Added some missing functions in Perl plugin API | Sebastien Helleu | |
2008-01-09 | Partial migration of Perl plugin to new API | Sebastien Helleu | |
2008-01-06 | Added hotlist option for buffer in plugins API, improved buffer refreshs | Sebastien Helleu | |
2008-01-04 | Added macros for name/description/author/version/license of plugins | Sebastien Helleu | |