Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-25 | fset: add ${file}, ${section}, ${option}, add color options | Sébastien Helleu | |
2017-06-25 | core: limit hook_command_run to the exact given command (when no "*" are in ↵ | Sébastien Helleu | |
command hook) | |||
2017-06-17 | core: implement buffer type in hashtable_add_from_infolist | Simmo Saan | |
2017-06-17 | core: add hashtable_add_from_infolist to API | Simmo Saan | |
2017-06-10 | core: free use of pointer after free in case of error in function ↵ | Sébastien Helleu | |
string_dyn_concat | |||
2017-06-10 | core, plugins: fix conditions to insert elements in linked lists | Sébastien Helleu | |
This removes scan-build warnings about dereference of last_xxx null pointers. | |||
2017-06-10 | core: remove unused function upgrade_file_read_string_utf8 (issue #1012) | Sébastien Helleu | |
2017-06-10 | core: remove unused functions secure_search_hash_algo and ↵ | Sébastien Helleu | |
secure_search_cipher (issue #1012) | |||
2017-06-10 | core: remove unused function proxy_search_with_option_name (issue #1012) | Sébastien Helleu | |
2017-06-09 | core: remove unused functions config_file_config_insert and ↵ | Sébastien Helleu | |
config_file_section_insert_in_config (issue #1012) | |||
2017-06-07 | core: remove unused function command_secure_display_data (issue #1012) | Sébastien Helleu | |
2017-06-03 | core, script: remove unused config section variables | Simmo Saan | |
2017-06-03 | core: forward declare structs to avoid implicit declarations | Simmo Saan | |
2017-06-03 | core: fix gui_color_dump called with excess arguments | Simmo Saan | |
2017-06-01 | core: remove config_look_hotlist_add_buffer_if_away completely | Miroslav Koskar | |
2017-05-30 | api: add function hdata_compare | Sébastien Helleu | |
2017-05-30 | api: add function config_option_get_string in plugin API | Sébastien Helleu | |
2017-05-28 | core: remove unused variable "index" in function eval_hdata_get_value | Sébastien Helleu | |
2017-05-22 | core: fix potential use of NULL pointer in function arraylist_clear | Sébastien Helleu | |
2017-05-20 | core: allow index for hdata arrays in evaluation of expressions | Sébastien Helleu | |
2017-05-06 | core: add option weechat.completion.nick_case_sensitive (closes #981) | Sébastien Helleu | |
2017-04-29 | core: improve translation of /help eval | Sébastien Helleu | |
2017-04-29 | core: add wildcard matching operators to eval (closes #608) | Simmo Saan | |
2017-04-25 | core: fix check of condition in ${if:...} (evaluated strings) | Sébastien Helleu | |
2017-04-25 | core: fix command /cursor stop (do not toggle cursor mode) (closes #964) | Sébastien Helleu | |
2017-04-25 | core: add new cut formats in function comment | Sébastien Helleu | |
2017-04-24 | core: add a way to count the suffix length in max chars displayed in cut of ↵ | Sébastien Helleu | |
string ("cut:" and "cutscr:") (closes #963) The format to use is one of: - ${cut:+max,suffix,string} - ${cutscr:+max,suffix,string} With the "+" before max, WeeChat ensures there are at most "max" chars in output, including the length of suffix string. | |||
2017-04-22 | core: ensure length is not negative in function string_strndup | Sébastien Helleu | |
2017-04-21 | doc: fix translation of command "eval" in user's guide | Sébastien Helleu | |
2017-04-21 | core: add link to function color (plugin API reference) in /help eval | Sébastien Helleu | |
2017-04-08 | core: fix typo in /help buffer | arza | |
2017-04-07 | Merge pull request #944 from arza-zara/duplicate_sigquit | Sébastien Helleu | |
core: remove duplicate util_catch_signal for SIGQUIT | |||
2017-04-07 | core: remove duplicate util_catch_signal for SIGQUIT | arza | |
2017-04-06 | core: add Curl options for versions 7.50.0 to 7.52.0 | Sébastien Helleu | |
2017-04-02 | api: fix memory leak in function string_dyn_free() | Sébastien Helleu | |
Bug was introduced by commit af138840b3484e106d247c4a6a18a28e8225f5bb. | |||
2017-04-01 | api: return pointer to string in function string_dyn_free() if argument ↵ | Sébastien Helleu | |
"free_string" is 0 | |||
2017-03-30 | core: add ${re:#} to get the index of last group captured in evaluation of ↵ | Sébastien Helleu | |
expressions | |||
2017-03-30 | core: make "callback_cmp" optional in call to function arraylist_new() | Sébastien Helleu | |
If no callback is given, a default callback is used, which just compares pointers. | |||
2017-03-27 | core: add cut of string with max chars displayed in evaluation of expressions | Sébastien Helleu | |
The syntax is: ${cutscr:max,suffix,string}. The string is cut after max chars displayed on screen. If the string is cut, the optional suffix is added after. | |||
2017-03-26 | core: support local variables in /buffer get | arza | |
2017-03-25 | core: update translations | Sébastien Helleu | |
2017-03-25 | core: prevent infinite loop in evaluation of expression with extra_vars_eval | Sébastien Helleu | |
When extra variables are evaluated, to prevent infinite loop if the evaluated variable is calling itself, it is removed from hashtable "extra_vars" before evaluation. | |||
2017-03-25 | core: add cut of string in evaluation of expressions | Sébastien Helleu | |
The syntax is: ${cut:max,suffix,string}. The string is cut after max chars. If the string is cut, the optional suffix is added after. | |||
2017-03-25 | core: add ternary operator (condition) in evaluation of expressions | Sébastien Helleu | |
2017-03-25 | api: add dynamic string functions (string_dyn_*) | Sébastien Helleu | |
New functions: - string_dyn_alloc - string_dyn_copy - string_dyn_concat - string_dyn_free | |||
2017-03-25 | core: check that pointers received in arguments are not NULL in "free" functions | Sébastien Helleu | |
Functions: - hdata_free - infolist_var_free - infolist_item_free - infolist_free - string_shared_free - gui_window_objects_free - gui_color_free - gui_completion_free - gui_filter_free - gui_history_buffer_free - gui_hotlist_free - gui_key_free - gui_lines_free - gui_line_tags_free - gui_line_free - gui_window_tree_free - gui_window_scroll_free | |||
2017-02-03 | core: add last start date in output of command /version after at least one ↵ | Sébastien Helleu | |
/upgrade (closes #903) | |||
2017-01-22 | core, alias: add xgettext comment on some command help strings | Sébastien Helleu | |
The help on commands /window and /alias contain percent chars, so we have to force xgettext to NOT use "c-format", using the string "xgettext:no-c-format". | |||
2017-01-22 | core: add new resize prefix (h/v) and examples of resize in /help window | Sébastien Helleu | |
2017-01-22 | core: add resize of window parents (closes #893) | raspbeguy | |