stipub / stixfonts

OpenType Unicode fonts for Scientific, Technical, and Mathematical texts
SIL Open Font License 1.1
687 stars 41 forks source link

Oldstyle Yen feature code issue (v2.11) #181

Closed kenmcd closed 3 years ago

kenmcd commented 3 years ago

The onum feature code for the Yen currency symbol is incorrect.

Current:
sub yen.OP by yen.OP; 1  StixText Oldstyle Yen before

Should be:
sub yen by yen.OP; 2  StixText Oldstyle Yen after

lookup x.onum {
    sub zero by zero.OT;
    sub one by one.OT;
    sub two by two.OT;
    sub three by three.OT;
    sub four by four.OT;
    sub five by five.OT;
    sub six by six.OT;
    sub seven by seven.OT;
    sub eight by eight.OT;
    sub nine by nine.OT;
    sub Euro by Euro.OP;
    sub dollar by dollar.OP;
    sub sterling by sterling.OP;
    sub yen.OP by yen.OP;  # should be  sub yen by yen.OP;
} x.onum;
tiroj commented 3 years ago

Fixed in VOLT projects and input.ttf Text fonts for v2.12