Skip to content

Commit

Permalink
Fix smcp / liga ordering issue
Browse files Browse the repository at this point in the history
Closes #30.
  • Loading branch information
ctrlcctrlv committed Jan 10, 2023
1 parent 99d5b97 commit 2978a3c
Show file tree
Hide file tree
Showing 39 changed files with 23 additions and 23 deletions.
Binary file removed fonts/ttf/Besley-Black.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-BlackItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-Bold.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-BoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-ExtraBold.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-ExtraBoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-Italic.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-Medium.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-MediumItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-Regular.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-SemiBold.ttf
Binary file not shown.
Binary file removed fonts/ttf/Besley-SemiBoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-Black.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-BlackItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-Bold.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-BoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-ExtraBold.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-ExtraBoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-Italic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-Medium.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-MediumItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-Regular.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-SemiBold.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyCondensed-SemiBoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-Black.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-BlackItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-Bold.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-BoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-ExtraBold.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-ExtraBoldItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-Italic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-Medium.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-MediumItalic.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-Regular.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-SemiBold.ttf
Binary file not shown.
Binary file removed fonts/ttf/BesleyNarrow-SemiBoldItalic.ttf
Binary file not shown.
Binary file modified fonts/variable/Besley-Italic[wdth,wght].ttf
Binary file not shown.
Binary file modified fonts/variable/Besley[wdth,wght].ttf
Binary file not shown.
46 changes: 23 additions & 23 deletions sources/misc/featuresItalic.fea
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@ languagesystem latn dflt;
# GSUB


lookup ligaStandardLigatureslookup0 {
lookupflag 0;
sub \f \f by \uniFB00;
sub \f \i by \uniFB01;
sub \f \l by \uniFB02;
sub \f \f \i by \uniFB03;
sub \f \f \l by \uniFB04;
} ligaStandardLigatureslookup0;

lookup onumOldstyleFigureslookup1 {
lookupflag 0;
sub \zero by \zero.oldstyle ;
Expand Down Expand Up @@ -327,20 +318,14 @@ lookup caltContextualAlternateslookup9 {
\zacute.sc \zcaron.sc \zdotaccent.sc ] [\hyphen ]' by [\hyphen.sc ];
} caltContextualAlternateslookup9;

feature liga {

script DFLT;
language dflt ;
lookup ligaStandardLigatureslookup0;

script grek;
language dflt ;
lookup ligaStandardLigatureslookup0;

script latn;
language dflt ;
lookup ligaStandardLigatureslookup0;
} liga;
lookup ligaStandardLigatureslookup0 {
lookupflag 0;
sub \f \f by \uniFB00;
sub \f \i by \uniFB01;
sub \f \l by \uniFB02;
sub \f \f \i by \uniFB03;
sub \f \f \l by \uniFB04;
} ligaStandardLigatureslookup0;

feature onum {

Expand Down Expand Up @@ -418,6 +403,21 @@ feature c2sc {
language dflt ;
lookup c2scCapitalstoSmallCapitalsinLatinlookup1;
} c2sc;

feature liga {

script DFLT;
language dflt ;
lookup ligaStandardLigatureslookup0;

script grek;
language dflt ;
lookup ligaStandardLigatureslookup0;

script latn;
language dflt ;
lookup ligaStandardLigatureslookup0;
} liga;
#Mark attachment classes (defined in GDEF, used in lookupflags)

@GDEF_Simple = [\ampersand \period \zero \one \two \three \four \five \six \seven
Expand Down

0 comments on commit 2978a3c

Please sign in to comment.