Skip to content

Commit 3b7e46f

Browse files
committed
update fonts after google/fonts#727
1 parent 0d7fd98 commit 3b7e46f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+27
-32
lines changed

fonts/Black/Roboto-Black.ttf

0 Bytes
Binary file not shown.

fonts/Black/Roboto-Black.woff

0 Bytes
Binary file not shown.

fonts/Black/Roboto-Black.woff2

-88 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
104 Bytes
Binary file not shown.

fonts/Bold/Roboto-Bold.ttf

0 Bytes
Binary file not shown.

fonts/Bold/Roboto-Bold.woff

0 Bytes
Binary file not shown.

fonts/Bold/Roboto-Bold.woff2

-60 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-4 Bytes
Binary file not shown.
3.21 KB
Binary file not shown.

fonts/Italic/Roboto-Italic.ttf

0 Bytes
Binary file not shown.

fonts/Italic/Roboto-Italic.woff

0 Bytes
Binary file not shown.

fonts/Italic/Roboto-Italic.woff2

-4 Bytes
Binary file not shown.

fonts/Light/Roboto-Light.ttf

0 Bytes
Binary file not shown.

fonts/Light/Roboto-Light.woff

0 Bytes
Binary file not shown.

fonts/Light/Roboto-Light.woff2

52 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-40 Bytes
Binary file not shown.

fonts/Medium/Roboto-Medium.ttf

0 Bytes
Binary file not shown.

fonts/Medium/Roboto-Medium.woff

0 Bytes
Binary file not shown.

fonts/Medium/Roboto-Medium.woff2

72 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-32 Bytes
Binary file not shown.

fonts/Regular/Roboto-Regular.ttf

0 Bytes
Binary file not shown.

fonts/Regular/Roboto-Regular.woff

0 Bytes
Binary file not shown.

fonts/Regular/Roboto-Regular.woff2

-200 Bytes
Binary file not shown.

fonts/Thin/Roboto-Thin.ttf

0 Bytes
Binary file not shown.

fonts/Thin/Roboto-Thin.woff

0 Bytes
Binary file not shown.

fonts/Thin/Roboto-Thin.woff2

-8 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-172 Bytes
Binary file not shown.

less/_Light.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
font-weight: 300;
66
font-style: normal;
77
}
8-
/* END Light */
8+
/* END Light */

less/_Medium.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
font-weight: 500;
66
font-style: normal;
77
}
8-
/* END Medium */
8+
/* END Medium */

less/_Thin.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
font-weight: 100;
66
font-style: normal;
77
}
8-
/* END Thin */
8+
/* END Thin */

less/_mixins.less

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
.fontdef-woff(@FontPath, @FontName, @FontVersion:"1.0.0", @FontType:"Regular") {
22
src: url('@{FontPath}/@{FontType}/@{FontName}-@{FontType}.woff2?v=@{FontVersion}') format('woff2'),
3-
url('@{FontPath}/@{FontType}/@{FontName}-@{FontType}.woff?v=@{FontVersion}') format('woff'),
4-
url('@{FontPath}/@{FontType}/@{FontName}-@{FontType}.ttf?v=@{FontVersion}') format('truetype');
3+
url('@{FontPath}/@{FontType}/@{FontName}-@{FontType}.woff?v=@{FontVersion}') format('woff');
54
}
6-

less/_variables.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@FontPath: "./fonts";
22
@FontName: "Roboto";
3-
@FontVersion: "2.136";
3+
@FontVersion: "2.137";

roboto.css

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

roboto.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sass/_Light.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
font-weight: 300;
66
font-style: normal;
77
}
8-
/* END Light */
8+
/* END Light */

sass/_Medium.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
font-weight: 500;
66
font-style: normal;
77
}
8-
/* END Medium */
8+
/* END Medium */

sass/_Thin.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
font-weight: 100;
66
font-style: normal;
77
}
8-
/* END Thin */
8+
/* END Thin */

sass/_mixins.scss

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
@mixin fontdef-woff($FontPath, $FontName, $FontVersion:"1.0.0", $FontType:"Regular") {
22
src: url('#{$FontPath}/#{$FontType}/#{$FontName}-#{$FontType}.woff2?v=#{$FontVersion}') format('woff2'),
3-
url('#{$FontPath}/#{$FontType}/#{$FontName}-#{$FontType}.woff?v=#{$FontVersion}') format('woff'),
4-
url('#{$FontPath}/#{$FontType}/#{$FontName}-#{$FontType}.ttf?v=#{$FontVersion}') format('truetype');
3+
url('#{$FontPath}/#{$FontType}/#{$FontName}-#{$FontType}.woff?v=#{$FontVersion}') format('woff');
54
}
6-

sass/_variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
$FontPath: "./fonts" !default;
22
$FontName: "Roboto" !default;
3-
$FontVersion: "2.136" !default;
3+
$FontVersion: "2.137" !default;

sass/roboto.scss

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@
1313
@import "BoldItalic";
1414
@import "Black";
1515
@import "BlackItalic";
16-

0 commit comments

Comments
 (0)