Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-04 | lua: add detection of Lua 5.4 | Sébastien Helleu | |
2021-08-08 | php: fix PHP 8+ build | Adam Saponara | |
2021-07-04 | typing: add typing plugin | Sébastien Helleu | |
2021-06-13 | doc: add Serbian translations | eevan78 | |
2021-05-12 | core: improve options to load GnuTLS system/user CAs (closes #972) | Sébastien Helleu | |
Changes: * new option: weechat.network.gnutls_ca_system * option weechat.network.gnutls_ca_file renamed to weechat.network.gnutls_ca_user * reload certificates when options are changed * remove build option CA_FILE | |||
2021-05-11 | core: mention evaluation with string_eval_path_home for CMake/autotools ↵ | Sébastien Helleu | |
option CA_FILE (issue #1285) | |||
2021-05-11 | core: set WeeChat home to empty string by default in CMake and autotools ↵ | Sébastien Helleu | |
(issue #1285) | |||
2021-05-08 | core: add detection of function mallinfo2 in autotools (issue #1636) | Sébastien Helleu | |
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2020-11-29 | Revert "core: add extra compiler options to check overflow of destination ↵ | Sébastien Helleu | |
buffer and output truncation" This reverts commit 4ff4a64209f63cf2a048f7941168336da58727ab. These compiler flags are not supported on old compiler version, for example on Debian Stretch/Jessie and Ubuntu Xenial (16.04). | |||
2020-11-28 | core: add extra compiler options to check overflow of destination buffer and ↵ | Sébastien Helleu | |
output truncation | |||
2020-08-01 | core: disable debug by default in autotools build | Sébastien Helleu | |
2020-06-13 | javascript: disable build by default and remove Debian packaging of ↵ | Sébastien Helleu | |
JavaScript plugin (issue #360) | |||
2020-04-18 | doc: fix asciidoctor options in autotools build | Sébastien Helleu | |
2020-04-18 | core: make GnuTLS a required dependency | Sébastien Helleu | |
2020-03-22 | core: fix C++ compiler flags with autotools | Sébastien Helleu | |
2020-03-22 | php: add detection of PHP 7.4 in autotools | Sébastien Helleu | |
Support of PHP 7.4 was added for CMake (in commit 72b107a970a7bed13da040be4515761ddbb1cbb4) but was still missing in autotools. | |||
2020-03-03 | core: add detection of Ruby 2.7 in autotools | Sébastien Helleu | |
2020-01-30 | Fix the build with guile-3.0.0. | orbea | |
v2: Update configure.ac too. Signed-off-by: orbea <orbea@riseup.net> | |||
2020-01-04 | core: update copyright dates | Sébastien Helleu | |
2019-11-18 | core: add different icons sizes (16x16 to 512x512) (closes #1347) | Sébastien Helleu | |
2019-11-12 | build: support python 3.8 | Eli Schwartz | |
In python 3.8, in order to link to -lpython3.8, you need to use the exported pkg-config interface 'python3-embed' (or 'python3-config --libs --embed'), see https://bugs.python.org/issue36721 for details. | |||
2019-11-10 | core: link with libnetwork and not libpthread on Haiku (autotools) (issue #1420) | Sébastien Helleu | |
2019-09-21 | core: remove detection of Ruby 1.8, since Ruby >= 1.9.1 is now required ↵ | Sébastien Helleu | |
(issue #1404) | |||
2019-09-21 | guile: add support of Guile 2.2 (issue #1098) | Sébastien Helleu | |
2019-07-31 | core: remove obsolete checks of old Python version in configure, properly ↵ | Sébastien Helleu | |
set Python version (issue #1382) | |||
2019-07-31 | core: fix help on python to build with Python 2 (issue #1382) | Sébastien Helleu | |
2019-07-31 | build: use pkg-config to properly link python | Eli Schwartz | |
fixes incorrect (non)detection of libpython3.Ym.so due to PEP 3149 since python's officially exported build flags know how to correctly link to python. | |||
2019-07-01 | core: compile with Python 3 by default | Sébastien Helleu | |
The CMake option ENABLE_PYTHON3 is renamed to ENABLE_PYTHON2, to use Python 2 first then fallback on Python 3. In the same way, the configure option --enable-python3 is renamed to --enable-python2, to use Python 2 first then fallback on Python 3. | |||
2019-05-11 | core: add detection of Ruby 2.6 in autotools | Sébastien Helleu | |
2019-03-23 | lua: add detection of Lua 5.3 with autotools | Sébastien Helleu | |
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-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for all links where secured http is supported | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-11-14 | core: fix forced highlight on messages sent to other buffers (closes #1277) | Sébastien Helleu | |
The C compiler flag "-fsigned--char" is used to force "char" data type to be always signed (which is what WeeChat expects). On ARM systems, char is unsigned by default, which is causing problems when WeeChat stores -1 in the notify_level (type: char). | |||
2018-10-16 | php: add detection of PHP 7.3 | Sébastien Helleu | |
2018-07-12 | python: add detection of Python 3.7 | Sébastien Helleu | |
2018-06-15 | Update configure.ac for v8 plugin | Chris Hills | |
Explicitly link with -lpthread to fix detection and compilation on some Linux distributions. | |||
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-05 | core: update copyright dates | Sébastien Helleu | |
2017-12-26 | core: add detection of Ruby 2.5 in autotools (issue #1122) | Sébastien Helleu | |
2017-10-14 | build: fix PHP library used to compile PHP plugin (closes #1078) | Sébastien Helleu | |
This was causing a dependency missing in debian packaging. | |||
2017-10-07 | javascript: fix detection of libv8 with autotools on Ubuntu Trusty | Sébastien Helleu | |
2017-09-23 | core: fix typo: Javascript -> JavaScript | Sébastien Helleu | |
2017-09-05 | php: ensure configure script finds PHP 7 | Adam Saponara | |
2017-09-03 | php: new php plugin | Adam Saponara | |
This plugin requires PHP >= 7.0. | |||
2017-06-25 | fset: add fset (Fast Set) plugin skeleton (WIP) | Sébastien Helleu | |
2017-05-18 | core: fix default value displayed in help of configure options | Sébastien Helleu | |
2017-03-26 | core: fix typo librairies -> libraries | Sébastien Helleu | |