Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-11 | logger: change default value of option logger.file.path to ↵ | Sébastien Helleu | |
"${weechat_data_dir}/logs" (issue #1285) | |||
2021-05-11 | fifo: change default value of option fifo.file.path to ↵ | Sébastien Helleu | |
"${weechat_runtime_dir}/weechat_fifo" (issue #1285) | |||
2021-05-11 | core: change default value of option weechat.plugin.path to ↵ | Sébastien Helleu | |
"${weechat_data_dir}/plugins" (issue #1285) | |||
2021-05-11 | core: split WeeChat home in 4 directories, use XDG directories by default ↵ | Sébastien Helleu | |
(issue #1285) The 4 directories (which can be the same): - config: configuration files, certificates - data: log/upgrade files, local plugins, scripts, xfer files - cache: script repository, scripts downloaded (temporary location) - runtime: FIFO pipe, relay UNIX sockets | |||
2021-05-11 | core: move home directory functions from weechat.c to wee-dir.c (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: move directory/file functions from wee-util.c to wee-dir.c (issue #1285) | Sébastien Helleu | |
2021-05-11 | logger: remove unused variable weechat_dir (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: set WeeChat home to empty string by default in CMake and autotools ↵ | Sébastien Helleu | |
(issue #1285) | |||
2021-05-11 | relay: evaluate option relay.network.ssl_cert_key (issue #1285) | Sébastien Helleu | |
2021-05-11 | irc: evaluate options irc.server_default.ssl_cert and ↵ | Sébastien Helleu | |
irc.server.xxx.ssl_cert (issue #1285) | |||
2021-05-11 | irc: evaluate options irc.server_default.sasl_key and ↵ | Sébastien Helleu | |
irc.server.xxx.sasl_key (issue #1285) | |||
2021-05-11 | core: evaluate option weechat.plugin.path (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: evaluate option weechat.network.gnutls_ca_file (issue #1285) | Sébastien Helleu | |
2021-05-08 | core: update ChangeLog (issue #1636) | Sébastien Helleu | |
2021-05-08 | core: add detection of function mallinfo2 in autotools (issue #1636) | Sébastien Helleu | |
2021-05-08 | core: Use mallinfo2() when available | Andrew Potter | |
mallinfo() is deprecated in glibc 2.33 | |||
2021-05-05 | doc: update German auto-generated file | Sébastien Helleu | |
2021-05-05 | doc: fix list of supported OS in FAQ | Sébastien Helleu | |
2021-05-04 | core: display a warning when the file with certificate authorities is not ↵ | Sébastien Helleu | |
found (option weechat.network.gnutls_ca_file) | |||
2021-04-26 | xfer: make file transfer fail when option xfer.file.auto_rename is off and ↵ | Sébastien Helleu | |
file already exists (closes #1633) | |||
2021-04-21 | doc: update German documentation | Nils Görs | |
2021-04-18 | doc: translate changes in chapter on bar conditions (user's guide) | Sébastien Helleu | |
2021-04-18 | doc: Update weechat.bar.*.condition to use info:term_width | Tobias Rehbein | |
In cf93e953b the `weechat.bar.*.condition` examples have been changed to use `${info:term_width}` instead of `${window.win_width}`. The user guide still shows the old example. This commit syncs the user guide with the on-line help. | |||
2021-04-18 | doc: update German documentation | Nils Görs | |
2021-04-17 | doc: add link to Archlinux wiki page about core dump files (user's guide) | Sébastien Helleu | |
2021-04-13 | core: update German translations | Nils Görs | |
2021-04-13 | Revert "core: add option "-save" in command /upgrade (closes #1630)" | Sébastien Helleu | |
This reverts commit 1df1903d230c4f8dbd0876b8bbc3454aa1af389c. This is not so easy to implement: it requires saving state of plugins, and plugins like irc can not save the connected state (except in a real upgrade case where the sockets are still valid after exec of the new binary). | |||
2021-04-12 | core: add option "-save" in command /upgrade (closes #1630) | Sébastien Helleu | |
2021-04-11 | tests: fix if/else blocks in trigger tests | Sébastien Helleu | |
2021-04-11 | doc: improve display of WeeChat version in info_hashtable ↵ | Sébastien Helleu | |
"irc_message_parse" (scripting guide) | |||
2021-04-11 | doc: mark info "python2_bin" as deprecated since version 2.6 (plugin API ↵ | Sébastien Helleu | |
reference) | |||
2021-04-11 | trigger: add tests on main trigger functions | Sébastien Helleu | |
2021-04-10 | irc: remove unused variable ptr_address and dead code | Sébastien Helleu | |
2021-04-10 | irc: remove dead assignment on variable pos_message | Sébastien Helleu | |
2021-04-10 | trigger: remove useless test | Sébastien Helleu | |
2021-04-09 | trigger: check that option is not NULL in function trigger_search_with_option | Sébastien Helleu | |
2021-04-08 | trigger: fix description of function trigger_name_valid | Sébastien Helleu | |
2021-04-08 | trigger: check that trigger is not NULL in functions trigger_rename and ↵ | Sébastien Helleu | |
trigger_copy | |||
2021-04-07 | doc: update German documentation | Nils Görs | |
2021-04-06 | trigger: add variables "${tg_shell_argc}" and "${tg_shell_argvN}" in command ↵ | Sébastien Helleu | |
trigger evaluated strings (closes #1624) | |||
2021-04-04 | core: evaluate left/right part of comparison after split on the comparison ↵ | Sébastien Helleu | |
operator in ${if:xxx} (closes #1627) To force evaluation of the expression before doing the comparison (less safe), the "${eval_cond:xxx}" can be used. With the old behavior we had: >> ${if:a==b} == [0] >> ${if:${raw:a==b}} == [0] >> ${if:${eval_cond:${raw:a==b}}} == [0] And with the new behavior, we have: >> ${if:a==b} == [0] >> ${if:${raw:a==b}} == [1] >> ${if:${eval_cond:${raw:a==b}}} == [0] | |||
2021-03-29 | doc: update German auto-generated file | Sébastien Helleu | |
2021-03-29 | core: update German translations | Nils Görs | |
2021-03-21 | buflist: improve help on option buflist.look.sort | Sébastien Helleu | |
2021-03-21 | core: update ChangeLog (issue #1621) | Sébastien Helleu | |
2021-03-21 | buflist: Fix wrong pointers being used in hdata_compare | Trygve Aaberge | |
This used pointer1 and pointer2 which are pointers to the buffers, but it should use ptr_hotlist1 and ptr_hotlist1 which are pointers to the hotlists it is trying to compare. | |||
2021-03-20 | core: update ChangeLog (issue #1591, issue #1592) | Sébastien Helleu | |
2021-03-20 | core: Prevent switching to start of visited buffers when jumping to next | Trygve Aaberge | |
If you run /input jump_next_visited_buffer right after switching to a buffer, weechat changes to the first buffer in the visited buffers list. That is, it wraps around and goes to the buffer you visited the longest ago. This patch fixes that. The reason it happens is that when you switch to a buffer (normally, i.e. in another way than using jump_previously_visited_buffer/ jump_next_visited_buffer) gui_buffers_visited_index is set to -1 (in gui_buffer_visited_add). This makes gui_buffer_visited_get_index_next return 0 because it returns gui_buffers_visited_index + 1, which makes gui_input_jump_next_visited_buffer jump to the first buffer in the list of visited buffers. Fixes #1591 | |||
2021-03-20 | doc: update German auto-generated file | Sébastien Helleu | |
2021-03-20 | doc: update German documentation | Nils Görs | |