From 78066a719e4a5e2cf57d558c89248698a332ba5f Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Wed, 1 Aug 2018 12:26:47 +0200 Subject: [PATCH 1/6] Remove Code School icon Code School was aquired by Pluralsight (for which an icon is already present). --- _data/simple-icons.json | 5 ----- icons/codeschool.svg | 1 - 2 files changed, 6 deletions(-) delete mode 100644 icons/codeschool.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index a7787961..26242ad1 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -300,11 +300,6 @@ "hex": "3E8DCC", "source": "https://github.com/twolfson/coderwall-svg" }, - { - "title": "Code School", - "hex": "4CADC0", - "source": "https://www.codeschool.com/brand-assets" - }, { "title": "Codewars", "hex": "AD2C27", diff --git a/icons/codeschool.svg b/icons/codeschool.svg deleted file mode 100644 index a9f1ef71..00000000 --- a/icons/codeschool.svg +++ /dev/null @@ -1 +0,0 @@ -Code School icon \ No newline at end of file From c87b5cb7f685622b46d36dca2d1e4577456e495a Mon Sep 17 00:00:00 2001 From: Doron Brayer Date: Wed, 1 Aug 2018 13:38:45 +0300 Subject: [PATCH 2/6] [New icon] Samsung (#903) * [New icon] Samsung Title: Samsung Hex: 1428A0 Source: https://www.samsung.com/us Brand guidelines: https://samsunghvac.com/extranet/bl_guide/Samsung%20Logo%20Usage%20Guidelines_112916.pdf * [New icon] Samsung Title: Samsung Hex: 1428A0 Source: https://www.samsung.com/us Brand guidelines: https://samsunghvac.com/extranet/bl_guide/Samsung%20Logo%20Usage%20Guidelines_112916.pdf * Lower precision to 4 Following discussion at #903 --- _data/simple-icons.json | 5 +++++ icons/samsung.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/samsung.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index a7787961..e45e007c 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1510,6 +1510,11 @@ "hex": "00A1E0", "source": "https://www.salesforce.com/" }, + { + "title": "Samsung", + "hex": "1428A0", + "source": "https://www.samsung.com/us" + }, { "title": "SAP", "hex": "008FD3", diff --git a/icons/samsung.svg b/icons/samsung.svg new file mode 100644 index 00000000..ae9b4683 --- /dev/null +++ b/icons/samsung.svg @@ -0,0 +1 @@ +Samsung icon From e6263f703d0ef99d247a56fe8437ffc7833c8c57 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Wed, 1 Aug 2018 12:43:58 +0200 Subject: [PATCH 3/6] Add page buid to CI script --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index e462b3ec..2a2a3575 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ node_js: script: - npm run jsonlint + - jekyll build notifications: email: From 97b971d5bcedac4a60308a4ab015eb6712b69ef1 Mon Sep 17 00:00:00 2001 From: "Zaw W. Lwin" Date: Wed, 1 Aug 2018 17:19:24 +0630 Subject: [PATCH 4/6] [New Icon] Vagrant (#911) * Add data for Vagrant icon * Reorder the Vagrant metadata alphabetically * Add Vagrant --- _data/simple-icons.json | 5 +++++ icons/vagrant.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/vagrant.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index e45e007c..215a186c 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1930,6 +1930,11 @@ "hex": "6FDA44", "source": "https://www.upwork.com/press/" }, + { + "title": "Vagrant", + "hex": "1563FF", + "source": "https://www.hashicorp.com/brand#vagrant" + }, { "title": "Viadeo", "hex": "F88D2D", diff --git a/icons/vagrant.svg b/icons/vagrant.svg new file mode 100644 index 00000000..03f62bdc --- /dev/null +++ b/icons/vagrant.svg @@ -0,0 +1 @@ +Vagrant icon From 06a743b4ac100211c105b79667499b07223e5bc1 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Wed, 1 Aug 2018 13:02:56 +0200 Subject: [PATCH 5/6] Use matrix to split NodeJS and Ruby builds --- .travis.yml | 48 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2a2a3575..14c95527 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,35 @@ -language: node_js -node_js: - - "6" +matrix: + include: + - language: node_js + node_js: + - "6" -script: - - npm run jsonlint - - jekyll build + script: + - npm run jsonlint -notifications: - email: - on_success: never - on_failure: change + notifications: + email: + on_success: never + on_failure: change -deploy: - provider: npm - email: "johanringmann@gmail.com" - api_key: "$NPM_KEY" - on: - branch: master + deploy: + provider: npm + email: "johanringmann@gmail.com" + api_key: "$NPM_KEY" + on: + branch: master + + - language: ruby + rvm: + - 2.4.1 + + install: + - gem install jekyll + + script: + - jekyll build + + notifications: + email: + on_success: never + on_failure: change From 9dc7db16a798bb983d885cc7bf4bd7921ec95f8c Mon Sep 17 00:00:00 2001 From: Johan Fagerberg Date: Wed, 1 Aug 2018 13:33:56 +0200 Subject: [PATCH 6/6] Version bump (breaking change) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7eb60ab..9b4a0b0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "1.7.1", + "version": "1.8.0", "description": "SVG icons for popular brands https://simpleicons.org", "homepage": "https://www.simpleicons.org", "keywords": [