Added '/' to the list of fuzzy characters for pattern timers

This commit is contained in:
Klaus Schmidinger 2024-01-21 10:43:20 +01:00
parent 78b7e4e252
commit 21d3d489fd
3 changed files with 5 additions and 3 deletions

View File

@ -9863,7 +9863,7 @@ Video Disk Recorder Revision History
- The recording info of the default skins now shows the frame parameters of the - The recording info of the default skins now shows the frame parameters of the
recording at the end of the description (if such information is available). recording at the end of the description (if such information is available).
2024-01-20: 2024-01-21:
- Changed installing config files to handle potentially broken 'cp -n'. - Changed installing config files to handle potentially broken 'cp -n'.
- Fixed height calculation in progress display (thanks to Matthias Senzel). - Fixed height calculation in progress display (thanks to Matthias Senzel).
@ -9880,3 +9880,4 @@ Video Disk Recorder Revision History
- Added the move constructor to cString for better performance (thanks to Markus - Added the move constructor to cString for better performance (thanks to Markus
Ehrnsperger). Ehrnsperger).
- Added the total number of errors when logging new recording errors. - Added the total number of errors when logging new recording errors.
- Added '/' to the list of fuzzy characters for pattern timers.

1
MANUAL
View File

@ -645,6 +645,7 @@ following the matching pattern. There are three macros that can be used here:
As of VDR version 2.5.2, the characters ' ' (blank), ':' and '-' are ignored As of VDR version 2.5.2, the characters ' ' (blank), ':' and '-' are ignored
when checking whether a particular recording has already been made by a pattern when checking whether a particular recording has already been made by a pattern
timer, making "TITLE - EPISODE" and "TITLE: EPISODE" the same. timer, making "TITLE - EPISODE" and "TITLE: EPISODE" the same.
VDR version 2.6.6 added '/' to this list.
* Managing folders * Managing folders

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: recording.c 5.24 2023/12/29 10:48:25 kls Exp $ * $Id: recording.c 5.25 2024/01/21 10:43:20 kls Exp $
*/ */
#include "recording.h" #include "recording.h"
@ -3228,7 +3228,7 @@ void cDoneRecordings::Append(const char *Title)
} }
} }
static const char *FuzzyChars = " -:"; static const char *FuzzyChars = " -:/";
static const char *SkipFuzzyChars(const char *s) static const char *SkipFuzzyChars(const char *s)
{ {