Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-12 | core: update ChangeLog (issue #1461) | Sébastien Helleu | |
2020-04-12 | core: fix indentation | Sébastien Helleu | |
2020-04-12 | cmake: fix bugged WEECHAT_SHAREDIR definition exposed by DATAROOTDIR rename | Eli Schwartz | |
configure.ac defines this to /usr/share/weechat, which means scripts can load from this directory as a fallback for $HOME/.weechat/, but cmake defines this instead as /usr/share, which means system-installed fallback scripts would need to be installed to /usr/share/python/foo.py instead, and that's completely insane! Fix this discrepancy by creating a cmake define specifically for WEECHAT_SHAREDIR based on the datarootdir, just like autotools does it. | |||
2020-04-12 | cmake: rename internal variable SHAREDIR to DATAROOTDIR | Eli Schwartz | |
This is how other build systems (e.g. autotools) see the variable, and cmake's own GNUInstallDirs defines the same. It more clearly describes what this setting does vs. the ambiguous "sharedir". | |||
2020-04-12 | trigger: evaluate arguments of command when the trigger is created (closes ↵ | Sébastien Helleu | |
#1472) | |||
2020-04-11 | core: add contributor in AUTHORS.adoc (issue #1460) | Sébastien Helleu | |
2020-04-11 | core: update ChangeLog (issue #1460) | Sébastien Helleu | |
2020-04-11 | core: remove file cmake/FindPackageHandleStandardArgs.cmake from top ↵ | Sébastien Helleu | |
Makefile.am (issue #1460) | |||
2020-04-11 | cmake: removed vendored FindPackageHandleStandardArgs | Danilo Spinella | |
2020-04-11 | tests: add missing include of locale.h | Sébastien Helleu | |
This fixes build of tests on FreeBSD. | |||
2020-04-10 | tests: fix name of tests | Sébastien Helleu | |
2020-04-08 | tests: add tests on calc functions | Sébastien Helleu | |
Functions tested: - calc_operator_precedence - calc_pop_value - calc_list_free_cb - calc_operation - calc_operation_stacks | |||
2020-04-07 | tests: add missing include of stdio.h (issue #1469) | Sébastien Helleu | |
2020-04-07 | core: fix memory leak in calculation of expression on FreeBSD (closes #1469) | Sébastien Helleu | |
The memory leak was caused by a bug in function setlocale on FreeBSD: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243195 The fix is the following: * Remove the calls to setlocale when formatting the result. * The function snprintf is still called, and then is now locale dependent, for example in French the decimal separator is a comma instead of a dot. * A new function calc_sanitize_decimal_number is introduced to "sanitize" a decimal number: keep only the decimal separator (replace it by a dot) and remove any other separator found. Unit tests are added on these functions: * calc_sanitize_decimal_number * calc_format_result | |||
2020-04-07 | core: fix resize of a bar when its size is 0 (automatic) (closes #1470) | Sébastien Helleu | |
2020-04-06 | buflist: evaluate option buflist.look.sort (closes #1465) | Sébastien Helleu | |
The evaluation allows to use different sort for the bar items, for example with such value: ${if:${bar_item.name}==buflist?number:short_name} This sorts by number on the first bar item and by short name on the two other bar items. | |||
2020-04-05 | doc: update Polish auto-generated files | Sébastien Helleu | |
2020-04-05 | doc: update polish translation | Krzysztof Korościk | |
2020-04-05 | po: update polish translation | Krzysztof Korościk | |
2020-04-05 | doc: fix broken literal blocks in Japanese docs with Firefox (closes #1466) | Sébastien Helleu | |
2020-04-04 | python: fix crash when invalid UTF-8 string is in a WeeChat hashtable ↵ | Sébastien Helleu | |
converted to a Python dict (closes #1463) | |||
2020-04-03 | doc: update German auto-generated file | Sébastien Helleu | |
2020-04-03 | core: update German translations | Nils Görs | |
2020-04-02 | fset: fix help on options fset.format.option1 and fset.format.option2 | Sébastien Helleu | |
2020-03-31 | tests: add tests on function irc_protocol_cb_353 with option ↵ | Sébastien Helleu | |
irc.look.color_nicks_in_names set to on | |||
2020-03-30 | tests: add tests on IRC color functions | Sébastien Helleu | |
Functions tested: - irc_color_convert_rgb2irc - irc_color_convert_term2irc - irc_color_for_tags - irc_color_modifier_cb - irc_color_weechat_add_to_infolist | |||
2020-03-30 | tests: add test with remapped color in function irc_color_decode | Sébastien Helleu | |
2020-03-30 | irc: add missing modifier "irc_color_decode_ansi" in comment on function ↵ | Sébastien Helleu | |
irc_color_modifier_cb | |||
2020-03-29 | core: remove directory usr/share/applications/ from cygport file | Sébastien Helleu | |
2020-03-29 | Version 2.9-dev | Sébastien Helleu | |
2020-03-29 | Version 2.8 | Sébastien Helleu | |
2020-03-29 | core: add version 2.7.1 in weechat.spec | Sébastien Helleu | |
2020-03-28 | tests: add tests on remaining IRC protocol functions and callbacks | Sébastien Helleu | |
2020-03-28 | tests: add tests on function irc_protocol_get_message_tags | Sébastien Helleu | |
2020-03-28 | irc: move functions irc_protocol_get_message_tags and ↵ | Sébastien Helleu | |
irc_protocol_parse_time before protocol callbacks | |||
2020-03-28 | irc: remove empty lines | Sébastien Helleu | |
2020-03-27 | irc: fix typo in description of message 001 | Sébastien Helleu | |
2020-03-27 | irc: add examples of NOTICE and PRIVMSG messages to channel ops | Sébastien Helleu | |
2020-03-26 | tests: add tests on function irc_protocol_cb_ping | Sébastien Helleu | |
2020-03-26 | doc: update German documentation | Nils Görs | |
2020-03-25 | tests: add tests on function irc_protocol_cb_part | Sébastien Helleu | |
2020-03-24 | tests: add test with no arguments for AWAY command | Sébastien Helleu | |
2020-03-24 | tests: add tests on IRC protocol functions with not enough arguments | Sébastien Helleu | |
2020-03-23 | core: fix compiler warnings on Cygwin | Sébastien Helleu | |
2020-03-22 | doc: add question about configuration for a small terminal size in FAQ | Sébastien Helleu | |
2020-03-22 | doc: fix font size in literal blocks | Sébastien Helleu | |
2020-03-22 | doc: update German auto-generated file | Sébastien Helleu | |
2020-03-22 | core: update German translations | Nils Görs | |
2020-03-22 | Version 2.8-rc1 | Sébastien Helleu | |
2020-03-22 | core: fix C++ compiler flags with autotools | Sébastien Helleu | |