summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-18core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272)Sébastien Helleu
2018-11-18doc: translate FAQ changes in other languages (issue #1272)Sébastien Helleu
2018-11-18doc: spelling/grammar fixes & documentation links added (FAQ) (closes #1272)Filip H.F. "FiXato" Slagter
A number of spelling/grammar fixes, some restructured sentences to improve readability and replacement of previous names for Apple Macintosh's OS with the current 'macOS' name. Also added some more references to User's guide documentation sections. Also clarified that a window can not only display 1 buffer, but also a set of merged buffers. Finally, added a version note about the /script command.
2018-11-17core: update German translationsNils Görs
2018-11-17exec: add option exec.command.shell to customize the shell used with /exec -shSébastien Helleu
2018-11-17exec: fix command displayed in debug messageSébastien Helleu
2018-11-17core: update German translationsNils Görs
2018-11-17core: add test on some WeeChat command line options on Travis CISébastien Helleu
2018-11-17core: add command line option "-t" (or "--temp-dir") to create a temporary ↵Sébastien Helleu
WeeChat home (deleted on exit)
2018-11-17core: add missing include of time.h in wee-secure.hSébastien Helleu
This fixes a compilation issue on FreeBSD 11.0.
2018-11-16doc: update German auto-generated fileSébastien Helleu
2018-11-16core: update German translationsNils Görs
2018-11-14core: 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-11-14core: fix C++ compiler flags (cmake)Sébastien Helleu
2018-11-13doc: add missing variable "pointer" to make C compiler really happy (plugin ↵Sébastien Helleu
API reference)
2018-11-13doc: fix name of compiled plugin example (plugin API reference)Sébastien Helleu
2018-11-12doc: update German auto-generated filesSébastien Helleu
2018-11-12core: update German translationsNils Görs
2018-11-12core: improve help on option irc.look.server_buffer (closes #1269)Sébastien Helleu
2018-11-12core: improve help on option weechat.look.nick_color_stop_chars (closes #1268)Sébastien Helleu
2018-11-12relay: add support of close frame in websocket connection (closes #1281)Sébastien Helleu
2018-11-08core: add fix of memory leak in ChangeLogSébastien Helleu
2018-11-05buflist: add variable ${number2}, always set with the indented buffer numberSébastien Helleu
2018-11-04Added documentation links to READMEFilip H.F. "FiXato" Slagter
2018-11-04Merge pull request #1270 from FiXato/patch-1Sébastien Helleu
Make WeeChat screenshots link more descriptive.
2018-11-04core: replace ellipses by "etc." (in English) and "etc..." by "etc." in FrenchSébastien Helleu
2018-11-04core: replace "web site" by "website"Sébastien Helleu
2018-11-04core: add contributor in AUTHORS.adoc (issue #1273)Sébastien Helleu
2018-11-04Merge pull request #1273 from half-duplex/masterSébastien Helleu
Fix regex in relay.network.allowed_ips doc
2018-11-04tests: add missing file test-secure.cpp in autotoolsSébastien Helleu
2018-11-04core: update translationsSébastien Helleu
2018-11-04core: improve description of infos "totp_generate" and ""totp_validate"Sébastien Helleu
2018-11-04relay: add support of Time-based One-Time Password (TOTP) as second ↵Sébastien Helleu
authentication factor in weechat protocol
2018-11-04doc: fix styles in relay protocolSébastien Helleu
2018-11-04api: add functions string_base_{encode,decode}, remove functions ↵Sébastien Helleu
string_{encode,decode}_base64
2018-11-03core: split plugin-api.c into 2 files (API wrappers and infos/infolists)Sébastien Helleu
2018-11-02api: return integer in function string_encode_base16Sébastien Helleu
2018-11-02api: return integer in function string_encode_base64Sébastien Helleu
2018-11-02tests: add tests on functions secure_encrypt_data and secure_decrypt_dataSébastien Helleu
2018-11-02core: add support of TOTP generation/validation (Time-based One-Time Password)Sébastien Helleu
2018-10-27doc: add missing source files for tests (developer's guide)Sébastien Helleu
2018-10-27core: split wee-secure.c into 3 files (secured data functions, buffer and ↵Sébastien Helleu
config)
2018-10-27buflist: fix warning displayed when script buffers.pl is loaded (closes #1274)Sébastien Helleu
2018-10-25doc: add commands to update .po files (developer's guide)Sébastien Helleu
2018-10-23Fix regex in relay allowed_ips docTrevor Bergeron
2018-10-23Make WeeChat screenshots link more descriptive.Filip H.F. "FiXato" Slagter
Restructured sentence to avoid using self-non-descriptive 'this page' anchors.
2018-10-21Version 2.4-devSébastien Helleu
2018-10-21Version 2.3Sébastien Helleu
2018-10-21core: replace call to strncpy by memcpySébastien Helleu
This fixes a gcc warning: "warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]".
2018-10-21irc: fix uninitialized variables in function irc_protocol_cap_syncSébastien Helleu