From d2051d7454085046afe288eed83c4d74a122a4a7 Mon Sep 17 00:00:00 2001
From: Snailedlt <43886029+Snailedlt@users.noreply.github.com>
Date: Thu, 5 Jun 2025 16:03:25 +0200
Subject: [PATCH 1/7] add githubcopilot icons
---
.vscode/settings.json | 3 ++-
.vscode/tags-enum.json | 2 ++
devicon.json | 21 +++++++++++++++++++
.../githubcopilot-line-wordmark.svg | 1 +
icons/githubcopilot/githubcopilot-line.svg | 1 +
.../githubcopilot-original-wordmark.svg | 1 +
.../githubcopilot/githubcopilot-original.svg | 1 +
.../githubcopilot-plain-wordmark.svg | 1 +
icons/githubcopilot/githubcopilot-plain.svg | 1 +
9 files changed, 31 insertions(+), 1 deletion(-)
create mode 100644 icons/githubcopilot/githubcopilot-line-wordmark.svg
create mode 100644 icons/githubcopilot/githubcopilot-line.svg
create mode 100644 icons/githubcopilot/githubcopilot-original-wordmark.svg
create mode 100644 icons/githubcopilot/githubcopilot-original.svg
create mode 100644 icons/githubcopilot/githubcopilot-plain-wordmark.svg
create mode 100644 icons/githubcopilot/githubcopilot-plain.svg
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 7eb645653..4b3c1fffd 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -6,5 +6,6 @@
],
"url": "/.vscode/devicon-schema.json"
}
- ]
+ ],
+ "svg.preview.background": "editor"
}
diff --git a/.vscode/tags-enum.json b/.vscode/tags-enum.json
index 1637bf6ff..d07171bc2 100644
--- a/.vscode/tags-enum.json
+++ b/.vscode/tags-enum.json
@@ -7,6 +7,7 @@
"enum": [
".net",
"3d",
+ "AI",
"ARM",
"C#",
"CMS",
@@ -50,6 +51,7 @@
"cloud-computing-platform",
"cmdlets",
"cms",
+ "code-completion",
"code quality",
"code-quality",
"code-review",
diff --git a/devicon.json b/devicon.json
index f7b6f7330..135194a27 100644
--- a/devicon.json
+++ b/devicon.json
@@ -4583,6 +4583,27 @@
"color": "#24292e",
"aliases": []
},
+ {
+ "name": "githubcopilot",
+ "altnames": ["github copilot"],
+ "tags": [
+ "automation",
+ "AI",
+ "code-completion"
+ ],
+ "versions": {
+ "svg": [
+ "original",
+ "original-wordmark"
+ ],
+ "font": [
+ "original",
+ "original-wordmark"
+ ]
+ },
+ "color": "#181616",
+ "aliases": []
+ },
{
"name": "gitkraken",
"altnames": [],
diff --git a/icons/githubcopilot/githubcopilot-line-wordmark.svg b/icons/githubcopilot/githubcopilot-line-wordmark.svg
new file mode 100644
index 000000000..21193169e
--- /dev/null
+++ b/icons/githubcopilot/githubcopilot-line-wordmark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icons/githubcopilot/githubcopilot-line.svg b/icons/githubcopilot/githubcopilot-line.svg
new file mode 100644
index 000000000..6c20990ce
--- /dev/null
+++ b/icons/githubcopilot/githubcopilot-line.svg
@@ -0,0 +1 @@
+
diff --git a/icons/githubcopilot/githubcopilot-original-wordmark.svg b/icons/githubcopilot/githubcopilot-original-wordmark.svg
new file mode 100644
index 000000000..8e4711a11
--- /dev/null
+++ b/icons/githubcopilot/githubcopilot-original-wordmark.svg
@@ -0,0 +1 @@
+
diff --git a/icons/githubcopilot/githubcopilot-original.svg b/icons/githubcopilot/githubcopilot-original.svg
new file mode 100644
index 000000000..a34705806
--- /dev/null
+++ b/icons/githubcopilot/githubcopilot-original.svg
@@ -0,0 +1 @@
+
diff --git a/icons/githubcopilot/githubcopilot-plain-wordmark.svg b/icons/githubcopilot/githubcopilot-plain-wordmark.svg
new file mode 100644
index 000000000..9b1ea9721
--- /dev/null
+++ b/icons/githubcopilot/githubcopilot-plain-wordmark.svg
@@ -0,0 +1 @@
+
diff --git a/icons/githubcopilot/githubcopilot-plain.svg b/icons/githubcopilot/githubcopilot-plain.svg
new file mode 100644
index 000000000..a1387545a
--- /dev/null
+++ b/icons/githubcopilot/githubcopilot-plain.svg
@@ -0,0 +1 @@
+
From 373ee560ce782db595e764554fa30dcfb6ee5204 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B8rgen=20Kalsnes=20Hagen?=
<43886029+Snailedlt@users.noreply.github.com>
Date: Thu, 5 Jun 2025 16:09:43 +0200
Subject: [PATCH 2/7] fix devicon.json
- add versions to svg and font
- fix color
---
devicon.json | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/devicon.json b/devicon.json
index 135194a27..1dbb7ac84 100644
--- a/devicon.json
+++ b/devicon.json
@@ -4594,14 +4594,20 @@
"versions": {
"svg": [
"original",
- "original-wordmark"
+ "plain",
+ "line",
+ "original-wordmark",
+ "plain-wordmark",
+ "line-wordmark"
],
"font": [
- "original",
- "original-wordmark"
+ "plain",
+ "line",
+ "plain-wordmark",
+ "line-wordmark"
]
},
- "color": "#181616",
+ "color": "#000",
"aliases": []
},
{
From 49fa978e875823f9b5eaec0436a075a05f0f8704 Mon Sep 17 00:00:00 2001
From: Snailedlt <43886029+Snailedlt@users.noreply.github.com>
Date: Thu, 5 Jun 2025 16:12:45 +0200
Subject: [PATCH 3/7] remove settings.json changes
---
.vscode/settings.json | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 4b3c1fffd..7eb645653 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -6,6 +6,5 @@
],
"url": "/.vscode/devicon-schema.json"
}
- ],
- "svg.preview.background": "editor"
+ ]
}
From 4d6302b5d2b55ec4df390853ffbec700b20029af Mon Sep 17 00:00:00 2001
From: Patrik Wehrli
Date: Tue, 17 Jun 2025 09:39:52 +0200
Subject: [PATCH 4/7] Update githubcopilot-line-wordmark.svg
Add missing fill="#000" and newline
---
icons/githubcopilot/githubcopilot-line-wordmark.svg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/icons/githubcopilot/githubcopilot-line-wordmark.svg b/icons/githubcopilot/githubcopilot-line-wordmark.svg
index 21193169e..c3c5b86ed 100644
--- a/icons/githubcopilot/githubcopilot-line-wordmark.svg
+++ b/icons/githubcopilot/githubcopilot-line-wordmark.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
From 3e6210543b42b13fdc826cfdbfb8708a9e24ac9f Mon Sep 17 00:00:00 2001
From: Patrik Wehrli
Date: Tue, 17 Jun 2025 09:40:30 +0200
Subject: [PATCH 5/7] Update githubcopilot-line.svg
Add missing fill="#000"
---
icons/githubcopilot/githubcopilot-line.svg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/icons/githubcopilot/githubcopilot-line.svg b/icons/githubcopilot/githubcopilot-line.svg
index 6c20990ce..681b2248e 100644
--- a/icons/githubcopilot/githubcopilot-line.svg
+++ b/icons/githubcopilot/githubcopilot-line.svg
@@ -1 +1 @@
-
+
From 4566eb7ffe8980b7deb36e2f4c9909189ad826d0 Mon Sep 17 00:00:00 2001
From: Patrik Wehrli
Date: Tue, 17 Jun 2025 09:41:36 +0200
Subject: [PATCH 6/7] Update githubcopilot-plain-wordmark.svg
Add missing fill="#000"
---
icons/githubcopilot/githubcopilot-plain-wordmark.svg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/icons/githubcopilot/githubcopilot-plain-wordmark.svg b/icons/githubcopilot/githubcopilot-plain-wordmark.svg
index 9b1ea9721..c981900e3 100644
--- a/icons/githubcopilot/githubcopilot-plain-wordmark.svg
+++ b/icons/githubcopilot/githubcopilot-plain-wordmark.svg
@@ -1 +1 @@
-
+
From 19db93a6c55bb6601db13b3488fa6358fed37bca Mon Sep 17 00:00:00 2001
From: Patrik Wehrli
Date: Tue, 17 Jun 2025 09:50:52 +0200
Subject: [PATCH 7/7] Update githubcopilot-plain.svg
Add missing xmlns namespace and fill="#000"
---
icons/githubcopilot/githubcopilot-plain.svg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/icons/githubcopilot/githubcopilot-plain.svg b/icons/githubcopilot/githubcopilot-plain.svg
index a1387545a..f33c47916 100644
--- a/icons/githubcopilot/githubcopilot-plain.svg
+++ b/icons/githubcopilot/githubcopilot-plain.svg
@@ -1 +1 @@
-
+