Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-07 | core: replace char "," by "~" in color codes to separate foreground from ↵ | Sébastien Helleu | |
background (closes #1264) | |||
2019-04-13 | core: merge functions gui_line_prefix_is_same_nick_as_{previous|next} (issue ↵ | Sébastien Helleu | |
#931) | |||
2019-04-13 | core: add option weechat.look.prefix_same_nick_middle (closes #930, closes #931) | Adrian Bjugård | |
2019-04-13 | core: add option weechat.look.buffer_time_same (closes #1127) | Simmo Saan | |
2019-03-28 | core: make "input_commands_allowed" work with /wait and /repeat commands ↵ | Sébastien Helleu | |
(issue #928) | |||
2019-03-24 | core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage ↵ | Sébastien Helleu | |
options This option is OFF by default and should be enabled only for tests, to measure test coverage. | |||
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-02-27 | core: remove function gui_buffer_match_list_split, use function ↵ | Sébastien Helleu | |
string_match_list | |||
2019-02-23 | core: add /filter addreplace (closes #1055) | Simmo Saan | |
2019-02-23 | Merge remote-tracking branch 'origin/pr/1311' | Sébastien Helleu | |
2019-02-21 | gui: only refilter affected buffers on filter change (closes #1309) | Simmo Saan | |
2019-02-19 | spell: rename "aspell" plugin to "spell" (issue #1299) | Sébastien Helleu | |
The following things have been renamed: - file aspell.conf -> spell.conf - options aspell.* -> spell.* - bar item aspell_dict -> spell_dict - bar item and local variable aspell_suggest -> spell_suggest - info aspell_dict -> spell_dict | |||
2019-01-26 | core: do not automatically add a space when completing "nick:" at the ↵ | Sébastien Helleu | |
beginning of command line The space can be added in option weechat.completion.nick_completer (this is now the default value of the option): /set weechat.completion.nick_completer ": " | |||
2019-01-20 | core: add default keys ctrl-F11/F12 to scroll up/down one page in nicklist ↵ | Sébastien Helleu | |
(same action as F11/F12) | |||
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-11-18 | core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272) | Sébastien Helleu | |
2018-11-04 | api: add functions string_base_{encode,decode}, remove functions ↵ | Sébastien Helleu | |
string_{encode,decode}_base64 | |||
2018-11-03 | core: split plugin-api.c into 2 files (API wrappers and infos/infolists) | Sébastien Helleu | |
2018-11-02 | api: return integer in function string_encode_base64 | Sébastien Helleu | |
2018-10-27 | core: split wee-secure.c into 3 files (secured data functions, buffer and ↵ | Sébastien Helleu | |
config) | |||
2018-10-21 | core: replace call to strncpy by memcpy | Sébastien Helleu | |
This fixes a gcc warning: "warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]". | |||
2018-10-01 | core: fix format of variables in printf-like functions (from int to long and ↵ | Sébastien Helleu | |
long long) | |||
2018-10-01 | core: replace "long unsigned int" by "unsigned long" | Sébastien Helleu | |
2018-08-16 | core: fix weechat_print modifier | Sébastien Helleu | |
All changes: - always send the Tab char in the weechat_print modifier string - handle special cases in weechat_print modifier: no prefix (" \t...") or no date ("\t\t...") | |||
2018-08-15 | core: remove use of pointer "buffer" once the line has been initialized | Sébastien Helleu | |
2018-08-15 | core: remove unneeded initialization of variable "highlight" | Sébastien Helleu | |
2018-08-15 | core: add comments in function to print a line | Sébastien Helleu | |
2018-08-15 | core: fix destruction of line prefix in weechat_print modifier | Sébastien Helleu | |
2018-08-15 | core: fix comparison of strings in weechat_print modifier | Sébastien Helleu | |
2018-08-14 | core: fix type of variables "buffer_name" and "buffer_type" sent to the ↵ | Sébastien Helleu | |
hook_line callback | |||
2018-08-12 | api: add function hook_line | Sébastien Helleu | |
2018-08-12 | core: fix check of tags in lines | Sébastien Helleu | |
All changes: - fix check of tags in lines: check lines without tags, fix check of tags with negation ("!tag") - add string functions string_split_tags and string_free_split_tags - add tests on function gui_line_match_tags | |||
2018-07-21 | gui: fix uncleared completion item (#1162) | Nils Görs | |
2018-07-15 | core: send signal "key_pressed" for mouse code only if the string is UTF-8 ↵ | Sébastien Helleu | |
valid (closes #1220) | |||
2018-07-13 | core: fix compiler warnings on calls to snprintf | Sébastien Helleu | |
2018-05-31 | core: send buffer pointer (when possible) in signal "hotlist_changed" ↵ | Sébastien Helleu | |
(closes #1133) When a buffer is added or updated in the hotlist, the buffer pointer is sent. When the hotlist is cleared or resorted, the buffer pointer is NULL. | |||
2018-05-22 | core: fix delete of previous/next word (keys Ctrl+w and Alt+d) (closes #1195) | Sébastien Helleu | |
2018-05-19 | core: remove unused variable | Sébastien Helleu | |
2018-03-18 | Replace getdtablesize() with sysconf(_SC_OPEN_MAX) | Fredrik Fornwall | |
From the getdtablesize(3) man page: It is not specified in POSIX.1; portable applications should employ sysconf(_SC_OPEN_MAX) instead of this call. Specifically, this fixes a compilation problem on Android. | |||
2018-03-18 | core: fix build with CMake and Ninja | Sébastien Helleu | |
2018-03-16 | core: quit WeeChat on ctrl-C (signal SIGINT) in headless mode | Sébastien Helleu | |
2018-03-16 | core: fix compilation error on Cygwin | Sébastien Helleu | |
2018-03-11 | doc: replace "rm -f" by "$(RM)" in makefiles | Sébastien Helleu | |
2018-03-11 | core: fix compilation warning on ignored returned value for function dup() | Sébastien Helleu | |
2018-03-11 | core: add binary weechat-headless to run WeeChat without interface (closes ↵ | Sébastien Helleu | |
#1120) The optional command line option "--daemon" runs WeeChat like a daemon (fork, new process group, file descriptors closed). | |||
2018-01-07 | core: set input callback on user buffers after /upgrade | Sébastien Helleu | |
2018-01-07 | core: fix some styles | Sébastien Helleu | |
2018-01-06 | core: add option "add" in command /buffer (issue #1113) | Sébastien Helleu | |
2018-01-05 | core: update copyright dates | Sébastien Helleu | |