Skip to content

Commit

Permalink
Add icon preview images to README.
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed May 16, 2015
1 parent b607931 commit 29f9602
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## HEAD

- Add icon preview images to README.

## 1.0.0

- Initial release.
17 changes: 15 additions & 2 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,21 @@ module.exports = (grunt) ->
files: [
{src: [
'icons-white/*', 'icons-black/*',
'README.md', 'LICENSE.txt', 'CHANGELOG.md'
'README.md', 'LICENSE.txt', 'CHANGELOG.md',
'icons-tray.png', 'icons-app.png'
]}
]

grunt.registerTask 'default', ['copy', 'compress']
"imagemagick-convert":
tray:
args: [
'icons-black/tray_*.png',
'+append', 'icons-tray.png'
]
app:
args: [
'icons-black/book.png', 'icons-black/tree_*.png', 'icons-black/ulist_*.png',
'+append', 'icons-app.png'
]

grunt.registerTask 'default', ['copy', 'imagemagick-convert', 'compress']
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

A complete material design icon theme for HexChat.

![Tray icons](https://raw.github.com/rxrc/hexchat-material-design-icons/master/icons-tray.png)
![App icons](https://raw.github.com/rxrc/hexchat-material-design-icons/master/icons-app.png)

Icons taken from [Material Design icons by Google].

[Material Design icons by Google]: https://github.com/google/material-design-icons
Expand Down
Binary file added icons-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons-tray.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"grunt": "^0.4.5",
"grunt-contrib-compress": "^0.13.0",
"grunt-contrib-copy": "^0.6.0",
"grunt-imagemagick": "^0.1.5",
"load-grunt-tasks": "^3.1.0"
}
}

0 comments on commit 29f9602

Please sign in to comment.