summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-03-28relay: use option "delay" in call to command_options (closes #1327)Sébastien Helleu
This fixes a crash when sending "/plugin reload relay" from a relay client.
2019-03-28api: add option "delay" in hashtable options of function command_options ↵Sébastien Helleu
(issue #1327)
2019-03-28core: make "input_commands_allowed" work with /wait and /repeat commands ↵Sébastien Helleu
(issue #928)
2019-03-25core: set CMake minimum version required to 3.0Sébastien Helleu
This is required for add_library() with INTERFACE library type.
2019-03-25tests: fix scripting API tests on 32-bit archSébastien Helleu
The problem is that on 32-bit arch (like GNU/Hurd), the number 42000000000000 is converted to 42000000000000L in Python, which is causing troubles in other languages like Perl. The fix is to use a smaller number. Such large size for function string_format_size is tested in the C++ test suite anyway.
2019-03-24tests: fix style in CMake fileSébastien Helleu
2019-03-24doc: improve description of CMake option ENABLE_PYTHON3 in user's guideSébastien Helleu
2019-03-24doc: fix typo Gnutls -> GnuTLS in user's guideSébastien Helleu
2019-03-24doc: fix description of man/doc CMake options in user's guideSébastien Helleu
2019-03-24core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage ↵Sébastien Helleu
options This option is OFF by default and should be enabled only for tests, to measure test coverage.
2019-03-23debian: update changelogSébastien Helleu
2019-03-23core: switch from Ubuntu Trusty to Xenial in Travis CISébastien Helleu
2019-03-23lua: add detection of Lua 5.3 with autotoolsSébastien Helleu
2019-03-23tests: remove extra output before/after testsSébastien Helleu
2019-03-21irc: fix length of string for SHA-512, SHA-256 and SHA-1 in help on ↵Sébastien Helleu
ssl_fingerprint option
2019-03-21core: add Haiku as supported platform in READMESébastien Helleu
2019-03-19core: update German translationsNils Görs
2019-03-19irc: display an error with /allchan -current or /allpv -current if the ↵Sébastien Helleu
current buffer is not an irc buffer (closes #1325)
2019-03-19tests: remove value for first #define in headersSébastien Helleu
2019-03-19php: remove value for first #define in headersSébastien Helleu
2019-03-19doc: add missing keys Ctrl+F1 and Ctrl+F2 for buflist (FAQ)Sébastien Helleu
2019-03-18irc: fix update of channels modes with arguments when joining a channel ↵Sébastien Helleu
(closes #1324)
2019-03-17core: fix typo: Weechat -> WeeChatSébastien Helleu
2019-03-17core: fix description of Cygwin "weechat" packageSébastien Helleu
2019-03-17core: fix version numbering scheme in cygport fileSébastien Helleu
2019-03-12doc: update German auto-generated fileSébastien Helleu
2019-03-12Merge branch 'master' of github.com:weechat/weechatNils Görs
2019-03-12core: update German translationsNils Görs
2019-03-12relay: fix compilation warning when gnutls is not foundSébastien Helleu
2019-03-12irc: fix compilation warning when gnutls is not foundSébastien Helleu
2019-03-12core: set max length to 4096 for /secure passphrase (closes #1323)Sébastien Helleu
2019-03-11core: improve message displayed when a command is not allowed (issue #928)Sébastien Helleu
The whole command with arguments and the full buffer name are now displayed in the warning message (in debug mode only).
2019-03-11relay: use empty value by default for option relay.weechat.commands (issue #928)Sébastien Helleu
The relay client is supposed to be safe by default, and the relay connection should be protected by the different ways (restriction on IP address, SSL, strong password, Time-based One-Time Password, local bind address and use of SSH tunnel…). So this option lets the user add extra security by allowing only some commands (whitelist), or allowing any commands except a list of given commands (blacklist).
2019-03-10relay: add forbidden commands /key and /trigger in weechat protocol (issue #928)Sébastien Helleu
2019-03-10relay: add forbidden commands /wait and /repeat in weechat protocol (issue #928)Sébastien Helleu
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-03-09core: add value -1 for keep_eol in function string_strip (issue #1322)Sébastien Helleu
The value -1 means it's a standard split, but empty items are kept, and separators are not removed at beginning/end of string.
2019-03-09doc: update German auto-generated fileSébastien Helleu
2019-03-09core: update German translationsNils Görs
2019-03-09relay: add extra forbidden commands in weechat protocol (issue #928)Sébastien Helleu
Commands were already forbidden (option relay.weechat.commands): - /exec - /upgrade - /quit These extra commands are now forbidden by default: - /fset - /set - /unset - /plugin - /script - /python - /perl - /ruby - /lua - /tcl - /guile - /javascript - /php - /secure
2019-03-02core: use bitwise shift operator to define flag constantsSébastien Helleu
2019-03-01core: add contributor in AUTHORS.adoc (issue #1319)Sébastien Helleu
2019-03-01core: update ChangeLog (issue #1319)Sébastien Helleu
2019-03-01Merge pull request #1319 from phy1729/quote-nickSébastien Helleu
irc: quote argument to NICK
2019-02-28irc: quote argument to NICKMatthew Martin
2019-02-28core: update German translationsNils Görs
2019-02-28doc: fix typo in FAQSébastien Helleu
2019-02-28script: use SHA-512 instead of MD5 for script checksumSébastien Helleu
Related to weechat/weechat.org@66a8b72ab17784e7476b142e36c0fd8c7ae9c7c3
2019-02-28relay: add option relay.weechat.commands (closes #928)Sébastien Helleu
2019-02-28api: add function command_options (issue #928)Sébastien Helleu