Sébastien Helleu
2ee71c7699
core: check that buffer is not NULL in function gui_chat_printf_date_tags_internal
2023-10-30 23:23:58 +01:00
Sébastien Helleu
c7cf41c357
core: fix use NULL pointer when a config file has no options
2023-10-30 23:23:57 +01:00
Sébastien Helleu
7c21c6b993
logger: remove dead assignment
2023-10-30 23:23:57 +01:00
Sébastien Helleu
563654901c
core: fix crash when "config_version" is present in a configuration file without a value
2023-10-30 23:23:57 +01:00
Sébastien Helleu
517c04ae65
core: display an error on startup if environment variable "HOME" is not set
2023-10-30 23:23:57 +01:00
Sébastien Helleu
a399d3f68c
ruby: fix use of NULL variable when displaying exception
2023-10-30 23:07:20 +01:00
Sébastien Helleu
480d603eb5
core: fix crash when a custom bar item name is already used by a default bar item (issue #2034 )
2023-10-23 13:11:02 +02:00
Sébastien Helleu
3184bb92e6
core: make libintl.h required if CMake option ENABLE_NLS is enabled (issue #2031 )
2023-10-15 14:58:26 +02:00
Sébastien Helleu
753a2adffc
irc: move value -all at the end of completions for command /ignore del
2023-10-09 20:07:39 +02:00
Sébastien Helleu
020c8145b6
irc: fix memory leak when joining channels with keys
2023-10-07 20:34:41 +02:00
Sébastien Helleu
7a3ae654be
core: use larger buffer for errors when creating a filter
2023-10-05 19:02:38 +02:00
LuK1337
64403cefc1
core: fix TOTP moving factor on big-endian systems
2023-09-25 13:52:00 +02:00
Sébastien Helleu
2d9b133c77
script: only check if return value of plugin_script_search_path is NULL (issue #2019 )
2023-09-22 22:59:21 +02:00
Sébastien Helleu
6c36836182
script: fix removal of script in system directory while trying to install a script (issue #2019 )
2023-09-22 22:53:29 +02:00
Sébastien Helleu
15214f9538
script: fix autoload of multiple scripts at once with /script autoload (issue #2018 )
2023-09-20 20:07:01 +02:00
Sébastien Helleu
7f13bdb51a
irc: add option irc.look.open_pv_buffer_echo_msg (issue #2016 )
2023-09-14 20:22:43 +02:00
Sébastien Helleu
49bbc53d7c
irc: update title in query buffer when remote nick is myself (issue #2016 )
2023-09-14 16:16:39 +02:00
Sébastien Helleu
eb17fa24ee
irc: fix title of query buffer for own messages received (issue #2016 )
2023-09-14 15:30:10 +02:00
Sébastien Helleu
c7d03668f1
irc: open a query buffer on PRIVMSG received from self nick when capability echo-message is NOT enabled (issue #2016 )
2023-09-14 14:54:21 +02:00
Sébastien Helleu
8575546aa2
irc: don't open a new private buffer on /msg command when capability echo-message is enabled (issue #2016 )
2023-09-14 11:21:25 +02:00
Sébastien Helleu
49b1cb06b5
irc: fix title of private buffers wrongly set to own address when capability echo-message is enabled (issue #2016 )
2023-09-14 08:09:34 +02:00
Sébastien Helleu
75a0755107
core: translate error messages (issue #2013 )
2023-09-12 15:12:15 +02:00
Sébastien Helleu
79b03d0680
core: automatically backup config file read if it has an unsupported version (issue #2013 )
2023-09-12 15:03:18 +02:00
Sébastien Helleu
f43ed913f5
xfer: fix memory leak on plugin unload
2023-09-12 15:03:18 +02:00
Sébastien Helleu
1aab82f20b
core: add path in message displayed when a config file is updated to a newer version
2023-09-11 22:50:11 +02:00
Sébastien Helleu
58141bde79
irc: fix autojoin of channels when private buffers are opened (issue #2012 )
2023-09-11 21:43:35 +02:00
Sébastien Helleu
7f6e626122
core: display a message when a configuration file is updated to a newer version
2023-09-11 09:33:39 +02:00
Sébastien Helleu
8b7513e883
script: fix crash when a /script command triggers another /script command (issue #923 )
2023-08-27 17:22:09 +02:00
Sébastien Helleu
2566fca78c
irc: use str_nicks only if not NULL in callback of message 353
2023-08-27 17:20:32 +02:00
Trygve Aaberge
a82bfa0e7e
Add compatibility with Python < 3.10 in weechat.pyi
...
The | syntax for unions is only supported in Python 3.10 and later.
Since Python 3.8 and 3.9 are still supported upstream for a while and we
had a user reporting on IRC that they couldn't use the stub file since
they are using 3.8, change to the old syntax for unions to support this.
There aren't really any drawbacks of this. It's just a bit more verbose,
and a typing import is necessary, but neither of those really matters in
a generated stub file.
2023-08-24 19:12:53 +02:00
Sébastien Helleu
e3f6dab366
irc: fix string comparison when CASEMAPPING is set to "ascii"
2023-08-24 09:23:30 +02:00
Sébastien Helleu
1a05f89586
irc: check that server is not NULL in function irc_server_eval_fingerprint
2023-08-24 09:23:30 +02:00
Sébastien Helleu
87e47894e6
script: adjust scroll after command /script go N
2023-08-22 11:29:37 +02:00
Sébastien Helleu
ad75786e15
core: fix gcc warning on uninitialized variable pos_end
...
The variable `pos_end` is never used when not initialized anyway, thanks to the
`break` done before.
2023-08-22 10:31:47 +02:00
Sébastien Helleu
39fdb1b564
logger: remove trailing empty line in display of backlog (issue #2002 )
2023-08-21 16:02:37 +02:00
Sébastien Helleu
c5eb982424
perl: fix display of non-ASCII chars after load of a script with Perl >= 5.38 (issue #1996 )
2023-08-21 13:11:58 +02:00
Sébastien Helleu
e7bf09f4e8
irc: fix wrong time displayed for CTCP messages received from self nick (issue #2000 )
2023-08-18 23:59:42 +02:00
Sébastien Helleu
ab7b51db72
scripts: fix function string_parse_size on 32-bit systems (python and ruby) (issue #1999 )
2023-08-18 16:45:21 +02:00
Sébastien Helleu
647d7033cf
xfer: fix conversion of string to IPv4 on 32-bit systems (issue #1999 )
2023-08-18 16:44:36 +02:00
Sébastien Helleu
270d64cfa1
core: fix increment/decrement of options weechat.notify.*
2023-08-18 07:52:13 +02:00
Sébastien Helleu
4eabcdf840
core: fix integer overflow when setting integer option with ++N or --N
2023-08-18 07:49:19 +02:00
Sébastien Helleu
77911680bb
irc: fix redirection of command /list when the reply doesn't start with message 321 (start of /list)
2023-08-18 07:40:32 +02:00
Sébastien Helleu
bc5b287622
irc: add missing tags on multiline messages (issue #1987 )
2023-08-09 14:55:50 +02:00
Sébastien Helleu
a23d8f2198
relay: fix display of IRC CTCP messages received from client (issue #1986 )
2023-08-08 09:42:34 +02:00
Sébastien Helleu
f416688e84
irc: fix display of outgoing notice with channel when capability "echo-message" is enabled (issue #1991 )
2023-08-01 22:37:10 +02:00
Sébastien Helleu
b06e09d00b
core: remove CMake option "ENABLE_DOC_WARN_LOCALE" (issue #1985 )
2023-07-31 22:02:18 +02:00
Sébastien Helleu
89090b10e8
core: fix typo
2023-07-31 21:51:19 +02:00
Sébastien Helleu
fad7231f90
doc: stop build of docs if a locale is missing, add CMake option "ENABLE_DOC_WARN_LOCALE" (issue #1985 )
2023-07-31 21:31:53 +02:00
Sébastien Helleu
cf1e073446
core: add missing trailing newline char in doc generation error messages
2023-07-31 08:07:33 +02:00
Sébastien Helleu
b2cd9d002b
irc: fix switch to channel manually joined (issue #1982 )
...
This happens when server option autojoin_dynamic is on and option
irc.look.buffer_switch_autojoin is off.
Regression was introduced in version 4.0.0 by commit
1c3b871204 .
2023-07-31 08:05:26 +02:00