Skip to content

Commit 29f9602

Browse files
committed
Add icon preview images to README.
1 parent b607931 commit 29f9602

File tree

6 files changed

+23
-2
lines changed

6 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## HEAD
4+
5+
- Add icon preview images to README.
6+
37
## 1.0.0
48

59
- Initial release.

Gruntfile.coffee

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,21 @@ module.exports = (grunt) ->
2020
files: [
2121
{src: [
2222
'icons-white/*', 'icons-black/*',
23-
'README.md', 'LICENSE.txt', 'CHANGELOG.md'
23+
'README.md', 'LICENSE.txt', 'CHANGELOG.md',
24+
'icons-tray.png', 'icons-app.png'
2425
]}
2526
]
2627

27-
grunt.registerTask 'default', ['copy', 'compress']
28+
"imagemagick-convert":
29+
tray:
30+
args: [
31+
'icons-black/tray_*.png',
32+
'+append', 'icons-tray.png'
33+
]
34+
app:
35+
args: [
36+
'icons-black/book.png', 'icons-black/tree_*.png', 'icons-black/ulist_*.png',
37+
'+append', 'icons-app.png'
38+
]
39+
40+
grunt.registerTask 'default', ['copy', 'imagemagick-convert', 'compress']

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
A complete material design icon theme for HexChat.
1010

11+
![Tray icons](https://raw.github.com/rxrc/hexchat-material-design-icons/master/icons-tray.png)
12+
![App icons](https://raw.github.com/rxrc/hexchat-material-design-icons/master/icons-app.png)
13+
1114
Icons taken from [Material Design icons by Google].
1215

1316
[Material Design icons by Google]: https://github.com/google/material-design-icons

icons-app.png

1.8 KB
Loading

icons-tray.png

603 Bytes
Loading

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"grunt": "^0.4.5",
55
"grunt-contrib-compress": "^0.13.0",
66
"grunt-contrib-copy": "^0.6.0",
7+
"grunt-imagemagick": "^0.1.5",
78
"load-grunt-tasks": "^3.1.0"
89
}
910
}

0 commit comments

Comments
 (0)