summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-02Version 0.4.2-rc1Sebastien Helleu
2013-09-02core: update polish translationsKrzysztof Koroscik
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-02doc: update polish FAQ and scripting guideKrzysztof Koroscik
2013-09-02core: update german translationsNils Görs
2013-09-02core: add option weechat.look.day_change_message2 in file NEWSSebastien 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-31doc: remove "required" for password option in command "init" (relay protocol)Sebastien Helleu
2013-08-30doc: use one line titles in japanese man pageSebastien Helleu
The compilation was failing with asciidoc 8.5.2 (on Debian Squeeze).
2013-08-29doc: update japanese translations and docsRyuunosuke Ayanokouzi
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: update translationsSebastien 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-18doc: update german auto-generated filesSebastien Helleu
2013-08-18doc: update german translations and user's guideNils Görs
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-18core: add split of IRC messages for commands (de)op/halfop/voice in ChangeLogSebastien Helleu
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-17doc: capitalize first word of text in table cellsSebastien Helleu
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
2013-08-16core: add text emphasis in messages when searching text in bufferSebastien Helleu
New options: - weechat.look.emphasized_attributes - weechat.color.emphasized - weechat.color.emphasized_bg
2013-08-15core: remove obsolete enum t_config_look_nicklistSebastien Helleu
2013-08-14doc: fix emphasized text in plugin API reference and relay protocolSebastien Helleu
2013-08-12core: fix typo in french translation of /help upgradeSebastien Helleu
2013-08-12core: add comment with return value of function string_regcompSebastien Helleu
2013-08-12doc: update german translations, scripting and user guideNils Görs
2013-08-11core: add note about "strftime" in help of options ↵Sebastien Helleu
weechat.look.day_change_time_format and weechat.look.time_format
2013-08-10doc: add "oauth" for IRC connection in FAQSebastien Helleu
2013-08-10core: use shared strings for tags on linesSebastien Helleu
It can reduce by about 30% the memory used for lines in a buffer.
2013-08-10core: add support of shared strings in split of strings (add functions ↵Sebastien Helleu
string_split_shared and string_free_split_shared)
2013-08-10core: add shared strings to reduce memory usageSebastien Helleu
Shared strings are stored in a hashtable with pointer for keys (values are not used). The key has a reference count + the string. The initial reference count is set to 1 and is incremented each time the same string is asked. When removing a shared string, the reference count is decremented. If it becomes 0, then the shared string is removed from the hashtable (and then the string is really destroyed).
2013-08-10core: fix random crash on "/buffer close" with a buffer number (or a range ↵Sebastien Helleu
of buffers)
2013-08-10core: optimize the removal of lines in buffers (a lot faster to clear/close ↵Sebastien Helleu
buffers with lot of lines) The update of variables "buffer_max_length" and "prefix_max_length" in struct t_gui_lines is now delayed and made during the main refresh (in main loop). For a buffer with 50K lines, it is up to 3300 times faster to clear/close it. For a buffer with 4096 lines (default limit), it is up to 120 times faster.
2013-08-10core: update ChangeLog with changes on hashtablesSebastien Helleu
2013-08-10core: change type of hashtable key hash to unsigned long, return item ↵Sebastien Helleu
pointer in functions hashtable_set(_with_size) The key hash has been changed from unsigned int to unsigned long, and now the callback can return any value (not only between 0 and size-1), the modulo is computed after the call to the callback by the hashtable functions. Functions hashtable_set and hashtable_set_with_size were returning 1 if OK, 0 if error. Now they return pointer to hashtable item, or NULL if error.
2013-08-09core: check that value is not NULL before calling free in hashtable_free_valueSebastien Helleu
2013-08-09core: add "callback_free_key" in hashtableSebastien Helleu