diff --git a/CONTRIBUTORS b/CONTRIBUTORS index bbcfab1b..ca687665 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3383,6 +3383,7 @@ Stefan Hofmann for adding parameter checks to strn0cpy() for making the info files of recordings only be re-read if they have been modified for reporting missing setting the file name of the info file after renaming a recording + for adding '~' to the list of delimiters in cTextWrapper Stefan Blochberger for suggesting to automatically display the progress display whenever replay of a diff --git a/HISTORY b/HISTORY index 0c5d0eee..141406de 100644 --- a/HISTORY +++ b/HISTORY @@ -10082,3 +10082,4 @@ Video Disk Recorder Revision History - The function cPlugin::MainThreadHook() has been deprecated and may be removed in future versions. Use proper locking instead. - Fixed unnecessary redisplays of menus. +- Added '~' to the list of delimiters in cTextWrapper (thanks to Stefan Hofmann). diff --git a/font.c b/font.c index 42700afe..03fe8082 100644 --- a/font.c +++ b/font.c @@ -6,7 +6,7 @@ * * BiDi support by Osama Alrawab @2008 Tripoli-Libya. * - * $Id: font.c 5.2 2022/12/06 12:30:13 kls Exp $ + * $Id: font.c 5.3 2025/02/17 11:13:13 kls Exp $ */ #include "font.h" @@ -618,7 +618,7 @@ void cTextWrapper::Set(const char *Text, const cFont *Font, int Width) } } w += cw; - if (strchr("-.,:;!?_", *p)) { + if (strchr("-.,:;!?_~", *p)) { Delim = p; Blank = NULL; }