From d0d9480cd6b9904e39115c1b531b78e3287995ce Mon Sep 17 00:00:00 2001 From: Carlos Nayan Date: Tue, 10 Dec 2024 11:11:37 -0300 Subject: [PATCH 1/4] feat: added more colors to go files --- src/icons/files/go-green.svg | 14 ++++++++++++++ src/icons/files/go-orange.svg | 14 ++++++++++++++ src/icons/files/go-pink.svg | 14 ++++++++++++++ src/icons/files/go-purple.svg | 14 ++++++++++++++ src/icons/files/go-red.svg | 14 ++++++++++++++ src/icons/files/go-sky.svg | 14 ++++++++++++++ src/icons/files/go-yellow.svg | 14 ++++++++++++++ src/symbol-icon-theme.json | 8 +++++++- 8 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 src/icons/files/go-green.svg create mode 100644 src/icons/files/go-orange.svg create mode 100644 src/icons/files/go-pink.svg create mode 100644 src/icons/files/go-purple.svg create mode 100644 src/icons/files/go-red.svg create mode 100644 src/icons/files/go-sky.svg create mode 100644 src/icons/files/go-yellow.svg diff --git a/src/icons/files/go-green.svg b/src/icons/files/go-green.svg new file mode 100644 index 0000000..a51d5c4 --- /dev/null +++ b/src/icons/files/go-green.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/icons/files/go-orange.svg b/src/icons/files/go-orange.svg new file mode 100644 index 0000000..3a2c19c --- /dev/null +++ b/src/icons/files/go-orange.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/icons/files/go-pink.svg b/src/icons/files/go-pink.svg new file mode 100644 index 0000000..12de923 --- /dev/null +++ b/src/icons/files/go-pink.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/icons/files/go-purple.svg b/src/icons/files/go-purple.svg new file mode 100644 index 0000000..efbc8f5 --- /dev/null +++ b/src/icons/files/go-purple.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/icons/files/go-red.svg b/src/icons/files/go-red.svg new file mode 100644 index 0000000..374bbd7 --- /dev/null +++ b/src/icons/files/go-red.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/icons/files/go-sky.svg b/src/icons/files/go-sky.svg new file mode 100644 index 0000000..b68e460 --- /dev/null +++ b/src/icons/files/go-sky.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/icons/files/go-yellow.svg b/src/icons/files/go-yellow.svg new file mode 100644 index 0000000..a20846b --- /dev/null +++ b/src/icons/files/go-yellow.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/symbol-icon-theme.json b/src/symbol-icon-theme.json index 334c263..16b86e6 100644 --- a/src/symbol-icon-theme.json +++ b/src/symbol-icon-theme.json @@ -157,7 +157,13 @@ "gitlab": { "iconPath": "./icons/files/gitlab.svg" }, "gleam": { "iconPath": "./icons/files/gleam.svg" }, "go-mod": { "iconPath": "./icons/files/go-mod.svg" }, - "go": { "iconPath": "./icons/files/go.svg" }, + "go-green": { "iconPath": "./icons/files/go-green.svg" }, + "go-orange": { "iconPath": "./icons/files/go-orange.svg" }, + "go-pink": { "iconPath": "./icons/files/go-pink.svg" }, + "go-purple": { "iconPath": "./icons/files/go-purple.svg" }, + "go-red": { "iconPath": "./icons/files/go-red.svg" }, + "go-sky": { "iconPath": "./icons/files/go-sky.svg" }, + "go-yellow": { "iconPath": "./icons/files/go-yellow.svg" }, "gradle": { "iconPath": "./icons/files/gradle.svg" }, "graphql": { "iconPath": "./icons/files/graphql.svg" }, "gulp": { "iconPath": "./icons/files/gulp.svg" }, From f3b71187c39337ccf4f96a63a87e57028e8d854d Mon Sep 17 00:00:00 2001 From: Carlos Nayan Date: Tue, 10 Dec 2024 11:43:32 -0300 Subject: [PATCH 2/4] fix: get back go file icon --- src/symbol-icon-theme.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/symbol-icon-theme.json b/src/symbol-icon-theme.json index 16b86e6..73290f1 100644 --- a/src/symbol-icon-theme.json +++ b/src/symbol-icon-theme.json @@ -156,6 +156,7 @@ "github": { "iconPath": "./icons/files/github.svg" }, "gitlab": { "iconPath": "./icons/files/gitlab.svg" }, "gleam": { "iconPath": "./icons/files/gleam.svg" }, + "go": { "iconPath": "./icons/files/go.svg" }, "go-mod": { "iconPath": "./icons/files/go-mod.svg" }, "go-green": { "iconPath": "./icons/files/go-green.svg" }, "go-orange": { "iconPath": "./icons/files/go-orange.svg" }, From 958434f7f6eccbfc382a5291010fa88c80049e43 Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Fri, 3 Jan 2025 09:32:09 -0800 Subject: [PATCH 3/4] Replace `go-mod` with `go-pink` --- src/icons/files/go-mod.svg | 14 -------------- src/symbol-icon-theme.json | 4 ++-- 2 files changed, 2 insertions(+), 16 deletions(-) delete mode 100644 src/icons/files/go-mod.svg diff --git a/src/icons/files/go-mod.svg b/src/icons/files/go-mod.svg deleted file mode 100644 index f232d5d..0000000 --- a/src/icons/files/go-mod.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/symbol-icon-theme.json b/src/symbol-icon-theme.json index 73290f1..d1a4808 100644 --- a/src/symbol-icon-theme.json +++ b/src/symbol-icon-theme.json @@ -157,10 +157,10 @@ "gitlab": { "iconPath": "./icons/files/gitlab.svg" }, "gleam": { "iconPath": "./icons/files/gleam.svg" }, "go": { "iconPath": "./icons/files/go.svg" }, - "go-mod": { "iconPath": "./icons/files/go-mod.svg" }, + "go-mod": { "iconPath": "./icons/files/go-pink.svg" }, + "go-pink": { "iconPath": "./icons/files/go-pink.svg" }, "go-green": { "iconPath": "./icons/files/go-green.svg" }, "go-orange": { "iconPath": "./icons/files/go-orange.svg" }, - "go-pink": { "iconPath": "./icons/files/go-pink.svg" }, "go-purple": { "iconPath": "./icons/files/go-purple.svg" }, "go-red": { "iconPath": "./icons/files/go-red.svg" }, "go-sky": { "iconPath": "./icons/files/go-sky.svg" }, From 20c7c645a5c6a68242e3c2e293d791c3b89388f2 Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Fri, 3 Jan 2025 09:34:42 -0800 Subject: [PATCH 4/4] Remove `go-sky` in favor of `go` --- src/icons/files/go-sky.svg | 14 -------------- src/symbol-icon-theme.json | 1 - 2 files changed, 15 deletions(-) delete mode 100644 src/icons/files/go-sky.svg diff --git a/src/icons/files/go-sky.svg b/src/icons/files/go-sky.svg deleted file mode 100644 index b68e460..0000000 --- a/src/icons/files/go-sky.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/symbol-icon-theme.json b/src/symbol-icon-theme.json index d1a4808..8b75f88 100644 --- a/src/symbol-icon-theme.json +++ b/src/symbol-icon-theme.json @@ -163,7 +163,6 @@ "go-orange": { "iconPath": "./icons/files/go-orange.svg" }, "go-purple": { "iconPath": "./icons/files/go-purple.svg" }, "go-red": { "iconPath": "./icons/files/go-red.svg" }, - "go-sky": { "iconPath": "./icons/files/go-sky.svg" }, "go-yellow": { "iconPath": "./icons/files/go-yellow.svg" }, "gradle": { "iconPath": "./icons/files/gradle.svg" }, "graphql": { "iconPath": "./icons/files/graphql.svg" },