summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-06-07alias: remove default aliases /AME and /AMSGjesopo
2019-06-07core: replace char "," by "~" in color codes to separate foreground from ↵Sébastien Helleu
background (closes #1264)
2019-06-04relay: set socket option SO_KEEPALIVE only for TCP sockets when creating the ↵Sébastien Helleu
socket (issue #733)
2019-06-04relay: set socket option SO_REUSEADDR only for TCP sockets when creating the ↵Sébastien Helleu
socket (issue #733)
2019-06-04relay: set socket option SO_REUSEADDR only for TCP sockets (issue #733)Sébastien Helleu
2019-06-04relay: add UNIX domain socket completion for command /relay add (issue #733)Sébastien Helleu
2019-06-04relay: fix crash when deleting a relay (issue #733)Sébastien Helleu
2019-06-04relay: fix truncated path when the unix socket path is longer than the ↵Sébastien Helleu
authorized one (issue #733)
2019-06-04spell: add a warning if aspell.conf is still present (on first spell load)Sébastien Helleu
2019-05-14irc: add extra check on argument "nick" in functions "irc_nick_set_*"Sébastien Helleu
2019-05-14irc: fix crash when the nick in incoming message is not found in channelSébastien Helleu
2019-05-13relay: remove useless conditionSébastien Helleu
This fixes a compilation warning on FreeBSD.
2019-05-13relay: set address to "local" if not knownSébastien Helleu
2019-05-13core: update translationsSébastien Helleu
2019-05-13relay: rename variables in function relay_config_check_path_lengthSébastien Helleu
2019-05-12relay: fix commentSébastien Helleu
2019-05-12relay: set mode 700 on the unix socket file (only the owner can use it)Sébastien Helleu
2019-05-12relay: do not overwrite a file if it's not a socket, display an error when ↵Sébastien Helleu
the socket can not be created
2019-05-12relay: evaluate path of unix socket relaySébastien Helleu
2019-05-12relay: rename function relay_config_check_path_len to ↵Sébastien Helleu
relay_config_check_path_length
2019-05-12relay: fix update of port/path variables in relay server when options ↵Sébastien Helleu
relay.port.* and relay.path.* are changed with /set
2019-05-12relay: fix section used when the unix relay does not start with "unix."Sébastien Helleu
2019-05-12relay: add unix relay format in /help relaySébastien Helleu
2019-05-12relay: remove extra newline at the end of /help relaySébastien Helleu
2019-05-12relay: remove local variable ptr_server from function ↵Sébastien Helleu
relay_config_check_path_cb (not needed)
2019-05-12relay: improve message displayed on a new clientSébastien Helleu
2019-05-12relay: improve message displayed when the relay is removedSébastien Helleu
2019-05-12relay: improve message displayed when the relay is addedSébastien Helleu
2019-05-12relay: rename function relay_config_create_option_port to ↵Sébastien Helleu
relay_config_create_option_port_path
2019-05-12relay: fix code styleSébastien Helleu
2019-05-12relay: rename variable "un" to "unix_socket"Sébastien Helleu
2019-05-12relay: add UNIX socket support (closes #733)Ryan Farley
2019-05-12irc: rename server variable "nick_host" to "host"Sébastien Helleu
2019-05-10irc: set buffer local variable "nick_host" when a channel buffer is openedSébastien Helleu
2019-05-10irc: add bar items "irc_nick", "irc_host" and "irc_nick_host"Sébastien Helleu
2019-05-10irc: add variable "nick_host" in server structureSébastien Helleu
2019-05-10irc: fix parsing of MODE command when there are colons after the first mode ↵Sébastien Helleu
argument (closes #1296)
2019-04-25cmake: allow custom libdir (fix #1341)Ryan Farley
Allows for custom LIBDIR to specified with cmake builds. WEECHAT_LIBDIR is used for a custom Weechat directory, or set from LIBDIR (as LIBDIR used to be set).
2019-04-14core: use getopt to parse command line argumentsSébastien Helleu
Multiple options can now be given in a single flag, for example: weechat -ast Following formats were allowed for command line argument with a value: weechat -d /tmp/weechat weechat --dir /tmp/weechat Now these extra formats are supported as well: weechat -d/tmp/weechat weechat --dir=/tmp/weechat
2019-04-13core: bump API versionSébastien Helleu
This is required after changes on functions hook_info and info_get.
2019-04-13core: merge functions gui_line_prefix_is_same_nick_as_{previous|next} (issue ↵Sébastien Helleu
#931)
2019-04-13core: fix /help weechat.look.buffer_time_sameSébastien Helleu
2019-04-13core: add option weechat.look.prefix_same_nick_middle (closes #930, closes #931)Adrian Bjugård
2019-04-13core: add option weechat.look.buffer_time_same (closes #1127)Simmo Saan
2019-04-13trigger: add hook "info_hashtable"Sébastien Helleu
2019-04-13trigger: add hook "info"Sébastien Helleu
2019-04-13irc: fix memory leak in infos "irc_server_isupport" and ↵Sébastien Helleu
"irc_server_isupport_value"
2019-04-13api: return allocated string in hook_info callback and function info_getSébastien Helleu
2019-04-06xfer: add option xfer.network.speed_limit_recv (closes #269)Sébastien Helleu
For consistency, the option xfer.network.speed_limit has been renamed to xfer.network.speed_limit_send.
2019-04-01tests: add tests on function util_signal_searchSébastien Helleu