1 2008-03-05 Martin Mares <mj@ucw.cz>
3 * Added support for lighting keyboard LEDs via the XKB protocol
4 if a connection to the X server is available.
8 2008-02-13 Martin Mares <mj@ucw.cz>
10 * Added support for gzipped mailboxes, based on a patch by
15 2008-01-16 Martin Mares <mj@ucw.cz>
17 * Non-ASCII characters are displayed properly in UTF-8 locale.
18 Unfortunately, this needs linking checkmail with libncursesw,
19 because plain libncurses chokes on multi-byte characters whose
20 parts do not look printable. This mode is now enabled by default,
21 tweak the Makefile if you do not have libncursesw.
25 2007-06-25 Martin Mares <mj@ucw.cz>
27 * Non-ASCII characters encoded as per RFC 2047 are now deciphered
28 and converted to the native character set. (We use parsing code
29 from Mutt 1.5.16, slightly adapted for our use.)
31 * The system locale and iconv routines are used for operations with
32 charsets. We use the not too well documented "//TRANSLIT" suffix to
33 make iconv perform transliteration when it encounters a character,
34 which cannot be represented in the destination charset. This is
35 a GNU extension, but we hope that it gets ignored on other systems.
37 * Mail sender addresses are now parsed (again using Mutt's routines)
38 and you can use the `m' and `p' options to select whether you
39 want to display the full name of the sender, the address of his/her
42 * Mailboxes can be assigned hotkeys, which override the default
43 key bindings. This is available as the `!<hotkey>' option.
45 * If a mailbox contains no new messages, you can choose to highlight
46 flagged messages (those with `X-Status: F' header, see the `F'
47 command in Mutt) instead. See the `f' option.
49 * Folded headers are now parsed properly.
53 2006-06-03 Martin Mares <mj@ucw.cz>
55 * cm.c (add_snippet): Compress spaces and avoid printing unprintable
60 2005-05-25 Martin Mares <mj@ucw.cz>
62 * cm.c (add_snippet): Don't forget to terminate the string. Gets rid of
63 occassional garbage at the end of mail snippets.
65 * Ctrl-L now refreshes the screen.
67 * `B' disables (and `b' enables) all beeping.
71 2005-05-23 Martin Mares <mj@ucw.cz>
73 * Replaced the `-h' switch by a general interface for setting options.
75 * Added `hide', `hide if empty', `beep' and `highlight' options.
77 * Introduced mbox priorities independent on highlighting. TAB selects
78 the highest priority mbox with new messages.
80 * Introduced hiding according to priority.
82 * Mailboxes can now carry custom names.
84 * Removed the non-functional `-l' switch.
86 * Introduced `snippet' option which shows sender and subject of the freshest
87 new message. So far very rough.
89 * Added release scripts.
93 2005-05-20 Martin Mares <mj@ucw.cz>