├── genericons ├── Genericons.eot ├── Genericons.ttf └── Genericons.woff ├── source ├── fontcustom-webfont │ ├── Genericons.eot │ ├── Genericons.ttf │ └── Genericons.woff ├── svg │ ├── category.svg │ ├── downarrow.svg │ ├── leftarrow.svg │ ├── minus.svg │ ├── rightarrow.svg │ ├── uparrow.svg │ ├── home.svg │ ├── play.svg │ ├── video.svg │ ├── stop.svg │ ├── skip-back.svg │ ├── top.svg │ ├── pause.svg │ ├── plus.svg │ ├── skip-ahead.svg │ ├── expand.svg │ ├── collapse.svg │ ├── download.svg │ ├── fastforward.svg │ ├── mail.svg │ ├── rewind.svg │ ├── menu.svg │ ├── document.svg │ ├── dot.svg │ ├── checkmark.svg │ ├── maximize.svg │ ├── gallery.svg │ ├── flag.svg │ ├── external.svg │ ├── next.svg │ ├── previous.svg │ ├── rating-full.svg │ ├── reply-single.svg │ ├── hierarchy.svg │ ├── move.svg │ ├── italic.svg │ ├── tag.svg │ ├── comment.svg │ ├── quote.svg │ ├── videocamera.svg │ ├── dropdown.svg │ ├── picture.svg │ ├── standard.svg │ ├── youtube.svg │ ├── dropdown-left.svg │ ├── googleplus.svg │ ├── minimize.svg │ ├── status.svg │ ├── googleplus-alt.svg │ ├── reply.svg │ ├── reply-alt.svg │ ├── print.svg │ ├── close.svg │ ├── close-alt.svg │ ├── handset.svg │ ├── portfolio.svg │ ├── rating-half.svg │ ├── user.svg │ ├── aside.svg │ ├── edit.svg │ ├── plugin.svg │ ├── cart.svg │ ├── unsubscribe.svg │ ├── lock.svg │ ├── heart.svg │ ├── rating-empty.svg │ ├── star.svg │ ├── subscribe.svg │ ├── book.svg │ ├── info.svg │ ├── spam.svg │ ├── tablet.svg │ ├── twitch.svg │ ├── location.svg │ ├── flickr.svg │ ├── cloud.svg │ ├── chat.svg │ ├── day.svg │ ├── activity.svg │ ├── unzoom.svg │ ├── warning.svg │ ├── send-to-tablet.svg │ ├── facebook-alt.svg │ ├── search.svg │ ├── zoom.svg │ ├── cloud-upload.svg │ ├── draggable.svg │ ├── feed.svg │ ├── phone.svg │ ├── time.svg │ ├── code.svg │ ├── trash.svg │ ├── cloud-download.svg │ ├── microphone.svg │ ├── notice.svg │ ├── 404.svg │ ├── image.svg │ ├── send-to-phone.svg │ ├── key.svg │ ├── month.svg │ ├── attachment.svg │ ├── refresh.svg │ ├── shuffle.svg │ ├── audio.svg │ ├── digg.svg │ ├── facebook.svg │ ├── subscribed.svg │ ├── anchor.svg │ ├── ellipsis.svg │ ├── pinned.svg │ ├── pocket.svg │ ├── unapprove.svg │ ├── linkedin.svg │ ├── xpost.svg │ ├── summary.svg │ ├── path.svg │ ├── share.svg │ ├── dropbox.svg │ ├── fullscreen.svg │ ├── link.svg │ ├── linkedin-alt.svg │ ├── week.svg │ ├── tumblr.svg │ ├── stumbleupon.svg │ ├── bold.svg │ ├── show.svg │ ├── paintbrush.svg │ ├── spotify.svg │ ├── help.svg │ ├── vimeo.svg │ ├── pinterest.svg │ ├── cog.svg │ ├── twitter.svg │ ├── dribbble.svg │ ├── sitemap.svg │ ├── bug.svg │ ├── pinterest-alt.svg │ ├── github.svg │ ├── foursquare.svg │ ├── hide.svg │ ├── wordpress.svg │ ├── instagram.svg │ ├── reddit.svg │ ├── skype.svg │ ├── website.svg │ ├── polldaddy.svg │ └── codepen.svg ├── fontcustom.yml ├── fontcustom-templates │ └── genericons.css └── .fontcustom-manifest.json ├── genericons.css ├── package.json ├── COPYING.txt ├── README.md └── LICENSE.txt /genericons/Genericons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Genericons/HEAD/genericons/Genericons.eot -------------------------------------------------------------------------------- /genericons/Genericons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Genericons/HEAD/genericons/Genericons.ttf -------------------------------------------------------------------------------- /genericons/Genericons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Genericons/HEAD/genericons/Genericons.woff -------------------------------------------------------------------------------- /source/fontcustom-webfont/Genericons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Genericons/HEAD/source/fontcustom-webfont/Genericons.eot -------------------------------------------------------------------------------- /source/fontcustom-webfont/Genericons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Genericons/HEAD/source/fontcustom-webfont/Genericons.ttf -------------------------------------------------------------------------------- /source/fontcustom-webfont/Genericons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Genericons/HEAD/source/fontcustom-webfont/Genericons.woff -------------------------------------------------------------------------------- /genericons.css: -------------------------------------------------------------------------------- 1 | @import url('genericons/genericons.css'); 2 | 3 | /* 4 | 5 | 6 | This file location is deprecated 7 | 8 | Please link to the genericons.css file in the font folder instead 9 | 10 | 11 | */ -------------------------------------------------------------------------------- /source/svg/category.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/downarrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/leftarrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/rightarrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/uparrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/skip-back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/skip-ahead.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/expand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/collapse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/fastforward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/mail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/document.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/checkmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/gallery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/external.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/previous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/rating-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/reply-single.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/hierarchy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source/svg/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/tag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/quote.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/videocamera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/dropdown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/picture.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/standard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/dropdown-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/googleplus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/status.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/googleplus-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/reply.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/reply-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/print.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/close-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/handset.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/portfolio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/rating-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/user.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/aside.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/plugin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/cart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/unsubscribe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "genericons", 3 | "version": "1.0.0", 4 | "description": "Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic. Use for instant HiDPI or to easily change colors on the fly.", 5 | "repository": { 6 | "type": "git", 7 | "url": "git+https://github.com/Automattic/Genericons.git" 8 | }, 9 | "keywords": [ 10 | "icon", 11 | "font", 12 | "blog" 13 | ], 14 | "author": "George Stephanis ", 15 | "license": "GPL-2.0", 16 | "bugs": { 17 | "url": "https://github.com/Automattic/Genericons/issues" 18 | }, 19 | "homepage": "https://github.com/Automattic/Genericons#readme" 20 | } 21 | -------------------------------------------------------------------------------- /source/svg/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/rating-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/subscribe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/book.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/spam.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/tablet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/twitch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /source/svg/location.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/chat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/day.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/unzoom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/send-to-tablet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/facebook-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/zoom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/cloud-upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/draggable.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/feed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/phone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/time.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/code.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/cloud-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/microphone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/notice.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/404.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/send-to-phone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/key.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/month.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/attachment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /source/svg/shuffle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/audio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/digg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/subscribed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/anchor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/ellipsis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/pinned.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/pocket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/unapprove.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/xpost.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/summary.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /source/svg/path.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/dropbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/svg/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /source/svg/link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /source/svg/linkedin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/week.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/tumblr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/stumbleupon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /source/svg/bold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/show.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /source/svg/paintbrush.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/svg/spotify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /source/svg/help.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/vimeo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /source/svg/pinterest.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/cog.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/dribbble.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/sitemap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /source/svg/bug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- 1 | Genericons is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 2 | 3 | The fonts are distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 4 | 5 | You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 6 | 7 | As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. 8 | 9 | This license does not convey any intellectual property rights to third party trademarks that may be included in the icon font; such marks remain subject to all rights and guidelines of use of their owner. -------------------------------------------------------------------------------- /source/svg/pinterest-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /source/svg/github.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /source/svg/foursquare.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /source/svg/hide.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 17 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /source/svg/wordpress.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 16 | 17 | -------------------------------------------------------------------------------- /source/fontcustom.yml: -------------------------------------------------------------------------------- 1 | # --------------------------------------------------------------------------- # 2 | # Project Info 3 | # Defaults shown. Learn more about these options by running 4 | # `fontcustom help` or visiting . 5 | # --------------------------------------------------------------------------- # 6 | 7 | font_name: Genericons 8 | 9 | # default font metrics 10 | #font_design_size: 16 11 | #font_em: 512 12 | #font_ascent: 448 13 | #font_descent: 64 14 | 15 | # upscaled 16 | font_design_size: 16 17 | font_em: 2048 18 | font_ascent: 2048 19 | font_descent: 0 20 | 21 | css_selector: .genericon-{{glyph}} 22 | preprocessor_path: "" 23 | autowidth: false 24 | no_hash: true 25 | base64: true 26 | force: true 27 | debug: false 28 | quiet: false 29 | 30 | 31 | # --------------------------------------------------------------------------- # 32 | # Input Paths 33 | # --------------------------------------------------------------------------- # 34 | 35 | input: 36 | vectors: svg 37 | templates: fontcustom-templates 38 | 39 | 40 | # --------------------------------------------------------------------------- # 41 | # Output Paths 42 | # --------------------------------------------------------------------------- # 43 | 44 | output: 45 | fonts: fontcustom-webfont/ 46 | css: fontcustom-webfont/ 47 | 48 | 49 | # --------------------------------------------------------------------------- # 50 | # Templates 51 | # Included in Font Custom: preview, css, scss, scss-rails 52 | # Custom templates should be saved in the INPUT[:templates] directory and 53 | # referenced by their baserame. 54 | # --------------------------------------------------------------------------- # 55 | 56 | templates: 57 | - genericons.css -------------------------------------------------------------------------------- /source/svg/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /source/svg/reddit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 22 | 23 | -------------------------------------------------------------------------------- /source/fontcustom-templates/genericons.css: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | <%= font_name %> 4 | 5 | */ 6 | 7 | 8 | /* IE8 and below use EOT and allow cross-site embedding. 9 | IE9 uses WOFF which is base64 encoded to allow cross-site embedding. 10 | So unfortunately, IE9 will throw a console error, but it'll still work. 11 | When the font is base64 encoded, cross-site embedding works in Firefox */ 12 | <%= font_face %> 13 | 14 | 15 | /** 16 | * All Genericons 17 | */ 18 | 19 | .genericon { 20 | font-size: 16px; 21 | vertical-align: top; 22 | text-align: center; 23 | -moz-transition: color .1s ease-in 0; 24 | -webkit-transition: color .1s ease-in 0; 25 | display: inline-block; 26 | font-family: "<%= font_name %>"; 27 | font-style: normal; 28 | font-weight: normal; 29 | font-variant: normal; 30 | line-height: 1; 31 | text-decoration: inherit; 32 | text-transform: none; 33 | -moz-osx-font-smoothing: grayscale; 34 | -webkit-font-smoothing: antialiased; 35 | speak: never; 36 | } 37 | 38 | 39 | /** 40 | * Helper classes 41 | */ 42 | 43 | .genericon-rotate-90 { 44 | -webkit-transform: rotate(90deg); 45 | -moz-transform: rotate(90deg); 46 | -ms-transform: rotate(90deg); 47 | -o-transform: rotate(90deg); 48 | transform: rotate(90deg); 49 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 50 | } 51 | 52 | .genericon-rotate-180 { 53 | -webkit-transform: rotate(180deg); 54 | -moz-transform: rotate(180deg); 55 | -ms-transform: rotate(180deg); 56 | -o-transform: rotate(180deg); 57 | transform: rotate(180deg); 58 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 59 | } 60 | 61 | .genericon-rotate-270 { 62 | -webkit-transform: rotate(270deg); 63 | -moz-transform: rotate(270deg); 64 | -ms-transform: rotate(270deg); 65 | -o-transform: rotate(270deg); 66 | transform: rotate(270deg); 67 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 68 | } 69 | 70 | .genericon-flip-horizontal { 71 | -webkit-transform: scale(-1, 1); 72 | -moz-transform: scale(-1, 1); 73 | -ms-transform: scale(-1, 1); 74 | -o-transform: scale(-1, 1); 75 | transform: scale(-1, 1); 76 | } 77 | 78 | .genericon-flip-vertical { 79 | -webkit-transform: scale(1, -1); 80 | -moz-transform: scale(1, -1); 81 | -ms-transform: scale(1, -1); 82 | -o-transform: scale(1, -1); 83 | transform: scale(1, -1); 84 | } 85 | 86 | 87 | /** 88 | * Individual icons 89 | */ 90 | 91 | <%= glyphs %> 92 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /source/svg/skype.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 25 | 26 | -------------------------------------------------------------------------------- /source/svg/website.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 25 | 26 | -------------------------------------------------------------------------------- /source/svg/polldaddy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 30 | 31 | -------------------------------------------------------------------------------- /source/svg/codepen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 30 | 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Genericons 2 | 3 | Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic. 4 | 5 | **But wait!** There is a newer, more modern-looking version of Genericons available, [Genericons Neue](https://github.com/Automattic/genericons-neue), which you should consider using instead. 6 | 7 | ## Usage 8 | 9 | To use it, place the `genericons` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this: 10 | 11 | ``` 12 | .my-icon:before { 13 | content: '\f101'; 14 | font: normal 16px/1 'Genericons'; 15 | display: inline-block; 16 | -webkit-font-smoothing: antialiased; 17 | -moz-osx-font-smoothing: grayscale; 18 | } 19 | ``` 20 | 21 | This will output a comment icon before every element with the class "my-icon". You can also use the bundled example.css if you'd rather insert the icons using HTML tags. 22 | 23 | 24 | ## Building your own Genericons 25 | 26 | In the `source` directory, you'll find all Genericons source icons in SVG format. This will allow you to bake your own flavor of Genericons using a tool such as FontCustom (https://github.com/FontCustom/fontcustom) or Fontello (http://fontello.com). Perhaps you need more logos than are available in the base Genericons package? Just add those logos and bake your own expanded set. Maybe you need just a few of the icons Genericons provides, but would like to trim the fat? Remove the ones you won't need! 27 | 28 | 29 | ### FontCustom instructions 30 | 31 | FontCustom is a powerful commandline tool which which bakes icon fonts from the SVG source files. It's the tool Genericons is built on, and it provides highly accurate and perfectly crisp icons, *provided all SVGs have the same pixel height*. 32 | 33 | It's not that hard to use, and once it's installed you'll never think of icon-fonts the same way again. Seriously, you should try it. Icon fonts for everyone! 34 | 35 | 1. Install FontCustom. Follow the instructions on the website: https://github.com/FontCustom/fontcustom 36 | 2. In the `source` directory from the Genericons download, open the file called `fontcustom.yml` in a text editor. Customize the `font_name` and `css_selector`. 37 | 3. Open a terminal. Browse to the `source` directory. Type `fontcustom compile`. 38 | 39 | You'll now receive a brand new subdirectory called `fontcustom-webfont`. Inside here you'll find your very own flavor of Genericons, with only the icons you want, including a handy example page that'll help you copy/paste the necessary glyphs or CSS values. 40 | 41 | *Please note*: In the source directory, there's a hidden file called `.fontcustom-manifest.json`. This file is auto-generated by the FontCustom tool, and holds codepoints (unicode addresses) for every glyph, so its address doesn't change when you add or remove icons. If you feel the need to "start fresh" with the unicode addresses, you should delete this file. 42 | 43 | 44 | ### Fontello instructions 45 | 46 | Fontello is very easy to use. Just drop the SVG files of the icons you want onto their website and download the font. The downside is that Fontello seems to ignore the 16px pixelgrid, so you'll end up with fuzzy icons. Buyer beware. 47 | 48 | 49 | ## Notes 50 | 51 | **Photoshop mockups** 52 | 53 | The `Genericons.ttf` file can be placed in your system fonts folder and used Photoshop or other graphics apps if you like. 54 | 55 | If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system. 56 | 57 | **Pixel grid** 58 | 59 | Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry. 60 | 61 | **Antialiasing** 62 | 63 | If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers. 64 | 65 | **optimizeLegibility** 66 | 67 | Note: On Android browsers with version 4.2, 4.3, and probably later, Genericons will simply not show up if you're using the CSS property "text-rendering" set to "optimizeLegibility. 68 | 69 | **Updates** 70 | 71 | We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended. 72 | 73 | **Base64 encoding** 74 | 75 | By default, Genericons ships with a stylesheet that includes a base64 encoded version of the font. This is to sidestep issues with cross-origin requests for fonts, that happen when a stylesheet loads a font that's stored on a different domain or subdomain. This is very common when using caching plugins. 76 | 77 | Base64 encoding comes with a 25% filesize overhead compared to just loading the WOFF file directly. If you know that you won't be loading fonts across domains, or have the ability to edit your server config files to allow it, you can get slightly faster performance by loading Genericons without the base64 encoding. Simply edit `genericons.css` and edit the `@font-face` declaration to match this: 78 | 79 | ``` 80 | @font-face { 81 | font-family: 'Genericons'; 82 | src: url('Genericons.woff') format('woff'), 83 | url('Genericons.ttf') format('truetype'), 84 | url('Genericons.svg#genericonsregular') format('svg'); 85 | font-weight: normal; 86 | font-style: normal; 87 | } 88 | ``` 89 | 90 | 91 | 92 | ## Changelog 93 | 94 | **3.4.1** 95 | 96 | * IE8 support restored. 97 | 98 | **3.4** 99 | 100 | * Updated: Update Google Plus icon to new geometric version. This also *retires* the "alt" version, so *please be mindful if you choose to update, make sure you use the `f206` glyph, not the `f218` glyph, as it no longer exists! 101 | * New: Added helper rotation classes to the base CSS, thanks to geminorum. Apply `genericon-rotate-90` to rotate 90 degrees, -180, -270. Or `genericon-flip-horizontal` or -vertical. 102 | 103 | *Again, it is important if you choose to update to this version, make sure you're not using `genericon-googleplus-alt` or unicode character `f218`, as that has been retired! Use `genericon-googleplus` and glyph `f206` instead!* 104 | 105 | **3.3.1** 106 | 107 | Security Hardening: Remove Genericons example.html file. Please visit genericons.com instead. 108 | 109 | **3.3** 110 | 111 | The Open Source release. 112 | 113 | You can now build your own flavors of Genericons with all the SVGs provided. 114 | 115 | 116 | **3.2** 117 | 118 | A number of new icons and a couple of quick updates. 119 | 120 | * New: Activity 121 | * New: HTML anchor 122 | * New: Bug 123 | * New: Download 124 | * New: Handset 125 | * New: Microphone 126 | * New: Minus 127 | * New: Plus 128 | * New: Move 129 | * New: Rating stars, empty, half, full 130 | * New: Shuffle 131 | * New: video camera 132 | * New: Spotify 133 | * New: Twitch 134 | * Update: Fixed geometry in Edit icon 135 | * Update: Updated Foursquare icon 136 | * IE8 bugfix, slipstreamed into this. 137 | 138 | Twitch and Spotify mark the last social icons that will be added to Genericons. 139 | Future social icons will have to happen in a separate font. 140 | 141 | **3.1** 142 | 143 | Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade. 144 | 145 | * Per feedback, the baked-in 16px width and height has been removed from the helper CSS. It wasn't really necessary (the glyph itself has these dimensions naturally), and it caused some headaches. 146 | * Base64 encoding is now included by default in the helper CSS. This makes it drop-in easy to get Genericons working in Firefox even when using a CDN. 147 | * Title attribute on website tool. 148 | * New: Website. 149 | * New: Ellipsis. 150 | * New: Foursquare. 151 | * New: X-post. 152 | * New: Sitemap. 153 | * New: Hierarchy. 154 | * New: Paintbrush. 155 | * Updated: Show and Hide icons were updated for clarity. 156 | 157 | **3.0.3** 158 | 159 | Bunch of updates mostly. 160 | 161 | * Two new icons, Dropbox and Fullscreen. 162 | * Updates to all icons containing an exclamation mark. 163 | * Updates to Image and Quote. 164 | * Nicer "Share" icon. 165 | * Bigger default Linkedin icon. 166 | 167 | **3.0.2** 168 | 169 | A slew of new stuff and updates. 170 | 171 | * Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket. 172 | * New generic icons: heart, lock and print. 173 | * New editing icons: code, bold, italic, image 174 | * New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag. 175 | * The hyperlink icon has been updated to be clearer, chunkier. 176 | * The "home" icon has been updated for style, size and clarity. 177 | * The email icon has been updated for style and clarity, and to fit with the new subscribe icons. 178 | * The document icon has been updated for style. 179 | * The "pin" icon has been updated for style and clarity. 180 | * The Twitter icon has been scaled down to fit with the other social icons. 181 | 182 | **3.0.1** 183 | 184 | Mostly maintenance. 185 | 186 | * Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon. 187 | * Added inverse Google+ and Path. 188 | * Replaced tabs with spaces in the helper CSS. 189 | * Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway. 190 | 191 | **3.0** 192 | 193 | Mainly maintenance and a few new icons. 194 | 195 | * Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio 196 | * Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big. 197 | * So, the previous version numbering, 2.09, wasn't very PHP version compare friendly. So from now on it'll be 3.0, 3.1 etc. Props Ipstenu. 198 | * Genericons.com now has a mini release blog. 199 | * The CSS has prettier formatting, props Konstantin Obenland. 200 | 201 | **2.09** 202 | 203 | Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet. 204 | 205 | **2.06** 206 | 207 | Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox. 208 | 209 | **2.05** 210 | 211 | Added a bunch of new icons, including upload to cloud, download to cloud, many more. 212 | 213 | **2.0** 214 | 215 | Initial public release 216 | -------------------------------------------------------------------------------- /source/.fontcustom-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "checksum": { 3 | "previous": "29b29db9c1ce878c6afba8efa5030a107907be701424dd560bbecd8bc1e2ef8f", 4 | "current": "29b29db9c1ce878c6afba8efa5030a107907be701424dd560bbecd8bc1e2ef8f" 5 | }, 6 | "fonts": [ 7 | "fontcustom-webfont//Genericons.ttf", 8 | "fontcustom-webfont//Genericons.svg", 9 | "fontcustom-webfont//Genericons.woff", 10 | "fontcustom-webfont//Genericons.eot" 11 | ], 12 | "glyphs": { 13 | "404": { 14 | "codepoint": 62499, 15 | "source": "svg/404.svg" 16 | }, 17 | "activity": { 18 | "codepoint": 62728, 19 | "source": "svg/activity.svg" 20 | }, 21 | "anchor": { 22 | "codepoint": 62729, 23 | "source": "svg/anchor.svg" 24 | }, 25 | "aside": { 26 | "codepoint": 61697, 27 | "source": "svg/aside.svg" 28 | }, 29 | "attachment": { 30 | "codepoint": 62486, 31 | "source": "svg/attachment.svg" 32 | }, 33 | "audio": { 34 | "codepoint": 61705, 35 | "source": "svg/audio.svg" 36 | }, 37 | "bold": { 38 | "codepoint": 62577, 39 | "source": "svg/bold.svg" 40 | }, 41 | "book": { 42 | "codepoint": 62532, 43 | "source": "svg/book.svg" 44 | }, 45 | "bug": { 46 | "codepoint": 62730, 47 | "source": "svg/bug.svg" 48 | }, 49 | "cart": { 50 | "codepoint": 62535, 51 | "source": "svg/cart.svg" 52 | }, 53 | "category": { 54 | "codepoint": 62209, 55 | "source": "svg/category.svg" 56 | }, 57 | "chat": { 58 | "codepoint": 61704, 59 | "source": "svg/chat.svg" 60 | }, 61 | "checkmark": { 62 | "codepoint": 62488, 63 | "source": "svg/checkmark.svg" 64 | }, 65 | "close": { 66 | "codepoint": 62469, 67 | "source": "svg/close.svg" 68 | }, 69 | "close-alt": { 70 | "codepoint": 62470, 71 | "source": "svg/close-alt.svg" 72 | }, 73 | "cloud": { 74 | "codepoint": 62502, 75 | "source": "svg/cloud.svg" 76 | }, 77 | "cloud-download": { 78 | "codepoint": 62528, 79 | "source": "svg/cloud-download.svg" 80 | }, 81 | "cloud-upload": { 82 | "codepoint": 62529, 83 | "source": "svg/cloud-upload.svg" 84 | }, 85 | "code": { 86 | "codepoint": 62562, 87 | "source": "svg/code.svg" 88 | }, 89 | "codepen": { 90 | "codepoint": 61974, 91 | "source": "svg/codepen.svg" 92 | }, 93 | "cog": { 94 | "codepoint": 62533, 95 | "source": "svg/cog.svg" 96 | }, 97 | "collapse": { 98 | "codepoint": 62514, 99 | "source": "svg/collapse.svg" 100 | }, 101 | "comment": { 102 | "codepoint": 62208, 103 | "source": "svg/comment.svg" 104 | }, 105 | "day": { 106 | "codepoint": 62213, 107 | "source": "svg/day.svg" 108 | }, 109 | "digg": { 110 | "codepoint": 61985, 111 | "source": "svg/digg.svg" 112 | }, 113 | "document": { 114 | "codepoint": 62531, 115 | "source": "svg/document.svg" 116 | }, 117 | "dot": { 118 | "codepoint": 62504, 119 | "source": "svg/dot.svg" 120 | }, 121 | "downarrow": { 122 | "codepoint": 62722, 123 | "source": "svg/downarrow.svg" 124 | }, 125 | "download": { 126 | "codepoint": 62731, 127 | "source": "svg/download.svg" 128 | }, 129 | "draggable": { 130 | "codepoint": 62518, 131 | "source": "svg/draggable.svg" 132 | }, 133 | "dribbble": { 134 | "codepoint": 61953, 135 | "source": "svg/dribbble.svg" 136 | }, 137 | "dropbox": { 138 | "codepoint": 61989, 139 | "source": "svg/dropbox.svg" 140 | }, 141 | "dropdown": { 142 | "codepoint": 62515, 143 | "source": "svg/dropdown.svg" 144 | }, 145 | "dropdown-left": { 146 | "codepoint": 62516, 147 | "source": "svg/dropdown-left.svg" 148 | }, 149 | "edit": { 150 | "codepoint": 62481, 151 | "source": "svg/edit.svg" 152 | }, 153 | "ellipsis": { 154 | "codepoint": 62582, 155 | "source": "svg/ellipsis.svg" 156 | }, 157 | "expand": { 158 | "codepoint": 62513, 159 | "source": "svg/expand.svg" 160 | }, 161 | "external": { 162 | "codepoint": 62530, 163 | "source": "svg/external.svg" 164 | }, 165 | "facebook": { 166 | "codepoint": 61955, 167 | "source": "svg/facebook.svg" 168 | }, 169 | "facebook-alt": { 170 | "codepoint": 61956, 171 | "source": "svg/facebook-alt.svg" 172 | }, 173 | "fastforward": { 174 | "codepoint": 62552, 175 | "source": "svg/fastforward.svg" 176 | }, 177 | "feed": { 178 | "codepoint": 62483, 179 | "source": "svg/feed.svg" 180 | }, 181 | "flag": { 182 | "codepoint": 62568, 183 | "source": "svg/flag.svg" 184 | }, 185 | "flickr": { 186 | "codepoint": 61969, 187 | "source": "svg/flickr.svg" 188 | }, 189 | "foursquare": { 190 | "codepoint": 61990, 191 | "source": "svg/foursquare.svg" 192 | }, 193 | "fullscreen": { 194 | "codepoint": 62580, 195 | "source": "svg/fullscreen.svg" 196 | }, 197 | "gallery": { 198 | "codepoint": 61699, 199 | "source": "svg/gallery.svg" 200 | }, 201 | "github": { 202 | "codepoint": 61952, 203 | "source": "svg/github.svg" 204 | }, 205 | "googleplus": { 206 | "codepoint": 61958, 207 | "source": "svg/googleplus.svg" 208 | }, 209 | "googleplus-alt": { 210 | "codepoint": 61976, 211 | "source": "svg/googleplus-alt.svg" 212 | }, 213 | "handset": { 214 | "codepoint": 62732, 215 | "source": "svg/handset.svg" 216 | }, 217 | "heart": { 218 | "codepoint": 62561, 219 | "source": "svg/heart.svg" 220 | }, 221 | "help": { 222 | "codepoint": 62551, 223 | "source": "svg/help.svg" 224 | }, 225 | "hide": { 226 | "codepoint": 62468, 227 | "source": "svg/hide.svg" 228 | }, 229 | "hierarchy": { 230 | "codepoint": 62725, 231 | "source": "svg/hierarchy.svg" 232 | }, 233 | "home": { 234 | "codepoint": 62473, 235 | "source": "svg/home.svg" 236 | }, 237 | "image": { 238 | "codepoint": 61698, 239 | "source": "svg/image.svg" 240 | }, 241 | "info": { 242 | "codepoint": 62549, 243 | "source": "svg/info.svg" 244 | }, 245 | "instagram": { 246 | "codepoint": 61973, 247 | "source": "svg/instagram.svg" 248 | }, 249 | "italic": { 250 | "codepoint": 62578, 251 | "source": "svg/italic.svg" 252 | }, 253 | "key": { 254 | "codepoint": 62503, 255 | "source": "svg/key.svg" 256 | }, 257 | "leftarrow": { 258 | "codepoint": 62723, 259 | "source": "svg/leftarrow.svg" 260 | }, 261 | "link": { 262 | "codepoint": 61703, 263 | "source": "svg/link.svg" 264 | }, 265 | "linkedin": { 266 | "codepoint": 61959, 267 | "source": "svg/linkedin.svg" 268 | }, 269 | "linkedin-alt": { 270 | "codepoint": 61960, 271 | "source": "svg/linkedin-alt.svg" 272 | }, 273 | "location": { 274 | "codepoint": 62487, 275 | "source": "svg/location.svg" 276 | }, 277 | "lock": { 278 | "codepoint": 62576, 279 | "source": "svg/lock.svg" 280 | }, 281 | "mail": { 282 | "codepoint": 62480, 283 | "source": "svg/mail.svg" 284 | }, 285 | "maximize": { 286 | "codepoint": 62498, 287 | "source": "svg/maximize.svg" 288 | }, 289 | "menu": { 290 | "codepoint": 62489, 291 | "source": "svg/menu.svg" 292 | }, 293 | "microphone": { 294 | "codepoint": 62733, 295 | "source": "svg/microphone.svg" 296 | }, 297 | "minimize": { 298 | "codepoint": 62497, 299 | "source": "svg/minimize.svg" 300 | }, 301 | "minus": { 302 | "codepoint": 62734, 303 | "source": "svg/minus.svg" 304 | }, 305 | "month": { 306 | "codepoint": 62215, 307 | "source": "svg/month.svg" 308 | }, 309 | "move": { 310 | "codepoint": 62735, 311 | "source": "svg/move.svg" 312 | }, 313 | "next": { 314 | "codepoint": 62505, 315 | "source": "svg/next.svg" 316 | }, 317 | "notice": { 318 | "codepoint": 62550, 319 | "source": "svg/notice.svg" 320 | }, 321 | "paintbrush": { 322 | "codepoint": 62726, 323 | "source": "svg/paintbrush.svg" 324 | }, 325 | "path": { 326 | "codepoint": 61977, 327 | "source": "svg/path.svg" 328 | }, 329 | "pause": { 330 | "codepoint": 62536, 331 | "source": "svg/pause.svg" 332 | }, 333 | "phone": { 334 | "codepoint": 62519, 335 | "source": "svg/phone.svg" 336 | }, 337 | "picture": { 338 | "codepoint": 62579, 339 | "source": "svg/picture.svg" 340 | }, 341 | "pinned": { 342 | "codepoint": 62216, 343 | "source": "svg/pinned.svg" 344 | }, 345 | "pinterest": { 346 | "codepoint": 61961, 347 | "source": "svg/pinterest.svg" 348 | }, 349 | "pinterest-alt": { 350 | "codepoint": 61968, 351 | "source": "svg/pinterest-alt.svg" 352 | }, 353 | "play": { 354 | "codepoint": 62546, 355 | "source": "svg/play.svg" 356 | }, 357 | "plugin": { 358 | "codepoint": 62521, 359 | "source": "svg/plugin.svg" 360 | }, 361 | "plus": { 362 | "codepoint": 62736, 363 | "source": "svg/plus.svg" 364 | }, 365 | "pocket": { 366 | "codepoint": 61988, 367 | "source": "svg/pocket.svg" 368 | }, 369 | "polldaddy": { 370 | "codepoint": 61975, 371 | "source": "svg/polldaddy.svg" 372 | }, 373 | "portfolio": { 374 | "codepoint": 62560, 375 | "source": "svg/portfolio.svg" 376 | }, 377 | "previous": { 378 | "codepoint": 62512, 379 | "source": "svg/previous.svg" 380 | }, 381 | "print": { 382 | "codepoint": 62569, 383 | "source": "svg/print.svg" 384 | }, 385 | "quote": { 386 | "codepoint": 61702, 387 | "source": "svg/quote.svg" 388 | }, 389 | "rating-empty": { 390 | "codepoint": 62737, 391 | "source": "svg/rating-empty.svg" 392 | }, 393 | "rating-full": { 394 | "codepoint": 62738, 395 | "source": "svg/rating-full.svg" 396 | }, 397 | "rating-half": { 398 | "codepoint": 62739, 399 | "source": "svg/rating-half.svg" 400 | }, 401 | "reddit": { 402 | "codepoint": 61986, 403 | "source": "svg/reddit.svg" 404 | }, 405 | "refresh": { 406 | "codepoint": 62496, 407 | "source": "svg/refresh.svg" 408 | }, 409 | "reply": { 410 | "codepoint": 62482, 411 | "source": "svg/reply.svg" 412 | }, 413 | "reply-alt": { 414 | "codepoint": 62566, 415 | "source": "svg/reply-alt.svg" 416 | }, 417 | "reply-single": { 418 | "codepoint": 62567, 419 | "source": "svg/reply-single.svg" 420 | }, 421 | "rewind": { 422 | "codepoint": 62553, 423 | "source": "svg/rewind.svg" 424 | }, 425 | "rightarrow": { 426 | "codepoint": 62721, 427 | "source": "svg/rightarrow.svg" 428 | }, 429 | "search": { 430 | "codepoint": 62464, 431 | "source": "svg/search.svg" 432 | }, 433 | "send-to-phone": { 434 | "codepoint": 62520, 435 | "source": "svg/send-to-phone.svg" 436 | }, 437 | "send-to-tablet": { 438 | "codepoint": 62548, 439 | "source": "svg/send-to-tablet.svg" 440 | }, 441 | "share": { 442 | "codepoint": 62485, 443 | "source": "svg/share.svg" 444 | }, 445 | "show": { 446 | "codepoint": 62467, 447 | "source": "svg/show.svg" 448 | }, 449 | "shuffle": { 450 | "codepoint": 62740, 451 | "source": "svg/shuffle.svg" 452 | }, 453 | "sitemap": { 454 | "codepoint": 62727, 455 | "source": "svg/sitemap.svg" 456 | }, 457 | "skip-ahead": { 458 | "codepoint": 62545, 459 | "source": "svg/skip-ahead.svg" 460 | }, 461 | "skip-back": { 462 | "codepoint": 62544, 463 | "source": "svg/skip-back.svg" 464 | }, 465 | "skype": { 466 | "codepoint": 61984, 467 | "source": "svg/skype.svg" 468 | }, 469 | "spam": { 470 | "codepoint": 62500, 471 | "source": "svg/spam.svg" 472 | }, 473 | "spotify": { 474 | "codepoint": 62741, 475 | "source": "svg/spotify.svg" 476 | }, 477 | "standard": { 478 | "codepoint": 61696, 479 | "source": "svg/standard.svg" 480 | }, 481 | "star": { 482 | "codepoint": 62472, 483 | "source": "svg/star.svg" 484 | }, 485 | "status": { 486 | "codepoint": 61701, 487 | "source": "svg/status.svg" 488 | }, 489 | "stop": { 490 | "codepoint": 62537, 491 | "source": "svg/stop.svg" 492 | }, 493 | "stumbleupon": { 494 | "codepoint": 61987, 495 | "source": "svg/stumbleupon.svg" 496 | }, 497 | "subscribe": { 498 | "codepoint": 62563, 499 | "source": "svg/subscribe.svg" 500 | }, 501 | "subscribed": { 502 | "codepoint": 62565, 503 | "source": "svg/subscribed.svg" 504 | }, 505 | "summary": { 506 | "codepoint": 62501, 507 | "source": "svg/summary.svg" 508 | }, 509 | "tablet": { 510 | "codepoint": 62547, 511 | "source": "svg/tablet.svg" 512 | }, 513 | "tag": { 514 | "codepoint": 62210, 515 | "source": "svg/tag.svg" 516 | }, 517 | "time": { 518 | "codepoint": 62211, 519 | "source": "svg/time.svg" 520 | }, 521 | "top": { 522 | "codepoint": 62517, 523 | "source": "svg/top.svg" 524 | }, 525 | "trash": { 526 | "codepoint": 62471, 527 | "source": "svg/trash.svg" 528 | }, 529 | "tumblr": { 530 | "codepoint": 61972, 531 | "source": "svg/tumblr.svg" 532 | }, 533 | "twitch": { 534 | "codepoint": 62742, 535 | "source": "svg/twitch.svg" 536 | }, 537 | "twitter": { 538 | "codepoint": 61954, 539 | "source": "svg/twitter.svg" 540 | }, 541 | "unapprove": { 542 | "codepoint": 62534, 543 | "source": "svg/unapprove.svg" 544 | }, 545 | "unsubscribe": { 546 | "codepoint": 62564, 547 | "source": "svg/unsubscribe.svg" 548 | }, 549 | "unzoom": { 550 | "codepoint": 62465, 551 | "source": "svg/unzoom.svg" 552 | }, 553 | "uparrow": { 554 | "codepoint": 62720, 555 | "source": "svg/uparrow.svg" 556 | }, 557 | "user": { 558 | "codepoint": 62212, 559 | "source": "svg/user.svg" 560 | }, 561 | "video": { 562 | "codepoint": 61700, 563 | "source": "svg/video.svg" 564 | }, 565 | "videocamera": { 566 | "codepoint": 62743, 567 | "source": "svg/videocamera.svg" 568 | }, 569 | "vimeo": { 570 | "codepoint": 61970, 571 | "source": "svg/vimeo.svg" 572 | }, 573 | "warning": { 574 | "codepoint": 62484, 575 | "source": "svg/warning.svg" 576 | }, 577 | "website": { 578 | "codepoint": 62581, 579 | "source": "svg/website.svg" 580 | }, 581 | "week": { 582 | "codepoint": 62214, 583 | "source": "svg/week.svg" 584 | }, 585 | "wordpress": { 586 | "codepoint": 61957, 587 | "source": "svg/wordpress.svg" 588 | }, 589 | "xpost": { 590 | "codepoint": 62724, 591 | "source": "svg/xpost.svg" 592 | }, 593 | "youtube": { 594 | "codepoint": 61971, 595 | "source": "svg/youtube.svg" 596 | }, 597 | "zoom": { 598 | "codepoint": 62466, 599 | "source": "svg/zoom.svg" 600 | } 601 | }, 602 | "options": { 603 | "autowidth": false, 604 | "base64": true, 605 | "config": "fontcustom.yml", 606 | "css_selector": ".genericon-{{glyph}}", 607 | "debug": false, 608 | "font_ascent": 2048, 609 | "font_descent": 0, 610 | "font_design_size": 16, 611 | "font_em": 2048, 612 | "font_name": "Genericons", 613 | "force": true, 614 | "input": { 615 | "templates": "fontcustom-templates", 616 | "vectors": "svg" 617 | }, 618 | "no_hash": true, 619 | "output": { 620 | "css": "fontcustom-webfont/", 621 | "fonts": "fontcustom-webfont/", 622 | "preview": "fontcustom-webfont/" 623 | }, 624 | "preprocessor_path": "", 625 | "quiet": false, 626 | "templates": [ 627 | "genericons.css" 628 | ] 629 | }, 630 | "templates": [ 631 | "fontcustom-webfont/genericons.css" 632 | ] 633 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | --------------------------------------------------------------------------------