mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
bug 153: UTF-8 bookmark.title has been fully implemented.
Mention it in NEWS too.
This commit is contained in:
parent
311d95358d
commit
264a66fe4d
3
NEWS
3
NEWS
@ -17,6 +17,9 @@ includes the changes listed under ``ELinks 0.11.5.GIT'' below.
|
||||
Previously, they could turn into spaces or disappear entirely.
|
||||
* Perl scripts can use modules that dynamically load C libraries, like
|
||||
XML::LibXML::SAX does.
|
||||
* bug 153: Preserve Unicode characters in XBEL bookmark files.
|
||||
However, Unicode in URIs (really IRIs) does not work reliably yet;
|
||||
this is being tracked as bug 1066.
|
||||
* bug 885: Convert xterm titles to ISO-8859-1 by default, but add an
|
||||
option to disable this. When removing control characters from a
|
||||
title, note the charset. Don't truncate titles to the width of the
|
||||
|
@ -17,9 +17,9 @@ struct bookmark {
|
||||
|
||||
struct listbox_item *box_item;
|
||||
|
||||
/** @todo Bugs 153, 1066: The #title and #url strings should
|
||||
* be in UTF-8, but this has not yet been fully implemented. */
|
||||
unsigned char *title; /* title of bookmark */
|
||||
/** @todo Bug 1066: The #url string should be in UTF-8 too,
|
||||
* but this has not yet been fully implemented. */
|
||||
unsigned char *title; /* UTF-8 title of bookmark */
|
||||
unsigned char *url; /* Location of bookmarked item */
|
||||
|
||||
LIST_OF(struct bookmark) child;
|
||||
|
Loading…
Reference in New Issue
Block a user