From 9a123fa202c0ce3e1fa87112e24fcbb776b4b31c Mon Sep 17 00:00:00 2001
From: ezzzin <37263841+ezzzin@users.noreply.github.com>
Date: Thu, 6 Dec 2018 16:36:14 +0900
Subject: [PATCH 01/10] Add a icloud logo (#1099)
* Add a itunes logo
* Add itunes logo
* Add a icloud logo
* Modify iCloud logo
---
_data/simple-icons.json | 5 +++++
icons/icloud.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/icloud.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index 6da35864..302f4dc4 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -1005,6 +1005,11 @@
"hex": "CC2929",
"source": "https://support.humblebundle.com/hc/en-us/articles/202742060-Bundle-Logos"
},
+ {
+ "title": "iCloud",
+ "hex": "3693F3",
+ "source": "https://www.icloud.com/"
+ },
{
"title": "IconJar",
"hex": "16A5F3",
diff --git a/icons/icloud.svg b/icons/icloud.svg
new file mode 100644
index 00000000..c2e6a8dc
--- /dev/null
+++ b/icons/icloud.svg
@@ -0,0 +1 @@
+
From 01b1f7e06dc4dd3c96c50f71ca3e5de775a37fa6 Mon Sep 17 00:00:00 2001
From: Ankit Kumar Dwivedi
<37617951+ankit-kumar-dwivedi@users.noreply.github.com>
Date: Mon, 10 Dec 2018 12:58:38 +0530
Subject: [PATCH 02/10] Added flask icon (#1113)
* Added flask.svg
* Delete flask.svg
* Added Flask icon
* Added title to flask icon
* Update simple-icons.json
* Update _data/simple-icons.json
* Update simple-icons.json
* Update flask.svg
---
_data/simple-icons.json | 5 +++++
icons/flask.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/flask.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index 302f4dc4..642dca47 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -675,6 +675,11 @@
"hex": "00B0B9",
"source": "http://www.fitbit.com/uk/home"
},
+ {
+ "title": "Flask",
+ "hex": "000000",
+ "source": "http://flask.pocoo.org/community/logos/"
+ },
{
"title": "Flattr",
"hex": "000000",
diff --git a/icons/flask.svg b/icons/flask.svg
new file mode 100644
index 00000000..22df8bc2
--- /dev/null
+++ b/icons/flask.svg
@@ -0,0 +1 @@
+
From 13daa745dd47341252e32e1ce71dce88b75a8d3d Mon Sep 17 00:00:00 2001
From: Gabriele D'Arrigo
Date: Thu, 13 Dec 2018 11:02:20 +0100
Subject: [PATCH 03/10] Added DAZN icon (#1118)
* Fix: add the missing svg title
---
_data/simple-icons.json | 5 +++++
icons/dazn.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/dazn.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index 642dca47..a85b89d7 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -440,6 +440,11 @@
"hex": "0066DC",
"source": "http://press.dailymotion.com/?page_id=346"
},
+ {
+ "title": "DAZN",
+ "hex": "F8F8F5",
+ "source": "https://media.dazn.com/en/assets/"
+ },
{
"title": "Debian",
"hex": "A81D33",
diff --git a/icons/dazn.svg b/icons/dazn.svg
new file mode 100644
index 00000000..5e5d8507
--- /dev/null
+++ b/icons/dazn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
From eb6fc0b3ceee5b6ffcefa834b82c7d2eb93343de Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotrek=20=C5=BBygie=C5=82o?=
Date: Thu, 13 Dec 2018 18:50:43 +0100
Subject: [PATCH 04/10] With bad xml travis should fail the build (#1112)
* With bad xml travis should fail the build
* Validate SVGs for being well-formed XMLs
---
.travis.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index ed5774e4..7bcecbf7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,11 @@ jobs:
- stage: "Test"
name: "Lint"
language: node_js
+ before_install:
+ - sudo apt-get install -y xmlstarlet
node_js: 8
script:
+ - xmlstarlet validate --well-formed icons/*.svg
- npm run jsonlint
- npm run svglint
- name: "Build website"
From 7bbeb24741fcf7d09b808c5e313378047a569cdf Mon Sep 17 00:00:00 2001
From: Gabriele D'Arrigo
Date: Fri, 14 Dec 2018 13:33:37 +0100
Subject: [PATCH 05/10] Add a point to the pr template checklist (#1122)
* Add a point to the pr template checklist
* Fix capitalization
There were some stray uppercase letters
* Update checklist order
---
.github/PULL_REQUEST_TEMPLATE.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index abcd4e8f..10a20be3 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -6,6 +6,7 @@ Before opening your pull request, have a quick look at our contribution guidelin
### Checklist
+ - [ ] I updated the JSON data in `_data/simple-icons.json`
- [ ] I optimized the icon with SVGO or SVGOMG
- [ ] The SVG `viewbox` is `0 0 24 24`
From 6e4f6d5949ac149180d0e6ff454663a422645786 Mon Sep 17 00:00:00 2001
From: Gabriele D'Arrigo
Date: Fri, 14 Dec 2018 14:12:33 +0100
Subject: [PATCH 06/10] Add Amazon AWS icon (#1120)
* Fix the hex color to the right value
---
_data/simple-icons.json | 5 +++++
icons/amazonaws.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/amazonaws.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index a85b89d7..b2bae506 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -90,6 +90,11 @@
"hex": "FF9900",
"source": "https://worldvectorlogo.com/logo/amazon-icon"
},
+ {
+ "title": "Amazon AWS",
+ "hex": "232F3E",
+ "source": "https://upload.wikimedia.org/wikipedia/commons/9/93/Amazon_Web_Services_Logo.svg"
+ },
{
"title": "AMD",
"hex": "ED1C24",
diff --git a/icons/amazonaws.svg b/icons/amazonaws.svg
new file mode 100644
index 00000000..260adf30
--- /dev/null
+++ b/icons/amazonaws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
From 55f216f07ef508013999916303b4fbe1f03ea4e4 Mon Sep 17 00:00:00 2001
From: chris48s
Date: Sun, 16 Dec 2018 16:40:45 +0000
Subject: [PATCH 07/10] add Appveyor icon (#1128)
* add Appveyor icon
* Appveyor --> AppVeyor
* DDDDDD --> 00B3E0
---
_data/simple-icons.json | 5 +++++
icons/appveyor.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/appveyor.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index b2bae506..2d31d868 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -135,6 +135,11 @@
"hex": "000000",
"source": "https://developer.apple.com/apple-pay/marketing/"
},
+ {
+ "title": "AppVeyor",
+ "hex": "00B3E0",
+ "source": "https://commons.wikimedia.org/wiki/File:Appveyor_logo.svg"
+ },
{
"title": "Arch Linux",
"hex": "1793D1",
diff --git a/icons/appveyor.svg b/icons/appveyor.svg
new file mode 100644
index 00000000..c75a9c39
--- /dev/null
+++ b/icons/appveyor.svg
@@ -0,0 +1 @@
+
From 40f38859dabcd5dc54481119eb99363f68644db8 Mon Sep 17 00:00:00 2001
From: Gabriele D'Arrigo
Date: Mon, 17 Dec 2018 12:01:44 +0100
Subject: [PATCH 08/10] Add Snyk icon (#1130)
* Change icon color to #4c4a73
---
_data/simple-icons.json | 5 +++++
icons/snyk.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/snyk.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index 2d31d868..285cc562 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -1985,6 +1985,11 @@
"hex": "FFFC00",
"source": "https://www.snapchat.com/brand-guidelines"
},
+ {
+ "title": "Snyk",
+ "hex": "4C4A73",
+ "source": "https://snyk.io/press-kit"
+ },
{
"title": "Sogou",
"hex": "FB6022",
diff --git a/icons/snyk.svg b/icons/snyk.svg
new file mode 100644
index 00000000..09b0ff5a
--- /dev/null
+++ b/icons/snyk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
From aa88323595b8fd2231ee31a7001ce26abeaf2d14 Mon Sep 17 00:00:00 2001
From: chris48s
Date: Mon, 17 Dec 2018 21:52:26 +0000
Subject: [PATCH 09/10] add postgresql icon (#1132)
---
_data/simple-icons.json | 5 +++++
icons/postgresql.svg | 1 +
2 files changed, 6 insertions(+)
create mode 100644 icons/postgresql.svg
diff --git a/_data/simple-icons.json b/_data/simple-icons.json
index 285cc562..0bf40d02 100644
--- a/_data/simple-icons.json
+++ b/_data/simple-icons.json
@@ -1695,6 +1695,11 @@
"hex": "9933CC",
"source": "https://www.apple.com/itunes/marketing-on-podcasts/identity-guidelines.html#apple-podcasts-icon"
},
+ {
+ "title": "PostgreSQL",
+ "hex": "336791",
+ "source": "https://wiki.postgresql.org/wiki/Logo"
+ },
{
"title": "PowerShell",
"hex": "5391FE",
diff --git a/icons/postgresql.svg b/icons/postgresql.svg
new file mode 100644
index 00000000..b102a0e8
--- /dev/null
+++ b/icons/postgresql.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
From e126c554810c5b8be326010e5e7b299a7694db29 Mon Sep 17 00:00:00 2001
From: Eric Cornelissen
Date: Tue, 18 Dec 2018 01:00:03 +0200
Subject: [PATCH 10/10] Version bump
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index a0b62004..6281d154 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "simple-icons",
- "version": "1.9.15",
+ "version": "1.9.16",
"description": "SVG icons for popular brands https://simpleicons.org",
"homepage": "https://www.simpleicons.org",
"keywords": [