Skip to content

Commit

Permalink
Merge branch 'ver2'
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Jun 19, 2015
2 parents 719ada4 + db6d811 commit 41ad2f6
Show file tree
Hide file tree
Showing 2,363 changed files with 13,653 additions and 11,080 deletions.
24 changes: 23 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,26 @@ $RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.msp

### Numerous always-ignore extensions
*.diff
*.err
*.log
*.orig
*.rej
*.swo
*.swp
*.vi
*.zip
*~

### Node modules
node_modules/

### Vagrant files
.vagrant/

### Test files
test/
dist/Material-Design-Iconic-Font.html
13 changes: 13 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = function(grunt) {

require('time-grunt')(grunt);

require('load-grunt-config')(grunt, {
jitGrunt: {
staticMappings: {
replace: 'grunt-text-replace',
lessToSass: 'grunt-less-to-sass'
}
}
});
};
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [Material Design Iconic Font v1.1.1](http://zavoloklom.github.io/material-design-iconic-font)
# [Material Design Iconic Font v2.0.0](http://zavoloklom.github.io/material-design-iconic-font)
#### Material Design Iconic Font and CSS toolkit

[![Material Design Iconic Font](http://zavoloklom.github.io/material-design-iconic-font/images/Material-Design-Iconic-Font.png)](http://zavoloklom.github.io/material-design-iconic-font/)
Expand All @@ -9,7 +9,7 @@ Material Design Icons are the official open-source [icons](http://www.google.com

Get started at [http://zavoloklom.github.io/material-design-iconic-font](http://zavoloklom.github.io/material-design-iconic-font)

Download: [v1.1.1 (ZIP)](https://github.com/zavoloklom/material-design-iconic-font/releases/download/v1.1.1/material-design-iconic-font.zip)
Download: [v2.0.0 (ZIP)](https://github.com/zavoloklom/material-design-iconic-font/releases/download/v2.0.0/material-design-iconic-font.zip)

##Install
**Bower:** `bower install material-design-iconic-font`
Expand Down Expand Up @@ -41,11 +41,16 @@ Use this method to customize Material Design Iconic Font using LESS or SCSS.
## Licence
The full details of how Material Design Iconic Font is licensed and 'Thanks to' section: [License page](http://zavoloklom.github.io/material-design-iconic-font/license.html).

## Changelog
- v1.1.1 - add bower support and [Cheatsheet page](http://zavoloklom.github.io/material-design-iconic-font/cheatsheet.html)
- v1.1.0 - add SCSS support (thanks to @davidkpiano)
- v1.0.1 - fix bug with battery, charging-battery and wi-fi icons (device section)
- v1.0.0 - add all available icons from [Google](https://github.com/google/material-design-icons)
## Changelog
v2.0.0:
- add new Google icons;
- remove duplicated icons to reduce font size;
- resort and rename icons for better search;
- change icon-prefix to 'zmdi-' for capability with Angular JS;
- add 'fixed-width', 'list' and 'stack' classes;
- add "!default" to sass variables;
- add vars with glyph codes to less/sass;
- add nested pseudo classes for less/sass;

## Versioning
Material Design Iconic Font will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered with the following format:
Expand Down
5 changes: 5 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, path: "provision.sh"
config.vm.synced_folder ".", "/vagrant", create: true
end
54 changes: 29 additions & 25 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
{
"name": "material-design-iconic-font",
"description": "Material Design Iconic Font",
"version": "1.1.1",
"keywords": [
"material",
"design",
"icons",
"font"
],
"authors": [
"Sergey Kupletsky <s.kupletsky@gmail.com>"
],
"license": ["OFL-1.1", "MIT", "CC-BY-3.0"],
"main": [
"./css/material-design-iconic-font.css",
"./fonts/*"
],
"ignore": [
"*/.*",
"*.json",
"*.md"
],
"homepage": "http://zavoloklom.github.io/material-design-iconic-font/",
"dependencies": {},
"devDependencies": {}
"name": "material-design-iconic-font",
"description": "Material Design Iconic Font",
"keywords": [
"material",
"design",
"icons",
"font"
],
"authors": [
"Sergey Kupletsky <s.kupletsky@gmail.com> (http://github.com/zavoloklom)"
],
"license": ["OFL-1.1", "MIT"],
"main": [
"./dist/css/*",
"./dist/fonts/*"
],
"ignore": [
"*/.*",
"node_modules/*",
"*.json",
"*.md"
],
"homepage": "http://zavoloklom.github.io/material-design-iconic-font/",
"repository": {
"type": "git",
"url": "git://github.com/zavoloklom/material-design-iconic-font.git"
},
"dependencies": {},
"devDependencies": {}
}
Loading

0 comments on commit 41ad2f6

Please sign in to comment.