From 619c8064bda57e34dd0542b4518b414c43ee33df Mon Sep 17 00:00:00 2001 From: Amacado Date: Tue, 22 Mar 2022 22:39:46 +0100 Subject: [PATCH 01/11] bump npm version to v2.15.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index fa8d149e2..eae8ceb37 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "devicon", - "version": "2.15.0", + "version": "2.15.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "devicon", - "version": "2.14.0", + "version": "2.15.1", "license": "MIT", "devDependencies": { "gulp": "^4.0.2", diff --git a/package.json b/package.json index fcc6b99a7..d9505a699 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "devicon", - "version": "2.15.0", + "version": "2.15.1", "description": "Programming related icons collection", "main": "devicon.min.css", "scripts": { From c8e75b42abf38fbe04d243fb1508c8d4c1e1d328 Mon Sep 17 00:00:00 2001 From: Binx Date: Sun, 14 Aug 2022 23:30:23 +0400 Subject: [PATCH 02/11] feat: add neorg icon --- devicon.json | 17 +++++++++++++++ icons/neorg/neorg-original.svg | 40 ++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 icons/neorg/neorg-original.svg diff --git a/devicon.json b/devicon.json index 76d0eac64..fdcc13616 100644 --- a/devicon.json +++ b/devicon.json @@ -4503,6 +4503,23 @@ "color": "#018BFF", "aliases": [] }, + { + "name": "neorg", + "tags": [ + "note-taking", + "organization" + ], + "versions": { + "svg": [ + "original" + ], + "font": [ + "plain" + ] + }, + "color": "#4793af", + "aliases": [] + }, { "name": "nestjs", "altnames": [], diff --git a/icons/neorg/neorg-original.svg b/icons/neorg/neorg-original.svg new file mode 100644 index 000000000..723e48f0e --- /dev/null +++ b/icons/neorg/neorg-original.svg @@ -0,0 +1,40 @@ + + + + + From 5fa98e220f456b0c61c50aa6885d82302290c2e6 Mon Sep 17 00:00:00 2001 From: Binx Date: Mon, 15 Aug 2022 00:25:29 +0400 Subject: [PATCH 03/11] fix: rename neorg to norg --- devicon.json | 34 +++++++++---------- .../norg-original.svg} | 0 2 files changed, 17 insertions(+), 17 deletions(-) rename icons/{neorg/neorg-original.svg => norg/norg-original.svg} (100%) diff --git a/devicon.json b/devicon.json index fdcc13616..05c09db4f 100644 --- a/devicon.json +++ b/devicon.json @@ -4503,23 +4503,6 @@ "color": "#018BFF", "aliases": [] }, - { - "name": "neorg", - "tags": [ - "note-taking", - "organization" - ], - "versions": { - "svg": [ - "original" - ], - "font": [ - "plain" - ] - }, - "color": "#4793af", - "aliases": [] - }, { "name": "nestjs", "altnames": [], @@ -4733,6 +4716,23 @@ "color": "#3d3b47", "aliases": [] }, + { + "name": "norg", + "tags": [ + "note-taking", + "organization" + ], + "versions": { + "svg": [ + "original" + ], + "font": [ + "plain" + ] + }, + "color": "#4793af", + "aliases": [] + }, { "name": "npm", "altnames": [ diff --git a/icons/neorg/neorg-original.svg b/icons/norg/norg-original.svg similarity index 100% rename from icons/neorg/neorg-original.svg rename to icons/norg/norg-original.svg From eae5dadb72e618f19558f8d084dbf4f8c1a6defe Mon Sep 17 00:00:00 2001 From: Binx Date: Mon, 15 Aug 2022 12:07:31 +0400 Subject: [PATCH 04/11] fix: add proper orginal and plain versions --- devicon.json | 3 +- icons/norg/norg-original.svg | 84 +++++++++++++++++++----------------- icons/norg/norg-plain.svg | 40 +++++++++++++++++ 3 files changed, 87 insertions(+), 40 deletions(-) create mode 100644 icons/norg/norg-plain.svg diff --git a/devicon.json b/devicon.json index 5f1b8019c..52b4050b4 100644 --- a/devicon.json +++ b/devicon.json @@ -4761,7 +4761,8 @@ ], "versions": { "svg": [ - "original" + "original", + "plain" ], "font": [ "plain" diff --git a/icons/norg/norg-original.svg b/icons/norg/norg-original.svg index 723e48f0e..1802fd4a0 100644 --- a/icons/norg/norg-original.svg +++ b/icons/norg/norg-original.svg @@ -1,40 +1,46 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/norg/norg-plain.svg b/icons/norg/norg-plain.svg new file mode 100644 index 000000000..723e48f0e --- /dev/null +++ b/icons/norg/norg-plain.svg @@ -0,0 +1,40 @@ + + + + + From 6595ecb435a4320ddb35c470518d19c633f58411 Mon Sep 17 00:00:00 2001 From: Binx Date: Mon, 15 Aug 2022 17:13:49 +0400 Subject: [PATCH 05/11] fix: add altnames property in devicon.json --- devicon.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/devicon.json b/devicon.json index 52b4050b4..4281dd7e1 100644 --- a/devicon.json +++ b/devicon.json @@ -4755,6 +4755,9 @@ }, { "name": "norg", + "altnames": [ + "neorg" + ], "tags": [ "note-taking", "organization" From 8c144d1d509415e0b655f3c8cfca88ee50455bd4 Mon Sep 17 00:00:00 2001 From: Binx Date: Mon, 15 Aug 2022 20:23:19 +0400 Subject: [PATCH 06/11] fix: resize and optimize svg's --- icons/norg/norg-original.svg | 75 +++++++++++++++--------------------- icons/norg/norg-plain.svg | 41 +------------------- 2 files changed, 32 insertions(+), 84 deletions(-) diff --git a/icons/norg/norg-original.svg b/icons/norg/norg-original.svg index 1802fd4a0..d45d77845 100644 --- a/icons/norg/norg-original.svg +++ b/icons/norg/norg-original.svg @@ -1,46 +1,31 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/norg/norg-plain.svg b/icons/norg/norg-plain.svg index 723e48f0e..0b45ad589 100644 --- a/icons/norg/norg-plain.svg +++ b/icons/norg/norg-plain.svg @@ -1,40 +1,3 @@ - - - - + + From aef7b485345eb2de8a91fa7f5b49034a80018ac0 Mon Sep 17 00:00:00 2001 From: Binx <68950943+BinxDot@users.noreply.github.com> Date: Mon, 15 Aug 2022 21:36:24 +0400 Subject: [PATCH 07/11] fix: optimize original version of the svg Co-authored-by: David Leal --- icons/norg/norg-original.svg | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/icons/norg/norg-original.svg b/icons/norg/norg-original.svg index d45d77845..8d584cded 100644 --- a/icons/norg/norg-original.svg +++ b/icons/norg/norg-original.svg @@ -1,31 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + From 10d8029236e145e8a91ac95650b9d3a29b855b7d Mon Sep 17 00:00:00 2001 From: Binx Date: Tue, 16 Aug 2022 00:24:57 +0400 Subject: [PATCH 08/11] fix: remove unnecessary height option from plain version --- icons/norg/norg-plain.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/norg/norg-plain.svg b/icons/norg/norg-plain.svg index 0b45ad589..1aa55c543 100644 --- a/icons/norg/norg-plain.svg +++ b/icons/norg/norg-plain.svg @@ -1,3 +1,3 @@ - + From c655026b05fa4ac26994885a9c8c19436b2602bc Mon Sep 17 00:00:00 2001 From: Binx <68950943+BinxDot@users.noreply.github.com> Date: Tue, 16 Aug 2022 00:29:22 +0400 Subject: [PATCH 09/11] fix: use most prevalent color from the original version for the primary color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jørgen Kalsnes Hagen <43886029+Snailedlt@users.noreply.github.com> --- devicon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicon.json b/devicon.json index 22a5fbd5d..c77df9a04 100644 --- a/devicon.json +++ b/devicon.json @@ -4797,7 +4797,7 @@ "plain" ] }, - "color": "#4793af", + "color": "#366794", "aliases": [] }, { From 87cab043b9d240899387c5420d732e428c6ae111 Mon Sep 17 00:00:00 2001 From: Binx <68950943+BinxDot@users.noreply.github.com> Date: Tue, 16 Aug 2022 08:59:25 +0400 Subject: [PATCH 10/11] fix: add height option to plain version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jørgen Kalsnes Hagen <43886029+Snailedlt@users.noreply.github.com> --- icons/norg/norg-plain.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/norg/norg-plain.svg b/icons/norg/norg-plain.svg index 1aa55c543..d5980f563 100644 --- a/icons/norg/norg-plain.svg +++ b/icons/norg/norg-plain.svg @@ -1,3 +1,3 @@ - + From 95267c0981bddb9066ceacfe3c1e84461932340a Mon Sep 17 00:00:00 2001 From: Binx Date: Tue, 16 Aug 2022 13:07:46 +0400 Subject: [PATCH 11/11] fix: make primary color lighter --- devicon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicon.json b/devicon.json index c77df9a04..8b6a04fc4 100644 --- a/devicon.json +++ b/devicon.json @@ -4797,7 +4797,7 @@ "plain" ] }, - "color": "#366794", + "color": "#4878be", "aliases": [] }, {