Skip to content

Commit

Permalink
Release v2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rsms committed Oct 10, 2017
1 parent 52302bc commit 8752b93
Show file tree
Hide file tree
Showing 28 changed files with 99 additions and 99 deletions.
Binary file modified docs/font-files/Inter-UI-Black.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Black.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Black.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-BlackItalic.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-BlackItalic.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-BlackItalic.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Bold.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Bold.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Bold.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-BoldItalic.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-BoldItalic.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-BoldItalic.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Medium.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Medium.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Medium.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-MediumItalic.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-MediumItalic.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-MediumItalic.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Regular.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Regular.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-Regular.woff2
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-RegularItalic.otf
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-RegularItalic.woff
Binary file not shown.
Binary file modified docs/font-files/Inter-UI-RegularItalic.woff2
Binary file not shown.
32 changes: 16 additions & 16 deletions docs/inter-ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,58 @@
font-family: 'Inter UI';
font-style: normal;
font-weight: 400;
src: url("font-files/Inter-UI-Regular.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-Regular.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-Regular.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-Regular.woff?v=2.1") format("woff");
}
@font-face {
font-family: 'Inter UI';
font-style: italic;
font-weight: 400;
src: url("font-files/Inter-UI-RegularItalic.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-RegularItalic.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-RegularItalic.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-RegularItalic.woff?v=2.1") format("woff");
}

@font-face {
font-family: 'Inter UI';
font-style: normal;
font-weight: 500;
src: url("font-files/Inter-UI-Medium.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-Medium.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-Medium.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-Medium.woff?v=2.1") format("woff");
}
@font-face {
font-family: 'Inter UI';
font-style: italic;
font-weight: 500;
src: url("font-files/Inter-UI-MediumItalic.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-MediumItalic.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-MediumItalic.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-MediumItalic.woff?v=2.1") format("woff");
}

@font-face {
font-family: 'Inter UI';
font-style: normal;
font-weight: 700;
src: url("font-files/Inter-UI-Bold.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-Bold.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-Bold.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-Bold.woff?v=2.1") format("woff");
}
@font-face {
font-family: 'Inter UI';
font-style: italic;
font-weight: 700;
src: url("font-files/Inter-UI-BoldItalic.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-BoldItalic.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-BoldItalic.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-BoldItalic.woff?v=2.1") format("woff");
}

