PascalTZ icon indicating copy to clipboard operation
PascalTZ copied to clipboard

incompatibility with new database

Open rgreat opened this issue 1 year ago • 1 comments

unit uPascalTZ;

TPascalTZ.BareParseRule(const AIterator: TTZLineIterate);

Had to change from: NewRule.InMonth := MonthNumberFromShortName(TmpWord); to: NewRule.InMonth := MonthNumberFromShortName(Copy(TmpWord,1,3));

rgreat avatar Nov 02 '24 19:11 rgreat

Thanks for reporting this issue.

The month parsing function has been adjusted to allow unabbreviated month names.

Unabbreviated month names first appeared in tzdata 2024b, e.g. "Mexico" rule definition.

dezlov avatar Nov 07 '24 14:11 dezlov