summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-10-20core: add warning about value 0 in help of some history optionsSebastien Helleu
Options affected: - weechat.history.max_buffer_lines_minutes - weechat.history.max_buffer_lines_number - weechat.history.max_commands
2013-10-19core: fix truncated prefix when filters are toggled (bug #40204)Sebastien Helleu
2013-10-10core: use one date format when day changes from day to day+1Sebastien Helleu
2013-10-08irc: add option irc.look.notice_welcome_tagsSebastien Helleu
2013-10-08irc: add server option "default_msg_kick" to customize default kick/kickban ↵Sebastien Helleu
message (task #12777) (patch from Nils Görs)
2013-10-06core: add options to customize default text search in buffersSebastien Helleu
New options: - weechat.look.buffer_search_case_sensitive (boolean, off by default) - weechat.look.buffer_search_force_default (boolean, off by default) - weechat.look.buffer_search_regex (boolean, off by default) - weechat.look.buffer_search_where (prefix, message (by default), prefix_message)
2013-10-06core: remove warning about proxy not found for option ↵Sebastien Helleu
weechat.network.proxy_curl on startup Proxies are not yet fully loaded (when reading weechat.conf), so the warning is not displayed on startup, but only when option is changed.
2013-10-06irc: improve help of server option "autojoin"Sebastien Helleu
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-10-05relay: fix decoding of websocket frames when there are multiple frames in a ↵Sebastien Helleu
single message received (only the first one was decoded)
2013-10-05core: fix display of read marker after buffer switch when there is no line ↵Sebastien Helleu
displayed after (only filtered lines)
2013-10-05irc: use "private" notify for welcome notices displayed in channel (like ↵Sebastien Helleu
when they are displayed in server buffer)
2013-10-05irc: remove target of notice (self nick) in the display of channel welcome ↵Sebastien Helleu
notice (fix highlight problem)
2013-10-04irc: display target of notice when it is displayed in channelSebastien Helleu
With the new option irc.look.notice_welcome_redirect, a private notice could have a channel at beginning of message (with format "[#channel]") and then be displayed on the channel, without difference with a real channel notice (received by all nicks in channel). For example with these commands: /notice nick2 [#channel] private notice /notice #channel notice for whole channel Old display was (on receiver side, in #channel): -- | Notice(nick1): private notice -- | Notice(nick1): notice for whole channel New display is: -- | Notice(nick1) -> nick2: private notice -- | Notice(nick1) -> #channel: notice for whole channel
2013-10-03irc: fix reconnection to server using IPv6 (bug #38819, bug #40166)Sebastien Helleu
2013-10-02core: replace some code by calls to function gui_chat_clrtoeol()Sebastien Helleu
2013-10-02core: fix spaces displayed after combining chars (bug #40115)Sebastien Helleu
2013-09-30core: clear whole line before displaying content instead of clearing after ↵Sebastien Helleu
the end of content (bug #40115)
2013-09-30core: fix display of read marker (as horizontal line) or day change message ↵Sebastien Helleu
after last buffer line when scrolling (bug #40126)
2013-09-24core: fix time displayed in status bar (it was one second late) (bug #40097)Sebastien Helleu
2013-09-23core: fix extension (.exe) of symbolic link "weechat-curses" under CygwinSebastien Helleu
2013-09-23core: replace some calls to ncurses *printw functions by *addstrSebastien Helleu
2013-09-20aspell: fix detection of word start/end when there are apostrophes or minus ↵Sebastien Helleu
chars before/after word (thanks to Nils Görs)
2013-09-20irc: add extra info in /help irc.look.smart_filter_delaySebastien Helleu
2013-09-20core: add proxy options username/password in /help secureSebastien Helleu
2013-09-19core: add support of secured data in proxy options username/password ↵Sebastien Helleu
(evaluate content)
2013-09-19irc: add note about evaluated content of "password" server optionSebastien Helleu
2013-09-19relay: add support of secured data in option relay.network.password ↵Sebastien Helleu
(evaluate content) (patch from Nils Görs)
2013-09-19core: fix memory leak on unhook of a print hook (if using tags)Sebastien Helleu
2013-09-03core: rename options weechat.look.day_change_message(2) to ↵Sebastien Helleu
weechat.look.day_change_message_{1date|2dates}
2013-09-02core: fix computation of columns in output of /help (take care about size of ↵Sebastien Helleu
time/buffer/prefix)
2013-09-02Merge branch 'shared-strings'Sebastien Helleu
2013-09-02core: add option weechat.look.day_change_message2Sebastien Helleu
The new option weechat.look.day_change_message2 is used to display day change between two messages, with two dates: the new one, and the old one. Example: -- Mon, 02 Sep 2013 (Thu, 22 Aug 2013) --
2013-08-29irc: fix extraction of channel name in notice (when message starts with "[]")Sebastien Helleu
2013-08-28core: fix automatic scroll to bottom of buffer when day change is displayed ↵Sebastien Helleu
before first line of buffer
2013-08-28irc: add option irc.look.notice_welcome_redirect to automatically redirect ↵Sebastien Helleu
channel welcome notices to the channel buffer
2013-08-26logger: add option "flush" for command /loggerSebastien Helleu
2013-08-25core: fix evaluation of expressions with parenthesesSebastien Helleu
First evaluate sub-expressions between parentheses. Before the fix: >> 1 && (0 || 0) == [1] After the fix: >> 1 && (0 || 0) == [0]
2013-08-25core: add note about color codes "${color:xxx}" in /help ↵Sebastien Helleu
weechat.look.day_change_message
2013-08-25core: display day change message dynamically (do not store it as a line in ↵Sebastien Helleu
buffer) (task #12775) Changes in options: - rename option weechat.look.day_change_time_format to weechat.look.day_change_message (color codes are allowed in this option) - new option weechat.color.chat_day_change.
2013-08-22core: fix uncontrolled format string when displaying bufferized lines on ↵Sebastien Helleu
startup (lines waiting for core buffer)
2013-08-21core: display an error message when "/buffer notify xxx" fails (with a wrong ↵Sebastien Helleu
notify level)
2013-08-20core: improve help of command /awaySebastien Helleu
2013-08-20core: fix buffer returned in focus info for bar items with a forced bufferSebastien Helleu
2013-08-19core: add syntax "@buffer:item" in bar items to force the buffer used when ↵Sebastien Helleu
displaying the bar item (task #12717)
2013-08-18irc: replace default prefix modes "qaohvu" by the standard ones "ov" when ↵Sebastien Helleu
PREFIX is not sent by server (bug #39802)
2013-08-17core: use shared strings for groups/nicks in nicklistSebastien Helleu
2013-08-17core: use shared strings for prefix on linesSebastien Helleu
It can reduce by about 10% the memory used for lines in a buffer.
2013-08-17core: add commment in function string_shared_get (returned value must not be ↵Sebastien Helleu
changed)
2013-08-17core: add search of regular expression in buffer, don't reset search type on ↵Sebastien Helleu
a new search, select where to search (messages/prefixes) Key changed in search context: - ctrl+"r": switch search type: string/regex New keys in search context: - alt+"c": case (in)sensitive search - tab: search in messages/prefixes/both