summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2017-06-25fset: add ${file}, ${section}, ${option}, add color optionsSébastien Helleu
2017-06-25core: limit hook_command_run to the exact given command (when no "*" are in ↵Sébastien Helleu
command hook)
2017-06-17core: implement buffer type in hashtable_add_from_infolistSimmo Saan
2017-06-17core: add hashtable_add_from_infolist to APISimmo Saan
2017-06-10core: free use of pointer after free in case of error in function ↵Sébastien Helleu
string_dyn_concat
2017-06-10core, plugins: fix conditions to insert elements in linked listsSébastien Helleu
This removes scan-build warnings about dereference of last_xxx null pointers.
2017-06-10core: remove unused function upgrade_file_read_string_utf8 (issue #1012)Sébastien Helleu
2017-06-10core: remove unused functions secure_search_hash_algo and ↵Sébastien Helleu
secure_search_cipher (issue #1012)
2017-06-10core: remove unused function proxy_search_with_option_name (issue #1012)Sébastien Helleu
2017-06-09core: remove unused functions config_file_config_insert and ↵Sébastien Helleu
config_file_section_insert_in_config (issue #1012)
2017-06-07core: remove unused function command_secure_display_data (issue #1012)Sébastien Helleu
2017-06-03core, script: remove unused config section variablesSimmo Saan
2017-06-03core: forward declare structs to avoid implicit declarationsSimmo Saan
2017-06-03core: fix gui_color_dump called with excess argumentsSimmo Saan
2017-06-01core: remove config_look_hotlist_add_buffer_if_away completelyMiroslav Koskar
2017-05-30api: add function hdata_compareSébastien Helleu
2017-05-30api: add function config_option_get_string in plugin APISébastien Helleu
2017-05-28core: remove unused variable "index" in function eval_hdata_get_valueSébastien Helleu
2017-05-22core: fix potential use of NULL pointer in function arraylist_clearSébastien Helleu
2017-05-20core: allow index for hdata arrays in evaluation of expressionsSébastien Helleu
2017-05-06core: add option weechat.completion.nick_case_sensitive (closes #981)Sébastien Helleu
2017-04-29core: improve translation of /help evalSébastien Helleu
2017-04-29core: add wildcard matching operators to eval (closes #608)Simmo Saan
2017-04-25core: fix check of condition in ${if:...} (evaluated strings)Sébastien Helleu
2017-04-25core: fix command /cursor stop (do not toggle cursor mode) (closes #964)Sébastien Helleu
2017-04-25core: add new cut formats in function commentSébastien Helleu
2017-04-24core: 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-22core: ensure length is not negative in function string_strndupSébastien Helleu
2017-04-21doc: fix translation of command "eval" in user's guideSébastien Helleu
2017-04-21core: add link to function color (plugin API reference) in /help evalSébastien Helleu
2017-04-08core: fix typo in /help bufferarza
2017-04-07Merge pull request #944 from arza-zara/duplicate_sigquitSébastien Helleu
core: remove duplicate util_catch_signal for SIGQUIT
2017-04-07core: remove duplicate util_catch_signal for SIGQUITarza
2017-04-06core: add Curl options for versions 7.50.0 to 7.52.0Sébastien Helleu
2017-04-02api: fix memory leak in function string_dyn_free()Sébastien Helleu
Bug was introduced by commit af138840b3484e106d247c4a6a18a28e8225f5bb.
2017-04-01api: return pointer to string in function string_dyn_free() if argument ↵Sébastien Helleu
"free_string" is 0
2017-03-30core: add ${re:#} to get the index of last group captured in evaluation of ↵Sébastien Helleu
expressions
2017-03-30core: 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-27core: add cut of string with max chars displayed in evaluation of expressionsSé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-26core: support local variables in /buffer getarza
2017-03-25core: update translationsSébastien Helleu
2017-03-25core: prevent infinite loop in evaluation of expression with extra_vars_evalSé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-25core: add cut of string in evaluation of expressionsSé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-25core: add ternary operator (condition) in evaluation of expressionsSébastien Helleu
2017-03-25api: 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-25core: check that pointers received in arguments are not NULL in "free" functionsSé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-03core: add last start date in output of command /version after at least one ↵Sébastien Helleu
/upgrade (closes #903)
2017-01-22core, alias: add xgettext comment on some command help stringsSé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-22core: add new resize prefix (h/v) and examples of resize in /help windowSébastien Helleu
2017-01-22core: add resize of window parents (closes #893)raspbeguy