Skip to content

Commit

Permalink
release-4.0.5 (#35)
Browse files Browse the repository at this point in the history
* updating font icons
* promoting version, changing license to Apache-2.0
fixes #34
* removing local() from CSS
fixes #32
  • Loading branch information
jossef authored Feb 16, 2019
1 parent 624d2e4 commit d95481c
Showing 9 changed files with 210 additions and 401 deletions.
593 changes: 201 additions & 392 deletions LICENSE

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "material-design-icons-iconfont",
"version": "4.0.4",
"version": "4.0.5",
"author": "Material Design Authors, Jossef Harush",
"description": "Material Design icons DX",
"keywords": [
@@ -18,6 +18,6 @@
"main": [
"src/material-design-icons.scss"
],
"license": "CC-BY-4.0",
"homepage": "http://google.com/design/spec"
"license": "Apache-2.0",
"homepage": "https://jossef.github.io/material-design-icons-iconfont/"
}
Binary file modified dist/fonts/MaterialIcons-Regular.eot
Binary file not shown.
Binary file modified dist/fonts/MaterialIcons-Regular.ttf
Binary file not shown.
Binary file modified dist/fonts/MaterialIcons-Regular.woff
Binary file not shown.
Binary file modified dist/fonts/MaterialIcons-Regular.woff2
Binary file not shown.
3 changes: 2 additions & 1 deletion dist/material-design-icons.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
@charset "UTF-8";
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url("./fonts/MaterialIcons-Regular.eot");
/* For IE6-8 */
src: local("Material Icons"), local("MaterialIcons-Regular"), url("./fonts/MaterialIcons-Regular.woff2") format("woff2"), url("./fonts/MaterialIcons-Regular.woff") format("woff"), url("./fonts/MaterialIcons-Regular.ttf") format("truetype"); }
src: local(""), url("./fonts/MaterialIcons-Regular.woff2") format("woff2"), url("./fonts/MaterialIcons-Regular.woff") format("woff"), url("./fonts/MaterialIcons-Regular.ttf") format("truetype"); }

.material-icons {
font-family: 'Material Icons';
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "material-design-icons-iconfont",
"version": "4.0.4",
"version": "4.0.5",
"description": "Material Design icons DX",
"main": "dist/material-design-icons.css",
"repository": {
@@ -20,9 +20,9 @@
"google"
],
"author": "Material Design Authors, Jossef Harush",
"license": "CC-BY-4.0",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jossef/material-design-icons-iconfont/issues"
},
"homepage": "https://github.com/jossef/material-design-icons-iconfont"
"homepage": "https://jossef.github.io/material-design-icons-iconfont/"
}
3 changes: 1 addition & 2 deletions src/material-design-icons.scss
Original file line number Diff line number Diff line change
@@ -9,8 +9,7 @@ $MD-icon-path-name: $material-design-icons-font-path + 'MaterialIcons-Regular' !
font-style: normal;
font-weight: 400;
src: url("#{$MD-icon-path-name}.eot"); /* For IE6-8 */
src: local("Material Icons"),
local("MaterialIcons-Regular"),
src: local(''),
url("#{$MD-icon-path-name}.woff2") format('woff2'),
url("#{$MD-icon-path-name}.woff") format('woff'),
url("#{$MD-icon-path-name}.ttf") format('truetype');

0 comments on commit d95481c

Please sign in to comment.