summaryrefslogtreecommitdiff
path: root/src/core/wee-hook.c
AgeCommit message (Collapse)Author
2011-08-01core: add info about position where mouse button is released in hook_focus ↵Sebastien Helleu
(for mouse gestures)
2011-07-30core: fix bug in build of static parts of completions for commandsSebastien Helleu
2011-07-29core: add number in windows, improve mouse/cursor actions when screen is splitSebastien Helleu
2011-07-26core: add mouse support (task #5435), free cursor movement, hook_focus, fix ↵Sebastien Helleu
bugs with key "^" (bug #32072, bug #21381), fix bugs with bar windows, completion and /buffer New features and bugs fixed: - mouse support: new command /mouse, new option weechat.look.mouse, new key context "mouse" - free movement of cursor: new command /cursor, new key context "cursor" - new hook_focus (used by cursor and mouse) - info "cursor_mode" - bugs fixed with key "^" - allow plugin name in /buffer name - fix bugs with bar windows: do not create bar windows for hidden bars - fix completion bug when two words for completion are equal but with different case - automatic scroll direction in /bar scroll (x/y is now optional)
2011-06-26core: many improvements on hdataSebastien Helleu
New features: - add optional hdata name for variables in hdata - add plugin API functions: hdata_get_var_hdata - use hashtable to store hdata (created by WeeChat and plugins) - free hdata and infolists created by plugin on plugin unload - free all hdata on exit - add "free" option to command /debug hdata - remove hdata for hooks
2011-06-22core: display error (only once) when bad file descriptor is detected in hook_fdSebastien Helleu
2011-06-22core: fix freeze when hook_fd is called with a bad file/socket (bug #33619)Sebastien Helleu
2011-06-13core: add "hdata" (direct access to WeeChat/plugin data)Sebastien Helleu
2011-04-28irc: add option "ssl_priorities" in servers (task #10106, debian #624055)Sebastien Helleu
2011-04-19core: allow command mask for infolist_get on command hooksSebastien Helleu
2011-03-02Fix verification of SSL certificates by calling gnutls verify callback ↵Gu1ll4um3r0m41n
(patch #7459)
2011-02-25Add optional command name for infolist_get on command hooksSebastien Helleu
2011-01-02Test if variables are not NULL before free in function hook_print_execSebastien Helleu
2011-01-01Update copyright datesSebastien Helleu
2010-11-18Fix infinite loop on gnutls handshake when connecting with SSL to server on ↵Gu1ll4um3r0m41n
wrong port or server with SSL problems (bug #27487)
2010-11-14Fix data sent to callback of hook_process, improve hook_process by using bufferSebastien Helleu
Fix: some data was sometimes missing (not sent to callback). Improvement: use a 64KB buffer for child output and send data to callback only when buffer is full.
2010-11-09Add function "hook_completion_get_string" in plugin APISebastien Helleu
2010-10-23Add new functions in plugin API: hook_hsignal and hook_hsignal_sendSebastien Helleu
2010-08-27Add new functions in plugin API (hashtable_get_string, hook_info_hashtable, ↵Sebastien Helleu
info_get_hashtable), add IRC info_hashtable "irc_parse_message" Note: tcl >= 8.5 is now required (for tcl plugin).
2010-08-12Fix another bug with hook priority (for commands)Sebastien Helleu
2010-08-12Fix bug with order of hooks: for equal priority, hook is added at the end of ↵Sebastien Helleu
the list
2010-08-11Add priority for hooks (task #10550)Sebastien Helleu
2010-06-22Update licenses and copyrights, add missing author names in sourcesSebastien Helleu
2010-05-01Fix crash with hook_process (when timer is called on a deleted hook process)Sebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu
2010-03-19Reformat multi-line commentsSebastien Helleu
2010-03-19Fix bugs with function hook_command_runSebastien Helleu
A '/' is always sent at beginning of command to callback, even if user used another command char. Now it is possible to catch a command, with or without arguments, with hook_command_run("/command").
2010-03-02Add new option weechat.look.command_chars, add functions ↵Sebastien Helleu
string_is_command_char and string_input_for_buffer in plugin and script API
2010-02-12Add description of arguments for API functions hook_info and hook_infolistSebastien Helleu
2010-01-03Update copyright datesSebastien Helleu
2010-01-01Fix tag checking in execution of hook_printSebastien Helleu
2009-11-27Check that connect hook was not deleted before call to gnutls callbackSebastien Helleu
2009-11-27Fix crash when connecting to ssl server if another non-ssl connection is pendingSebastien Helleu
2009-11-07Remove compilation warning when gnutls lib is not installedSebastien Helleu
2009-11-07Check SSL certificates and use self-signed certificate to auto identify on ↵Sebastien Helleu
IRC server (CertFP) (task #7492) (patch from kolter)
2009-07-24Fix compilation on OpenBSD: rename variables stdout/stderr (patch #6874 from ↵Sebastien Helleu
zepard)
2009-06-28Rename function string_explode to string_splitSebastien Helleu
2009-06-21Fix some memory leaks in command hook (completion templates), buffer ↵Sebastien Helleu
closing, partial completion
2009-06-10Add buffer merging feature, with /buffer merge/unmerge (task #7404)Sebastien Helleu
2009-04-26Fix 0 byte alloc in command templateSebastien Helleu
2009-04-11Add support of many templates for completion of command arguments, rename ↵Sebastien Helleu
default completion items
2009-04-04Check that callback value is not NULL in hook functionsSebastien Helleu
2009-03-21Add new command /version, add count of /upgrade, fix bugs with command execSebastien Helleu
New (core) command /version displays version, and number of upgrades done with first start date (if # /upgrade > 0). The number of upgrades is displayed at startup (if > 0).
2009-03-18Add "replacement" argument for string_remove_color in plugin APISebastien Helleu
2009-03-06Add new hook type "process": launch command with fork and catch result ↵Sebastien Helleu
(rc/stdout/stderr) via callback
2009-02-18Display clock skew detection only if debug for core is >= 1Sebastien Helleu
2009-02-18Give file descriptor to callback of hook_fdSebastien Helleu
2009-02-08Add hook type "command_run", add new function "string_remove_color" in ↵Sebastien Helleu
plugin API (task #9089)
2009-02-04Fix 14 memory leaks (in core, gui, irc, jabber, logger, script plugins)Sebastien Helleu
2009-01-04Remove unused functions and prototypesSebastien Helleu