summaryrefslogtreecommitdiff
path: root/src/plugins/charset
AgeCommit message (Collapse)Author
2018-01-14core: reinitialize config file pointer to NULL after an error on section ↵Sébastien Helleu
creation
2018-01-05core: update copyright datesSébastien Helleu
2017-06-25fset: shift plugins priority to insert fset plugin between buflist and fifoSébastien Helleu
2017-03-25buflist: load plugin after some other plugins by shifting plugins prioritySébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-03-21core: add pointer in some callbacks (closes #406)Sébastien Helleu
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
2016-01-01core: update copyright datesSébastien Helleu
2015-01-15core: add priority in plugins to initialize them in orderSébastien Helleu
Current order is: charset, logger, exec, trigger, aspell, alias, fifo, xfer, irc, relay, guile/lua/perl/python/ruby/tcl, script.
2015-01-01core: update copyright datesSébastien Helleu
2014-11-22api: return value in function command(), remove WeeChat error after command ↵Sébastien Helleu
callback if return code is WEECHAT_RC_ERROR
2014-04-12core: use lower case for CMake keywordsSébastien Helleu
2014-04-12charset: fix /help charset.default.decodeSébastien Helleu
The charset is used only when the message is not UTF-8 valid.
2014-02-21charset: remove unneeded test in command /charsetSebastien Helleu
2014-01-18core: reformat hook_command argumentsSebastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-12-21charset: replace call to strcasecmp by weechat_strcasecmpSebastien Helleu
This fixes a compilation problem on Illumos.
2013-11-09charset: remove unneeded warning, do not load plugin when options can not be ↵Sebastien Helleu
initialized
2013-10-05core: move the "-no-undefined" from LDFLAGS in configure.ac to Makefile.am ↵Sebastien Helleu
in plugins This "-no-undefined" was causing an error when detecting "ld" lib on Cygwin.
2013-07-20core: replace obsolete INCLUDES by AM_CPPFLAGS in files Makefile.amSebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-09-19charset: allow "UTF-8" in charset encoding options (still forbidden in ↵Sebastien Helleu
decoding options)
2012-08-02core: update description of plugins and translate them in output of /pluginSebastien Helleu
2012-07-14charset: fix typoSebastien Helleu
2012-07-14charset: do not allow "UTF-8" in charset options (useless because UTF-8 is ↵Sebastien Helleu
the internal WeeChat charset)
2012-01-08core: update copyright datesSebastien Helleu
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-04-16core: return WEECHAT_RC_OK instead of WEECHAT_RC_ERROR in commands when ↵Sebastien Helleu
error is displayed
2011-02-04Improve arguments displayed in /help of commands, display all commands with ↵Sebastien Helleu
same name (for same command name in many plugins)
2011-01-01Update copyright datesSebastien Helleu
2010-06-22Update licenses and copyrights, add missing author names in sourcesSebastien Helleu
2010-04-09Define WeeChat license as macro for C compiler, used in plugins to set licenseSebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu
2010-01-03Update copyright datesSebastien Helleu
2009-09-20Fix cmake directories: let user customize lib, share, locale and include ↵Sebastien Helleu
directories (patch #6922)
2009-06-12Remove variable with "WeeChat required version" in plugins, do not compare ↵Sebastien Helleu
version any more (API comparison is enough)
2009-03-28Add cmake files in package built by autotoolsSebastien Helleu
2009-03-18Remove some messages during startup about scripts and plugins loadedSebastien Helleu
It is still possible to see messages by changing debug level for "core" or plugins (perl, python, ruby, lua, tcl).
2009-01-03Update copyright datesSebastien Helleu
2009-01-02Add null values for options, new syntax for /set, reintroduce temporary IRC ↵Sebastien Helleu
server feature, improve IRC server options, new functions in API
2008-12-19Fix charset problem with IRC plugin: use server charset if channel charset ↵Sebastien Helleu
is not set
2008-11-15Use of const for some functions returning "char *"Sebastien Helleu
2008-11-02Remove debug plugin (merged to core), new debug variable for each plugin (no ↵Sebastien Helleu
more signals for setting debug)
2008-10-30Add new features to logger plugin (command /logger, log level, level by ↵Sebastien Helleu
buffer, mask by buffer, ..), fix some bugs New features: - new command /logger - log level, to log only some messages, according to importance (task #8592) - level by buffer: custom level for some buffers (or group of buffers) - log filename mask by buffer (or group of buffers) - marker line is added after display of backlog - add "delete" callback for config file sections - add "mkdir_parents" function to plugin API - remove old log options in IRC plugin Bug fix: - marker line is set only when user switches buffer (not when a plugin force switch, like IRC plugin does when opening server or channel buffer) - backlog fixed (sometimes lines were not properly displayed)
2008-10-18Add new argument "value" to function config_new_optionSebastien Helleu
2008-10-18Aspell plugin is born againSebastien Helleu
2008-10-08Add function to get plugin name (return "core" for WeeChat core)Sebastien Helleu
2008-09-18Remove "category" for buffers (keep only name).Sebastien Helleu
2008-08-30Add new hooks (info and infolist), IRC plugin now return infos and infolistsSebastien Helleu