From 70ead50f27b1e9f14547e6739de4f830a0600304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar?= Date: Sun, 17 Jan 2021 15:36:56 +0100 Subject: [PATCH 01/30] Replace 'echo' by 'printf' commands in Publish workflow --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 363f7b86..8c6049d4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -47,10 +47,10 @@ jobs: - name: Get release title and body id: release run: | - COMMIT_MSG="$(echo "${{ steps.commit.outputs.git-message }}")" - RELEASE_TITLE="$(echo "$COMMIT_MSG" | head -n 1)" + COMMIT_MSG="$(printf "${{ steps.commit.outputs.git-message }}")" + RELEASE_TITLE="$(printf "$COMMIT_MSG" | head -n 1)" echo "::set-output name=title::$RELEASE_TITLE" - RELEASE_BODY="$(echo "$COMMIT_MSG" | tail -n +3)" + RELEASE_BODY="$(printf "$COMMIT_MSG" | tail -n +3)" echo "::set-output name=body::$RELEASE_BODY" - name: Get release version id: get-version From 9fed7b6ebf3e48d6aa06a5524498d4935eb7c09a Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Sun, 17 Jan 2021 22:41:03 +0100 Subject: [PATCH 02/30] Keep track of brand guidelines/presskits/etc. explicitly (#2846) Co-authored-by: Peter Noble --- .jsonlintschema | 6 ++++++ CONTRIBUTING.md | 5 ++++- _data/simple-icons.json | 15 ++++++++++----- 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.jsonlintschema b/.jsonlintschema index 6477aa04..c6d9fc28 100644 --- a/.jsonlintschema +++ b/.jsonlintschema @@ -25,6 +25,12 @@ "type": "string", "pattern": "^https?://[^\\s]+$", "required": true + }, + "guidelines": { + "description": "The brand guidelines for the icon and/or color", + "type": "string", + "pattern": "^https?://[^\\s]+$", + "required": false } }, "required": true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3dba6e7f..cba023b9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -189,13 +189,16 @@ Icon metadata should be added to the `_data/simple-icons.json` file. Each icon i * A `hex` color value that matches the brand's primary color. All uppercase and without the `#` pound symbol.) * The `source` URL of the logo being used. There are [more details below](#source-guidelines). +There is also an optional field that may be used to specify the brand guidelines/presskit/etc. This is useful if the SVG file was sourced from a different place. + Here is the object for The Movie Database as an example: ```json { "title": "The Movie Database", "hex": "01D277", - "source": "https://www.themoviedb.org/about/logos-attribution" + "source": "https://www.themoviedb.org/about/logos-attribution", + "guidelines": "https://www.themoviedb.org/about/logos-attribution" } ``` diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 1490f106..a5118e55 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1618,7 +1618,8 @@ { "title": "Corona Engine", "hex": "F96F29", - "source": "https://coronalabs.com/" + "source": "https://coronalabs.com/", + "guidelines": "https://coronalabs.com/presskit.pdf" }, { "title": "Corona Renderer", @@ -2473,7 +2474,8 @@ { "title": "Firebase", "hex": "FFCA28", - "source": "https://firebase.google.com/brand-guidelines/" + "source": "https://firebase.google.com/brand-guidelines/", + "guidelines": "https://firebase.google.com/brand-guidelines/" }, { "title": "Firefox", @@ -2783,7 +2785,8 @@ { "title": "GitHub", "hex": "181717", - "source": "https://github.com/logos" + "source": "https://github.com/logos", + "guidelines": "https://github.com/logos" }, { "title": "GitHub Actions", @@ -4158,7 +4161,8 @@ { "title": "LG", "hex": "A50034", - "source": "https://en.wikipedia.org/wiki/LG_Corporation" + "source": "https://en.wikipedia.org/wiki/LG_Corporation", + "guidelines": "https://www.lg.com/global/about-lg-brand-identity" }, { "title": "LGTM", @@ -7443,7 +7447,8 @@ { "title": "Toyota", "hex": "EB0A1E", - "source": "https://www.toyota.com/brandguidelines/logo/" + "source": "https://www.toyota.com/brandguidelines/logo/", + "guidelines": "https://www.toyota.com/brandguidelines/" }, { "title": "TP-Link", From 70af5c3416434b47695d09e14c9ec950692127b0 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Sun, 17 Jan 2021 22:48:47 +0000 Subject: [PATCH 03/30] Update Bing (#4758) --- _data/simple-icons.json | 4 ++-- icons/bing.svg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index a5118e55..79ce195a 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -937,8 +937,8 @@ }, { "title": "Bing", - "hex": "008373", - "source": "https://commons.wikimedia.org/wiki/File:Bing_logo_(2016).svg" + "hex": "258FFA", + "source": "https://www.bing.com/covid/" }, { "title": "Bit", diff --git a/icons/bing.svg b/icons/bing.svg index 472bd0b3..e2261d38 100644 --- a/icons/bing.svg +++ b/icons/bing.svg @@ -1 +1 @@ -Bing icon \ No newline at end of file +Bing icon \ No newline at end of file From adfe5c6630a43a91e6cb0c0fa3ac024959db6ea6 Mon Sep 17 00:00:00 2001 From: Logan Marchione Date: Sun, 17 Jan 2021 22:58:33 +0000 Subject: [PATCH 04/30] Add Solidity (#4740) * Add Solidity * Fix extra bracket * Make requested changes --- _data/simple-icons.json | 5 +++++ icons/solidity.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/solidity.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 79ce195a..58772bc8 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -6699,6 +6699,11 @@ "hex": "FB6022", "source": "https://www.sogou.com/" }, + { + "title": "Solidity", + "hex": "363636", + "source": "https://docs.soliditylang.org/en/v0.7.4/brand-guide.html" + }, { "title": "SoloLearn", "hex": "1ABC9C", diff --git a/icons/solidity.svg b/icons/solidity.svg new file mode 100644 index 00000000..1ff08daa --- /dev/null +++ b/icons/solidity.svg @@ -0,0 +1 @@ +Solidity icon From bcf00d6b621d384bc4ebdb7a4d6872be1c0adbd8 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Sun, 17 Jan 2021 23:24:15 +0000 Subject: [PATCH 05/30] Added Kongregate (#4733) --- _data/simple-icons.json | 5 +++++ icons/kongregate.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/kongregate.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 58772bc8..e8ecbd78 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -4033,6 +4033,11 @@ "hex": "6AA127", "source": "http://newsroom.komoot.com/media_kits/219423/" }, + { + "title": "Kongregate", + "hex": "990000", + "source": "https://www.kongregate.com/pages/logos-and-branding" + }, { "title": "Kotlin", "hex": "0095D5", diff --git a/icons/kongregate.svg b/icons/kongregate.svg new file mode 100644 index 00000000..16562523 --- /dev/null +++ b/icons/kongregate.svg @@ -0,0 +1 @@ +Kongregate icon \ No newline at end of file From 7f1c96f8626e73cf9e35f28c126abb56671b3ab2 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Sun, 17 Jan 2021 23:39:38 +0000 Subject: [PATCH 06/30] Added IBM Watson (#4634) --- _data/simple-icons.json | 5 +++++ icons/ibmwatson.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/ibmwatson.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index e8ecbd78..47da9c3a 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -3478,6 +3478,11 @@ "hex": "054ADA", "source": "https://www.ibm.com/design/language/elements/logos/8-bar/" }, + { + "title": "IBM Watson", + "hex": "BE95FF", + "source": "https://www.ibm.com/brand/systems/watson/brand/" + }, { "title": "iCloud", "hex": "3693F3", diff --git a/icons/ibmwatson.svg b/icons/ibmwatson.svg new file mode 100644 index 00000000..1b930dae --- /dev/null +++ b/icons/ibmwatson.svg @@ -0,0 +1 @@ +IBM Watson icon \ No newline at end of file From ff168ca408592fa6b4ff0b7ceb6a0d725a994511 Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Sun, 17 Jan 2021 23:45:35 +0000 Subject: [PATCH 07/30] Add Foxtel (#4784) --- _data/simple-icons.json | 5 +++++ icons/foxtel.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/foxtel.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 47da9c3a..9c05bb10 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -2612,6 +2612,11 @@ "hex": "F94877", "source": "https://foursquare.com/about/logos" }, + { + "title": "Foxtel", + "hex": "EB5205", + "source": "https://www.foxtel.com.au/" + }, { "title": "Fozzy", "hex": "F15B29", diff --git a/icons/foxtel.svg b/icons/foxtel.svg new file mode 100644 index 00000000..c37fc30b --- /dev/null +++ b/icons/foxtel.svg @@ -0,0 +1 @@ +Foxtel icon \ No newline at end of file From 598863834fb627c1e0cd06981140a778a7503f78 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Mon, 18 Jan 2021 11:06:05 +0000 Subject: [PATCH 08/30] Updated Delicious (#4499) --- _data/simple-icons.json | 4 ++-- icons/delicious.svg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 9c05bb10..54c0ff00 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1828,8 +1828,8 @@ }, { "title": "Delicious", - "hex": "3399FF", - "source": "https://en.wikipedia.org/wiki/Delicious_(website)" + "hex": "0000FF", + "source": "http://del.icio.us/" }, { "title": "Deliveroo", diff --git a/icons/delicious.svg b/icons/delicious.svg index f79ffa4f..e0af81ac 100644 --- a/icons/delicious.svg +++ b/icons/delicious.svg @@ -1 +1 @@ -Delicious icon \ No newline at end of file +Delicious icon From 46ff9685ef5e96523917fbce0b4c2550ae0c7535 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Mon, 18 Jan 2021 13:18:02 +0100 Subject: [PATCH 09/30] Add "Publish" job for automated website updates (#4787) --- .github/workflows/publish.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8c6049d4..a3751c9a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -78,6 +78,17 @@ jobs: - name: Trigger simple-icons-font release run: | curl -X POST \ - -H "Authorization: Bearer ${{ secrets.SIMPLE_ICONS_FONT_TOKEN }}" \ + -H "Authorization: Bearer ${{ secrets.REMOTE_DISPATCH_TOKEN }}" \ -d '{"ref":"develop"}' \ https://api.github.com/repos/simple-icons/simple-icons-font/actions/workflows/auto-release.yml/dispatches + website: + name: Trigger simple-icons-website update + needs: npm + runs-on: ubuntu-latest + steps: + - name: Trigger simple-icons-website update + run: | + curl -X POST \ + -H "Authorization: Bearer ${{ secrets.REMOTE_DISPATCH_TOKEN }}" \ + -d '{"ref":"master"}' \ + https://api.github.com/repos/simple-icons/simple-icons-website/actions/workflows/auto-release.yml/dispatches From 98868c40a650378369a625f7bd26f737ef45c351 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Mon, 18 Jan 2021 12:27:32 +0000 Subject: [PATCH 10/30] Updated Google Assistant (#4401) --- icons/googleassistant.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/googleassistant.svg b/icons/googleassistant.svg index b5d4fcd4..3981b757 100644 --- a/icons/googleassistant.svg +++ b/icons/googleassistant.svg @@ -1 +1 @@ -Google Assistant icon +Google Assistant icon \ No newline at end of file From 4a331b95dab14e91c027627edbb0f61f4408497a Mon Sep 17 00:00:00 2001 From: Bjarne Fyrstenborg Date: Mon, 18 Jan 2021 15:44:47 +0100 Subject: [PATCH 11/30] Update Umbraco colour (#4794) --- _data/simple-icons.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 54c0ff00..168e1961 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -7687,7 +7687,7 @@ }, { "title": "Umbraco", - "hex": "00BEC1", + "hex": "3544B1", "source": "https://umbraco.com/" }, { From 2c4e14424cb48b24c6ca37a087e0420cbe4637be Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Mon, 18 Jan 2021 15:07:24 +0000 Subject: [PATCH 12/30] Update Umbraco (#4795) --- icons/umbraco.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/umbraco.svg b/icons/umbraco.svg index a2265fe1..b5265669 100644 --- a/icons/umbraco.svg +++ b/icons/umbraco.svg @@ -1 +1 @@ -Umbraco icon \ No newline at end of file +Umbraco icon \ No newline at end of file From 77f214d08c71e1c9fb181354756b412983d8df6b Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Mon, 18 Jan 2021 15:15:28 +0000 Subject: [PATCH 13/30] Update Klook (#4724) --- icons/klook.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/klook.svg b/icons/klook.svg index 3fec344d..65be5c71 100644 --- a/icons/klook.svg +++ b/icons/klook.svg @@ -1 +1 @@ -Klook icon \ No newline at end of file +Klook icon \ No newline at end of file From 6e15409ea670d5efd6d81ccd8879fde4f1ef8198 Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Mon, 18 Jan 2021 17:47:41 +0000 Subject: [PATCH 14/30] Add Crystal (#4779) --- _data/simple-icons.json | 5 +++++ icons/crystal.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/crystal.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 168e1961..c82607a3 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1686,6 +1686,11 @@ "hex": "000000", "source": "https://www.cryengine.com/brand" }, + { + "title": "Crystal", + "hex": "000000", + "source": "https://crystal-lang.org/media/" + }, { "title": "CSS Wizardry", "hex": "F43059", diff --git a/icons/crystal.svg b/icons/crystal.svg new file mode 100644 index 00000000..8f581bc8 --- /dev/null +++ b/icons/crystal.svg @@ -0,0 +1 @@ +Crystal icon \ No newline at end of file From a4e42d09c0a808d4d0f0f78c107f2055e783c92f Mon Sep 17 00:00:00 2001 From: Florian Bernhart <70264417+fbernhart@users.noreply.github.com> Date: Mon, 18 Jan 2021 18:58:38 +0100 Subject: [PATCH 15/30] Add Corsair (#4798) --- _data/simple-icons.json | 6 ++++++ icons/corsair.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 icons/corsair.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index c82607a3..5efcb04a 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1626,6 +1626,12 @@ "hex": "E6502A", "source": "https://corona-renderer.com/about" }, + { + "title": "Corsair", + "hex": "000000", + "source": "https://www.corsair.com", + "guidelines": "https://www.corsair.com/press" + }, { "title": "Couchbase", "hex": "EA2328", diff --git a/icons/corsair.svg b/icons/corsair.svg new file mode 100644 index 00000000..1932d5e8 --- /dev/null +++ b/icons/corsair.svg @@ -0,0 +1 @@ +Corsair icon \ No newline at end of file From 0edf9b37ae48f5486b6537109128c11575d60aac Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Tue, 19 Jan 2021 11:42:57 +0000 Subject: [PATCH 16/30] Add Amazon DynamoDB (#4780) --- _data/simple-icons.json | 5 +++++ icons/amazondynamodb.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/amazondynamodb.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 5efcb04a..ae2c7ee5 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -335,6 +335,11 @@ "hex": "232F3E", "source": "https://upload.wikimedia.org/wikipedia/commons/9/93/Amazon_Web_Services_Logo.svg" }, + { + "title": "Amazon DynamoDB", + "hex": "4053D6", + "source": "https://aws.amazon.com/architecture/icons/" + }, { "title": "Amazon Fire TV", "hex": "FC4C02", diff --git a/icons/amazondynamodb.svg b/icons/amazondynamodb.svg new file mode 100644 index 00000000..36c1287e --- /dev/null +++ b/icons/amazondynamodb.svg @@ -0,0 +1 @@ +Amazon DynamoDB icon \ No newline at end of file From dce8c263128952f4ed64dee49f802241ccecbf3f Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Tue, 19 Jan 2021 14:29:23 +0000 Subject: [PATCH 17/30] Added OPNSense (#4557) --- _data/simple-icons.json | 5 +++++ icons/opnsense.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/opnsense.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index ae2c7ee5..3a614ae5 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -5275,6 +5275,11 @@ "hex": "FF1B2D", "source": "https://github.com/operasoftware/logo" }, + { + "title": "OPNSense", + "hex": "D94F00", + "source": "https://github.com/opnsense/core/blob/06b1804a3d358041607ec3a963ab90b720564cc3/src/opnsense/www/themes/opnsense/build/images/icon-logo.svg" + }, { "title": "Opsgenie", "hex": "172B4D", diff --git a/icons/opnsense.svg b/icons/opnsense.svg new file mode 100644 index 00000000..c453178c --- /dev/null +++ b/icons/opnsense.svg @@ -0,0 +1 @@ +OPNSense icon \ No newline at end of file From 8cbaa6b22ab998d563a553be6c24a62f5ce4d61b Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Tue, 19 Jan 2021 18:50:03 +0100 Subject: [PATCH 18/30] Document enumerability of the simple-icons object (#4814) --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 2d4ff0a2..36bbf14e 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,18 @@ console.log(icon); */ ``` +Lastly, the `simpleIcons` object is also enumerable. +This is useful if you want to do a computation on every icon: + +```javascript +const simpleIcons = require('simple-icons'); + +for (const title in simpleIcons) { + const icon = simpleIcons.get(title); + // do stuff +} +``` + #### TypeScript Usage There are also TypeScript type definitions for the Node package. To use them, simply run: From 2eeab070dc87c577cd06e2b06fc27084e949a1e0 Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Tue, 19 Jan 2021 18:04:53 +0000 Subject: [PATCH 19/30] Update AliExpress & Taobao Sources (#4815) --- _data/simple-icons.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 3a614ae5..ec433636 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -293,7 +293,7 @@ { "title": "AliExpress", "hex": "FF4747", - "source": "https://doc.irasia.com/listco/hk/alibabagroup/annual/2020/ar2020.pdf" + "source": "https://www.alibabagroup.com/en/ir/reports" }, { "title": "Alipay", @@ -7223,7 +7223,7 @@ { "title": "Taobao", "hex": "E94F20", - "source": "https://doc.irasia.com/listco/hk/alibabagroup/annual/2020/ar2020.pdf" + "source": "https://www.alibabagroup.com/en/ir/reports" }, { "title": "Tapas", From ba9e0643ad613a4179b6ad904d8903add4c1f087 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Wed, 20 Jan 2021 16:18:39 +0000 Subject: [PATCH 20/30] Add Namecheap (#4811) * Added Namecheap * Update namecheap.svg --- _data/simple-icons.json | 5 +++++ icons/namecheap.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/namecheap.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index ec433636..84abbd27 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -4875,6 +4875,11 @@ "hex": "48AC98", "source": "https://n26.com/" }, + { + "title": "Namecheap", + "hex": "DE3723", + "source": "https://www.namecheap.com/" + }, { "title": "National Grid", "hex": "00148C", diff --git a/icons/namecheap.svg b/icons/namecheap.svg new file mode 100644 index 00000000..1b9a681d --- /dev/null +++ b/icons/namecheap.svg @@ -0,0 +1 @@ +Namecheap icon \ No newline at end of file From beb5c0b73647a2be1f0ff90669771eb26d19cfd4 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Wed, 20 Jan 2021 16:57:15 +0000 Subject: [PATCH 21/30] Add Songoda (#4810) --- _data/simple-icons.json | 5 +++++ icons/songoda.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/songoda.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 84abbd27..70efefcd 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -6780,6 +6780,11 @@ "hex": "F80046", "source": "http://blog.songkick.com/media-assets" }, + { + "title": "Songoda", + "hex": "FC494A", + "source": "https://songoda.com/branding" + }, { "title": "SonicWall", "hex": "FF791A", diff --git a/icons/songoda.svg b/icons/songoda.svg new file mode 100644 index 00000000..28497d50 --- /dev/null +++ b/icons/songoda.svg @@ -0,0 +1 @@ +Songoda icon \ No newline at end of file From 60847890d2cea37fc4418ca3d426fa894c10369e Mon Sep 17 00:00:00 2001 From: Alexandre Paradis Date: Wed, 20 Jan 2021 13:14:56 -0500 Subject: [PATCH 22/30] Add Cachet icon (#4822) --- _data/simple-icons.json | 5 +++++ icons/cachet.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/cachet.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 70efefcd..a78210bc 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1170,6 +1170,11 @@ "hex": "00599C", "source": "https://github.com/isocpp/logos" }, + { + "title": "Cachet", + "hex": "7ED321", + "source": "https://cachethq.io/press" + }, { "title": "Cairo Metro", "hex": "C10C0C", diff --git a/icons/cachet.svg b/icons/cachet.svg new file mode 100644 index 00000000..5b4e08d0 --- /dev/null +++ b/icons/cachet.svg @@ -0,0 +1 @@ +Cachet icon \ No newline at end of file From 260080370a8c9cb67dacf062a9d42160c3927bf2 Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Thu, 21 Jan 2021 09:29:45 +0000 Subject: [PATCH 23/30] Add Eagle (#4809) --- _data/simple-icons.json | 5 +++++ icons/eagle.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/eagle.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index a78210bc..3c0dcdf5 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -2092,6 +2092,11 @@ "hex": "000000", "source": "https://www.ea.com" }, + { + "title": "Eagle", + "hex": "0072EF", + "source": "https://en.eagle.cool/" + }, { "title": "easyJet", "hex": "FF6600", diff --git a/icons/eagle.svg b/icons/eagle.svg new file mode 100644 index 00000000..c5942adb --- /dev/null +++ b/icons/eagle.svg @@ -0,0 +1 @@ +Eagle icon \ No newline at end of file From 82c0ebed1737820eff199432914ded05946854b4 Mon Sep 17 00:00:00 2001 From: Calvin Espinoza Date: Fri, 22 Jan 2021 07:16:03 -0600 Subject: [PATCH 24/30] Add Lydia icon (#4836) --- _data/simple-icons.json | 5 +++++ icons/lydia.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/lydia.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 3c0dcdf5..94555e3d 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -4365,6 +4365,11 @@ "hex": "E74430", "source": "https://lumen.laravel.com/" }, + { + "title": "Lydia", + "hex": "0180FF", + "source": "https://lydia-app.com/en/info/press.html" + }, { "title": "Lyft", "hex": "FF00BF", diff --git a/icons/lydia.svg b/icons/lydia.svg new file mode 100644 index 00000000..90d8d206 --- /dev/null +++ b/icons/lydia.svg @@ -0,0 +1 @@ +Lydia icon \ No newline at end of file From 48a59fb0ca5da8da1d0d08e767046fad18d12b58 Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Fri, 22 Jan 2021 13:28:01 +0000 Subject: [PATCH 25/30] Add Alitalia (#4808) --- _data/simple-icons.json | 5 +++++ icons/alitalia.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/alitalia.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 94555e3d..d405693b 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -300,6 +300,11 @@ "hex": "00A1E9", "source": "https://gw.alipayobjects.com/os/rmsportal/trUJZfSrlnRCcFgfZGjD.ai" }, + { + "title": "Alitalia", + "hex": "006643", + "source": "https://www.alitalia.com/it_it/fly-alitalia/in-flight/ulisse-magazine.html" + }, { "title": "AlliedModders", "hex": "1578D3", diff --git a/icons/alitalia.svg b/icons/alitalia.svg new file mode 100644 index 00000000..a6f9c23e --- /dev/null +++ b/icons/alitalia.svg @@ -0,0 +1 @@ +Alitalia icon \ No newline at end of file From ffc4491ed99fe92387cfff597ff0a14f5525e4b9 Mon Sep 17 00:00:00 2001 From: Peter Noble Date: Fri, 22 Jan 2021 13:54:27 +0000 Subject: [PATCH 26/30] Add Acclaim (#4820) --- _data/simple-icons.json | 5 +++++ icons/acclaim.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/acclaim.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index d405693b..18a4c1bf 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -75,6 +75,11 @@ "hex": "A100FF", "source": "https://www.accenture.com/" }, + { + "title": "Acclaim", + "hex": "26689A", + "source": "https://www.youracclaim.com/" + }, { "title": "Accusoft", "hex": "A9225C", diff --git a/icons/acclaim.svg b/icons/acclaim.svg new file mode 100644 index 00000000..b186a14d --- /dev/null +++ b/icons/acclaim.svg @@ -0,0 +1 @@ +Acclaim icon \ No newline at end of file From a9317ddacd4585db20e0c3540411e693169a6a5d Mon Sep 17 00:00:00 2001 From: Kaito Sugimoto Date: Sat, 23 Jan 2021 03:41:09 +0900 Subject: [PATCH 27/30] Add bookmeter.com icon (#4829) * add Bookmeter svg * fix svg * fix hex * fix icon * update! * height fix * commit the best code --- _data/simple-icons.json | 5 +++++ icons/bookmeter.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/bookmeter.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 18a4c1bf..29c800d5 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1045,6 +1045,11 @@ "hex": "1D439C", "source": "https://commons.wikimedia.org/wiki/File:Boeing_full_logo.svg" }, + { + "title": "Bookmeter", + "hex": "64BC4B", + "source": "https://bookmeter.com/" + }, { "title": "Boost", "hex": "F7901E", diff --git a/icons/bookmeter.svg b/icons/bookmeter.svg new file mode 100644 index 00000000..70b73aa8 --- /dev/null +++ b/icons/bookmeter.svg @@ -0,0 +1 @@ +Bookmeter icon \ No newline at end of file From ca101ce8ca96f4e63d5ce35334758489ad2405b8 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Sat, 23 Jan 2021 14:58:41 +0000 Subject: [PATCH 28/30] Updated Gmail (#4470) --- _data/simple-icons.json | 4 ++-- icons/gmail.svg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 29c800d5..8069ecff 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -2876,8 +2876,8 @@ }, { "title": "Gmail", - "hex": "D14836", - "source": "https://material.io/guidelines/resources/sticker-sheets-icons.html#sticker-sheets-icons-components" + "hex": "EA4335", + "source": "https://fonts.gstatic.com/s/i/productlogos/gmail_2020q4/v8/192px.svg" }, { "title": "GNOME", diff --git a/icons/gmail.svg b/icons/gmail.svg index d6ef11e3..995b920e 100644 --- a/icons/gmail.svg +++ b/icons/gmail.svg @@ -1 +1 @@ -Gmail icon \ No newline at end of file +Gmail icon \ No newline at end of file From 586d832104cba2eff803226c7d934e4b00d34af8 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Sat, 23 Jan 2021 16:10:45 +0000 Subject: [PATCH 29/30] Updated Google Calendar (#4522) --- _data/simple-icons.json | 2 +- icons/googlecalendar.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 8069ecff..44e6af29 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -2972,7 +2972,7 @@ { "title": "Google Calendar", "hex": "4285F4", - "source": "https://commons.wikimedia.org/wiki/File:Google_Calendar_icon.svg" + "source": "https://fonts.gstatic.com/s/i/productlogos/calendar_2020q4/v8/192px.svg" }, { "title": "Google Cardboard", diff --git a/icons/googlecalendar.svg b/icons/googlecalendar.svg index 8e8d488a..7c2a188d 100644 --- a/icons/googlecalendar.svg +++ b/icons/googlecalendar.svg @@ -1 +1 @@ -Google Calendar icon \ No newline at end of file +Google Calendar icon \ No newline at end of file From 02ca61f089ae7003235db522417dff4452b91c26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Jan 2021 01:43:11 +0000 Subject: [PATCH 30/30] version bump --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 41e72206..7dff7e35 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "4.7.0", + "version": "4.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e0bef670..aa0b57ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "4.7.0", + "version": "4.8.0", "description": "SVG icons for popular brands https://simpleicons.org", "homepage": "https://www.simpleicons.org", "keywords": [