Files
Min S. Kim 3e796f3b4d calibre: escape dot in gsub pattern for series index cleanup (#15037)
The unescaped `.` in `".00"` matches any character followed by two
zeros. For a series entry like `"00001.00 | Title - Author"`, the
pattern matches `000` at position 1 instead of the intended literal
`.00` at position 6, producing `"01.00 | Title - Author"`.

Escape as `"%.00"` to match a literal period.
2026-02-25 08:55:50 +01:00
..