@font-face {
font-family: 'Inter UI';
font-style: normal;
font-weight: 900;
src: url("font-files/Inter-UI-Black.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-Black.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-Black.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-Black.woff?v=2.1") format("woff");
}
@font-face {
font-family: 'Inter UI';
font-style: italic;
font-weight: 900;
src: url("font-files/Inter-UI-BlackItalic.woff2?v=2.0") format("woff2"),
url("font-files/Inter-UI-BlackItalic.woff?v=2.0") format("woff");
src: url("font-files/Inter-UI-BlackItalic.woff2?v=2.1") format("woff2"),
url("font-files/Inter-UI-BlackItalic.woff?v=2.1") format("woff");
}
96 changes: 48 additions & 48 deletions src/Inter-UI-Black.ufo/glyphs/a.glif
Original file line number Diff line number Diff line change
@@ -1,74 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<glyph name="a" format="1">
<advance width="1536"/>
<advance width="1528"/>
<unicode hex="0061"/>
<outline>
<contour>
<point x="944" y="660" type="line"/>
<point x="944" y="492" type="line" smooth="yes"/>
<point x="944" y="384"/>
<point x="824" y="304"/>
<point x="704" y="304" type="curve" smooth="yes"/>
<point x="604" y="304"/>
<point x="540" y="360"/>
<point x="540" y="444" type="curve" smooth="yes"/>
<point x="540" y="556"/>
<point x="612" y="660"/>
<point x="792" y="660" type="curve" smooth="yes"/>
<point x="936" y="660" type="line"/>
<point x="936" y="492" type="line" smooth="yes"/>
<point x="936" y="384"/>
<point x="816" y="304"/>
<point x="696" y="304" type="curve" smooth="yes"/>
<point x="596" y="304"/>
<point x="532" y="360"/>
<point x="532" y="444" type="curve" smooth="yes"/>
<point x="532" y="556"/>
<point x="604" y="660"/>
<point x="784" y="660" type="curve" smooth="yes"/>
</contour>
<contour>
<point x="968" y="0" type="line"/>
<point x="1408" y="0" type="line"/>
<point x="1408" y="1024" type="line" smooth="yes"/>
<point x="1408" y="1380"/>
<point x="1128" y="1556"/>
<point x="776" y="1556" type="curve" smooth="yes"/>
<point x="456" y="1556"/>
<point x="184" y="1408"/>
<point x="104" y="1116" type="curve"/>
<point x="536" y="1056" type="line"/>
<point x="572" y="1164"/>
<point x="632" y="1216"/>
<point x="752" y="1216" type="curve" smooth="yes"/>
<point x="888" y="1216"/>
<point x="944" y="1152"/>
<point x="944" y="1028" type="curve" smooth="yes"/>
<point x="944" y="944" type="line"/>
<point x="788" y="944" type="line" smooth="yes"/>
<point x="280" y="944"/>
<point x="96" y="728"/>
<point x="96" y="420" type="curve" smooth="yes"/>
<point x="96" y="156"/>
<point x="324" y="-28"/>
<point x="600" y="-28" type="curve" smooth="yes"/>
<point x="792" y="-28"/>
<point x="908" y="52"/>
<point x="956" y="132" type="curve"/>
<point x="968" y="132" type="line"/>
<point x="960" y="0" type="line"/>
<point x="1400" y="0" type="line"/>
<point x="1400" y="1024" type="line" smooth="yes"/>
<point x="1400" y="1380"/>
<point x="1120" y="1556"/>
<point x="768" y="1556" type="curve" smooth="yes"/>
<point x="448" y="1556"/>
<point x="176" y="1408"/>
<point x="96" y="1116" type="curve"/>
<point x="528" y="1056" type="line"/>
<point x="564" y="1164"/>
<point x="624" y="1216"/>
<point x="744" y="1216" type="curve" smooth="yes"/>
<point x="880" y="1216"/>
<point x="936" y="1152"/>
<point x="936" y="1028" type="curve" smooth="yes"/>
<point x="936" y="944" type="line"/>
<point x="780" y="944" type="line" smooth="yes"/>
<point x="272" y="944"/>
<point x="88" y="712"/>
<point x="88" y="420" type="curve" smooth="yes"/>
<point x="88" y="128"/>
<point x="316" y="-28"/>
<point x="592" y="-28" type="curve" smooth="yes"/>
<point x="784" y="-28"/>
<point x="900" y="52"/>
<point x="948" y="132" type="curve"/>
<point x="960" y="132" type="line"/>
</contour>
<contour>
<point x="772" y="1776" type="move" name="top"/>
<point x="764" y="1776" type="move" name="top"/>
</contour>
<contour>
<point x="684" y="4" type="move" name="bottom"/>
<point x="676" y="4" type="move" name="bottom"/>
</contour>
<contour>
<point x="1396" y="0" type="move" name="ogonek"/>
<point x="1388" y="0" type="move" name="ogonek"/>
</contour>
<contour>
<point x="776" y="1776" type="move" name="rhalfring"/>
<point x="768" y="1776" type="move" name="rhalfring"/>
</contour>
<contour>
<point x="1544" y="2200" type="move" name="top_dd"/>
<point x="1536" y="2200" type="move" name="top_dd"/>
</contour>
<contour>
<point x="1544" y="-560" type="move" name="bottom_dd"/>
<point x="1536" y="-560" type="move" name="bottom_dd"/>
</contour>
<contour>
<point x="1220" y="900" type="move" name="rhotichook"/>
<point x="1212" y="900" type="move" name="rhotichook"/>
</contour>
<contour>
<point x="1552" y="1776" type="move" name="top0315"/>
<point x="1544" y="1776" type="move" name="top0315"/>
</contour>
</outline>
<lib>
Expand Down
62 changes: 31 additions & 31 deletions src/Inter-UI-Black.ufo/glyphs/uni01F6_.glif
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<glyph name="uni01F6" format="1">
<advance width="3072"/>
<advance width="2936"/>
<unicode hex="01F6"/>
<outline>
<contour>
<point x="2416" y="1488" type="line"/>
<point x="2416" y="696" type="line" smooth="yes"/>
<point x="2416" y="448"/>
<point x="2344" y="344"/>
<point x="2136" y="344" type="curve" smooth="yes"/>
<point x="1932" y="344"/>
<point x="1856" y="448"/>
<point x="1856" y="696" type="curve" smooth="yes"/>
<point x="1856" y="776" type="line"/>
<point x="1396" y="776" type="line"/>
<point x="1396" y="696" type="line" smooth="yes"/>
<point x="1396" y="228"/>
<point x="1672" y="-28"/>
<point x="2136" y="-28" type="curve" smooth="yes"/>
<point x="2600" y="-28"/>
<point x="2876" y="228"/>
<point x="2876" y="696" type="curve" smooth="yes"/>
<point x="2876" y="1488" type="line"/>
<point x="2348" y="1488" type="line"/>
<point x="2348" y="696" type="line" smooth="yes"/>
<point x="2348" y="492"/>
<point x="2276" y="352"/>
<point x="2068" y="352" type="curve" smooth="yes"/>
<point x="1864" y="352"/>
<point x="1788" y="492"/>
<point x="1788" y="696" type="curve" smooth="yes"/>
<point x="1788" y="776" type="line"/>
<point x="1328" y="776" type="line"/>
<point x="1328" y="696" type="line" smooth="yes"/>
<point x="1328" y="228"/>
<point x="1604" y="-28"/>
<point x="2068" y="-28" type="curve" smooth="yes"/>
<point x="2532" y="-28"/>
<point x="2808" y="228"/>
<point x="2808" y="696" type="curve" smooth="yes"/>
<point x="2808" y="1488" type="line"/>
</contour>
<contour>
<point x="1540" y="1208" type="line"/>
<point x="508" y="1208" type="line"/>
<point x="508" y="836" type="line"/>
<point x="1540" y="836" type="line"/>
<point x="1472" y="1208" type="line"/>
<point x="440" y="1208" type="line"/>
<point x="440" y="836" type="line"/>
<point x="1472" y="836" type="line"/>
</contour>
<contour>
<point x="656" y="2004" type="line"/>
<point x="196" y="2004" type="line"/>
<point x="196" y="0" type="line"/>
<point x="656" y="0" type="line"/>
<point x="588" y="2048" type="line"/>
<point x="128" y="2048" type="line"/>
<point x="128" y="0" type="line"/>
<point x="588" y="0" type="line"/>
</contour>
<contour>
<point x="1856" y="2004" type="line"/>
<point x="1396" y="2004" type="line"/>
<point x="1396" y="688" type="line"/>
<point x="1856" y="688" type="line"/>
<point x="1788" y="2048" type="line"/>
<point x="1328" y="2048" type="line"/>
<point x="1328" y="688" type="line"/>
<point x="1788" y="688" type="line"/>
</contour>
</outline>
<lib>
Expand Down
8 changes: 4 additions & 4 deletions src/Inter-UI-Black.ufo/kerning.plist
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@
<key>@KERN_RIGHT_a</key>
<integer>-86</integer>
<key>@KERN_RIGHT_c</key>
<integer>-136</integer>
<integer>-86</integer>
<key>@KERN_RIGHT_comma</key>
<integer>-331</integer>
<key>@KERN_RIGHT_dotlessi</key>
Expand Down Expand Up @@ -1080,7 +1080,7 @@
<key>@KERN_RIGHT_a</key>
<integer>-32</integer>
<key>@KERN_RIGHT_c</key>
<integer>-128</integer>
<integer>-70</integer>
<key>@KERN_RIGHT_f</key>
<integer>14</integer>
<key>@KERN_RIGHT_quotedblleft</key>
Expand Down Expand Up @@ -2165,7 +2165,7 @@
<key>@KERN_RIGHT_quotedblleft</key>
<integer>-5</integer>
<key>@KERN_RIGHT_t</key>
<integer>24</integer>
<integer>0</integer>
<key>@KERN_RIGHT_v</key>
<integer>-53</integer>
<key>@KERN_RIGHT_x</key>
Expand Down Expand Up @@ -4343,7 +4343,7 @@
<key>@KERN_RIGHT_Y</key>
<integer>-132</integer>
<key>@KERN_RIGHT_c</key>
<integer>-33</integer>
<integer>-36</integer>
<key>@KERN_RIGHT_divide</key>
<integer>-82</integer>
<key>@KERN_RIGHT_dotlessj</key>
Expand Down

0 comments on commit 8752b93

Please sign in to comment.