From aae9abb9c228db926c52f86c6324360705617415 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Fri, 11 Jan 2019 23:20:52 +0100 Subject: [PATCH 1/6] Add GOG icon (#1163) * Add GOG icon SVG As it is found here https://www.cdprojekt.com/en/media/logotypes/ * Add GOG icon details Added GOG icon details. The name is written as GOG as this is how it appears as their website title and on their social media (even though the logo is clearly lowercase). The (purple) color #86328A was picked because GOG clearly has a purple esthetic, although the logos found at the source all use (the gray) #333333. * Rename GOG to GOG.com --- _data/simple-icons.json | 5 +++++ icons/gog-dot-com.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/gog-dot-com.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 456a4661..f1de3fae 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -840,6 +840,11 @@ "hex": "A22430", "source": "https://www.gnu.org/graphics/social.html" }, + { + "title": "GOG.com", + "hex": "86328A", + "source": "https://www.cdprojekt.com/en/media/logotypes/" + }, { "title": "GoldenLine", "hex": "F1B92B", diff --git a/icons/gog-dot-com.svg b/icons/gog-dot-com.svg new file mode 100644 index 00000000..7df54701 --- /dev/null +++ b/icons/gog-dot-com.svg @@ -0,0 +1 @@ +GOG.com icon \ No newline at end of file From 9bb9b7d268bba1fef3fd5bdad535c2eca620aa80 Mon Sep 17 00:00:00 2001 From: chris48s Date: Tue, 15 Jan 2019 23:13:03 +0000 Subject: [PATCH 2/6] add LGTM (#1158) --- _data/simple-icons.json | 5 +++++ icons/lgtm.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/lgtm.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index f1de3fae..fb3adf6f 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1280,6 +1280,11 @@ "hex": "00D735", "source": "https://letterboxd.com/about/logos/" }, + { + "title": "LGTM", + "hex": "FFFFFF", + "source": "https://lgtm.com/" + }, { "title": "LibraryThing", "hex": "251A15", diff --git a/icons/lgtm.svg b/icons/lgtm.svg new file mode 100644 index 00000000..f1247f67 --- /dev/null +++ b/icons/lgtm.svg @@ -0,0 +1 @@ +LGTM icon \ No newline at end of file From a853febf3f39657ee93b5206030f3b5bf4fa0330 Mon Sep 17 00:00:00 2001 From: Marek van der Hoeven Date: Thu, 24 Jan 2019 14:23:08 +0100 Subject: [PATCH 3/6] Adding ZEIT (#1177) * Adding ZEIT * Vertically center zeit.svg --- _data/simple-icons.json | 5 +++++ icons/zeit.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/zeit.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index fb3adf6f..d1d75cc9 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -2625,6 +2625,11 @@ "hex": "FF4A00", "source": "https://zapier.com/about/brand" }, + { + "title": "Zeit", + "hex": "000000", + "source": "https://zeit.co/design/brand" + }, { "title": "Zendesk", "hex": "03363D", diff --git a/icons/zeit.svg b/icons/zeit.svg new file mode 100644 index 00000000..0f053168 --- /dev/null +++ b/icons/zeit.svg @@ -0,0 +1 @@ +Zeit icon \ No newline at end of file From 18dd9a2d6b61bee6af7f0762b795c4b8d1ebe34e Mon Sep 17 00:00:00 2001 From: Jos Ahrens Date: Sun, 3 Feb 2019 19:40:37 +0100 Subject: [PATCH 4/6] readme: Update example icons to be that of Simple Icons (#1174) --- README.md | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 2db549a9..6b58dad8 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,15 @@ Icons can be downloaded as SVGs directly from [our website](https://simpleicons. Icons can be served from a CDN such as [JSDelivr](https://www.jsdelivr.com/package/npm/simple-icons) or [Unpkg](https://unpkg.com). Simply use the `simple-icons` npm package and specify a version in the URL like the following: ```html - - + + +``` + +Where `[ICON NAME]` is replaced by the icon name, for example: + +```html + + ``` ### Node Usage @@ -35,13 +42,13 @@ The API can then be used as follows: ```javascript const simpleIcons = require('simple-icons'); -console.log(simpleIcons['Google+']); +console.log(simpleIcons['Simple Icons']); /* { - title: 'Google+', - hex: 'DC4E41', - source: 'https://developers.google.com/+/branding-guidelines', + title: 'Simple Icons', + hex: '111111', + source: 'https://simpleicons.org/', svg: '...' } */ @@ -50,15 +57,16 @@ console.log(simpleIcons['Google+']); Alternatively you can import the needed icons individually. This is useful if you are e.g. compiling your code with [webpack](https://webpack.js.org/) and therefore have to be mindful of your package size: -```js -const googleplus = require('simple-icons/icons/googleplus'); +```javascript +const icon = require('simple-icons/icons/simpleicons'); + +console.log(icon); -console.log(googleplus); /* { - title: 'Google+', - hex: 'DC4E41', - source: 'https://developers.google.com/+/branding-guidelines', + title: 'Simple Icons', + hex: '111111', + source: 'https://simpleicons.org/', svg: '...' } */ From 7482b32c4d7e062a265e2f4000094577230251fb Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Sun, 3 Feb 2019 20:41:16 +0200 Subject: [PATCH 5/6] Update Slack (#1172) * Update Slack icon SVG * Update Slack icon hex * Fix slack.svg --- _data/simple-icons.json | 2 +- icons/slack.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index d1d75cc9..65640fb5 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -2017,7 +2017,7 @@ }, { "title": "Slack", - "hex": "56B68B", + "hex": "4A154B", "source": "https://slack.com/brand-guidelines" }, { diff --git a/icons/slack.svg b/icons/slack.svg index 170136fe..562f2682 100644 --- a/icons/slack.svg +++ b/icons/slack.svg @@ -1 +1 @@ -Slack icon \ No newline at end of file +Slack icon From e7f878ddf6c5736ea0431b8f800b43e8a0e71fa0 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Sun, 3 Feb 2019 20:46:48 +0200 Subject: [PATCH 6/6] Version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89758de9..22051f3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "1.9.18", + "version": "1.9.19", "description": "SVG icons for popular brands https://simpleicons.org", "homepage": "https://www.simpleicons.org", "keywords": [