Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-26 | doc/user: add keys to move and delete in a single line and whole input ↵ | Sébastien Helleu | |
(issue #1503) | |||
2023-03-26 | core: update translations (issue #1503) | Sébastien Helleu | |
2023-03-26 | doc: update German auto-generated file | Sébastien Helleu | |
2023-03-25 | doc: update auto-generated files with options | Sébastien Helleu | |
2023-03-24 | core: add option `legacy` in command `/key` | Sébastien Helleu | |
2023-03-19 | doc: update German auto-generated file | Sébastien Helleu | |
2023-03-19 | core: update German translations | Nils Görs | |
2023-03-19 | core: add option `rename` in command `/bar` | Sébastien Helleu | |
2023-03-19 | core: add command `/reset` to reset options to their default values | Sébastien Helleu | |
2023-03-18 | core: update translations | Sébastien Helleu | |
2023-03-16 | core: use new key name in command `/key` and configuration file | Sébastien Helleu | |
Legacy keys are automatically converted to new names when loading configuration file `weechat.conf`. Examples: "ctrl-I" => "tab" "meta2-1;3A" => "meta-up" "meta2-Z" => "shift-tab" "meta-wmeta-meta2-A" => "meta-w,meta-up" "ctrl-Cb" => "ctrl-c,b" | |||
2023-03-10 | core: update translations (issue #1888) | Sébastien Helleu | |
2023-02-21 | doc: update German documentation | Nils Görs | |
2023-02-16 | doc/user: make XDG directory fallback more clear in table | Sébastien Helleu | |
2023-02-10 | doc/user: move "Upgrade" chapter after "Running WeeChat" | Sébastien Helleu | |
2023-02-01 | doc: update auto-generated files | Sébastien Helleu | |
2023-01-31 | irc: add command `/rules` (closes #1864) | Sébastien Helleu | |
2023-01-31 | irc: add command `/knock` (closes #7) | Sébastien Helleu | |
2023-01-31 | doc: update German auto-generated file | Sébastien Helleu | |
2023-01-29 | irc: add server option "registered_mode" (closes #1625) | Andrew Potter | |
Two new fields are added in IRC server structure: - "authentication_method", possible values: 0: not authenticated 1: authenticated with SASL 2: authenticated with other method - "sasl_mechanism_used", possible values: see enum t_irc_sasl_mechanism in src/plugins/irc/irc-sasl.h | |||
2023-01-29 | doc: update German auto-generated files | Sébastien Helleu | |
2023-01-29 | core: update German translations | Nils Görs | |
2023-01-29 | core: force ctrl keys to lower case when they are added (closes #1875) | Sébastien Helleu | |
2023-01-28 | core: update translations and auto-generated doc files (issue #1872) | Sébastien Helleu | |
2023-01-28 | doc/api: add priority in function config_new (issue #1872) | Sébastien Helleu | |
2023-01-25 | doc: update German auto-generated file | Sébastien Helleu | |
2023-01-24 | irc: add option `join` in command `/autojoin` | Sébastien Helleu | |
2023-01-24 | doc: update auto-generated files with hdata | Sébastien Helleu | |
2023-01-08 | core: remove build with autotools | Sébastien Helleu | |
CMake is now the only way to build WeeChat. | |||
2023-01-03 | api: add Curl options for versions 7.64.0 to 7.87.0 | Sébastien Helleu | |
2023-01-03 | plugins: change priority of scripting plugins | Sébastien Helleu | |
Use a step of 10 between each scripting plugin priority. | |||
2023-01-01 | core: update copyright dates | Sébastien Helleu | |
2022-12-29 | doc: update German auto-generated file | Sébastien Helleu | |
2022-12-29 | core: add option weechat.look.chat_space_right (issue #1862) | Sébastien Helleu | |
2022-12-28 | doc: update German auto-generated file | Sébastien Helleu | |
2022-12-26 | doc: update German auto-generated files | Sébastien Helleu | |
2022-12-25 | core: move `/input` buffer switch/zoom actions to command `/buffer` | Sébastien Helleu | |
Actions moved: * `/input switch_active_buffer` -> `/buffer switch` * `/input switch_active_buffer_previous` -> `/buffer switch -previous` * `/input zoom_merged_buffer` -> `/buffer zoom` | |||
2022-12-25 | core: move `/input` set_unread actions to commands `/allbuf` and `/buffer set` | Sébastien Helleu | |
Actions moved: * `/input set_unread` -> `/allbuf /buffer set unread` * `/input set_unread_current_buffer` -> `/buffer set unread` | |||
2022-12-25 | core: add command `/allbuf` | Sébastien Helleu | |
2022-12-25 | core: add option `add` in command `/hotlist` | Sébastien Helleu | |
2022-12-25 | core: move `/input` hotlist actions to new command `/hotlist` | Sébastien Helleu | |
Actions moved to command `/hotlist`: * `/input hotlist_clear` -> `/hotlist clear` * `/input hotlist_remove_buffer` -> `/hotlist remove` * `/input hotlist_restore_buffer` -> `/hotlist restore` * `/input hotlist_restore_all` -> `/hotlist restore -all` | |||
2022-12-25 | core: move `/input` jump actions to command `/buffer jump` | Sébastien Helleu | |
Actions moved to command `/buffer jump`: * `/input jump_smart` -> `/buffer jump smart` * `/input jump_previously_visited_buffer` -> `/buffer jump prev_visited` * `/input jump_next_visited_buffer` -> `/buffer jump next_visited` * `/input jump_last_buffer_displayed` -> `/buffer jump last_displayed` | |||
2022-12-14 | doc: update German auto-generated file | Sébastien Helleu | |
2022-12-14 | core: update German translations | Nils Görs | |
2022-12-11 | scripts: Send null values to config section callbacks | Trygve Aaberge | |
The callback_read and callback_create_option functions in the scripting APIs always get the value as a string, never as null. This means that if the value is null, there is no way for the script to distinguish this from an empty string for string options. This makes it impossible to properly make options with fallback values, like the irc server and server_default options, as far as I can see. All the scripting languages except Tcl use that language's equivalent for null. For JavaScript which has both null and undefined, null is used. For Tcl, the magic null string defined in commit 197a7a01e is used and the documentation is updated to describe that. I tested this with these scripts: https://gist.github.com/trygveaa/2d49c609addf9773d2ed16e15d1e3447 You can load all of those scripts and see the result with this command (assuming you have the scripts in the current directory): weechat -t -r "/filter add script * * script; /script load $(echo script_config.*)" | |||
2022-12-10 | core: add whole string information in /debug unicode | Sébastien Helleu | |
2022-12-10 | core: add color attributes "blink" and "dim" (half bright) (closes #1855) | Sébastien Helleu | |
2022-11-22 | doc: update German auto-generated file | Sébastien Helleu | |
2022-11-21 | core: add option `unicode` in command `/debug` | Sébastien Helleu | |
2022-11-11 | core: add identifier in buffer lines (closes #901) | Sébastien Helleu | |
For buffers with formatted content, the "id" starts to 0 on each buffer and is incremented on each new line displayed (it is reset to 0 if reaching INT_MAX). For buffers with free content, the "id" is set to the same value as "y" (ie the line number, starting to 0). |