From f72d9b6d9091f1757ccec7cd3981bd02d0da23ab Mon Sep 17 00:00:00 2001 From: LitoMore Date: Sun, 31 Mar 2024 16:37:43 +0800 Subject: [PATCH 01/24] Specify the target for cross-repository dispatches --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9f50ef2ded22..9cfde0fa7e11 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -104,6 +104,7 @@ jobs: with: app-id: ${{ vars.BOT_APP_ID }} private-key: ${{ secrets.BOT_PRIVATE_KEY }} + repositories: 'simple-icons-font' - name: Trigger simple-icons-font release run: | curl -X POST \ @@ -120,6 +121,7 @@ jobs: with: app-id: ${{ vars.BOT_APP_ID }} private-key: ${{ secrets.BOT_PRIVATE_KEY }} + repositories: 'simple-icons-website' - name: Trigger simple-icons-website update run: | curl -X POST \ From 6d26eddf759dd109b254d3448b6769c0ee28f8a1 Mon Sep 17 00:00:00 2001 From: LitoMore Date: Sun, 31 Mar 2024 16:51:05 +0800 Subject: [PATCH 02/24] Apply bot token to release-action --- .github/workflows/create-release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 0d610231a1dd..4d130e2f637b 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -23,10 +23,15 @@ jobs: did-create-pr: ${{ steps.release.outputs.did-create-pr }} new-version: ${{ steps.release.outputs.new-version }} steps: + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ vars.BOT_APP_ID }} + private-key: ${{ secrets.BOT_PRIVATE_KEY }} - uses: simple-icons/release-action@v1 id: release with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ steps.app-token.outputs.token }} version-bump: runs-on: ubuntu-latest needs: release-pr From f2cdbc3db5744aa77035633a91059d6c3606226f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar=20Rubio?= Date: Sun, 31 Mar 2024 14:18:52 +0200 Subject: [PATCH 03/24] Disable linting for autogenerated SDK TS definitions (#10747) --- .xo-config.json | 7 +++++-- scripts/release/update-sdk-ts-defs.js | 2 +- sdk.d.ts | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.xo-config.json b/.xo-config.json index bd4ffdfe84c5..5bc1ec3f8386 100644 --- a/.xo-config.json +++ b/.xo-config.json @@ -2,7 +2,6 @@ "prettier": true, "space": 2, "plugins": ["import"], - "ignores": ["sdk.d.ts"], "rules": { "n/no-unsupported-features": "off", "n/no-unsupported-features/node-builtins": "off", @@ -35,7 +34,11 @@ "overrides": [ { "files": ["sdk.mjs", "sdk.d.ts"], - "nodeVersion": ">=14" + "nodeVersion": ">=14", + "rules": { + "eslint-comments/disable-enable-pair": "off", + "unicorn/no-abusive-eslint-disable": "off" + } }, { "files": [ diff --git a/scripts/release/update-sdk-ts-defs.js b/scripts/release/update-sdk-ts-defs.js index fc3d54a86cc4..fe9341543fdf 100755 --- a/scripts/release/update-sdk-ts-defs.js +++ b/scripts/release/update-sdk-ts-defs.js @@ -55,7 +55,7 @@ const generateSdkTs = async () => { await generateSdkMts(); const autogeneratedMessage = - '/* The next code is autogenerated from sdk.mjs */'; + '/* The next code is autogenerated from sdk.mjs */\n/* eslint-disable */'; const newSdkTsContent = // eslint-disable-next-line unicorn/no-await-expression-member (await fs.readFile(sdkTs, 'utf8')).split(autogeneratedMessage)[0] + diff --git a/sdk.d.ts b/sdk.d.ts index 9eaf543fb575..4d7c1fd218c8 100644 --- a/sdk.d.ts +++ b/sdk.d.ts @@ -61,6 +61,7 @@ export type IconData = { }; /* The next code is autogenerated from sdk.mjs */ +/* eslint-disable */ export const URL_REGEX: RegExp; export const SVG_PATH_REGEX: RegExp; From 472d89f31d184ac464bb953f39eb2e20c2ccd0b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar=20Rubio?= Date: Sun, 31 Mar 2024 17:40:27 +0200 Subject: [PATCH 04/24] Authenticate with GitHub token in get-labels action (#10748) --- .github/actions/get-labels/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/get-labels/action.yml b/.github/actions/get-labels/action.yml index ce287844dc81..a38367d17960 100644 --- a/.github/actions/get-labels/action.yml +++ b/.github/actions/get-labels/action.yml @@ -5,6 +5,9 @@ inputs: issue_number: description: Issue or pull request number to get labels from required: true + github-token: + description: GitHub token used to authenticate with the GitHub API + default: ${{ secrets.GITHUB_TOKEN }} outputs: labels: description: Labels of the issue or pull request @@ -15,6 +18,8 @@ runs: steps: - id: get-labels shell: sh + env: + GH_TOKEN: ${{ inputs.github-token }} run: | labels="$(gh api 'repos/simple-icons/simple-icons/issues/${{ inputs.issue_number }}' --jq '.labels.[].name' | tr '\n' ',')" echo "labels=$labels" >> $GITHUB_OUTPUT From f673b07a1684f4b629c8885ef1f39d538521c1af Mon Sep 17 00:00:00 2001 From: LitoMore Date: Mon, 1 Apr 2024 13:03:01 +0800 Subject: [PATCH 05/24] Remove invalid `secrets` usage (#10752) --- .github/actions/get-labels/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/get-labels/action.yml b/.github/actions/get-labels/action.yml index a38367d17960..eafc8ce4b935 100644 --- a/.github/actions/get-labels/action.yml +++ b/.github/actions/get-labels/action.yml @@ -7,7 +7,7 @@ inputs: required: true github-token: description: GitHub token used to authenticate with the GitHub API - default: ${{ secrets.GITHUB_TOKEN }} + required: true outputs: labels: description: Labels of the issue or pull request From a290fad1c9c3cd1fc0d01f52bd5ba18c015bbb32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar=20Rubio?= Date: Mon, 1 Apr 2024 09:34:33 +0200 Subject: [PATCH 06/24] Fix `get-labels` action usage (#10753) --- .github/workflows/add-labels-priority.yml | 3 +-- .github/workflows/autoclose-issues.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/add-labels-priority.yml b/.github/workflows/add-labels-priority.yml index 3818d24989aa..ebc0a68d73da 100644 --- a/.github/workflows/add-labels-priority.yml +++ b/.github/workflows/add-labels-priority.yml @@ -36,8 +36,7 @@ jobs: uses: ./.github/actions/get-labels with: issue_number: ${{ github.event.pull_request.number }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} - id: get-si-members name: Get simple-icons members diff --git a/.github/workflows/autoclose-issues.yml b/.github/workflows/autoclose-issues.yml index 38774595c559..6d8b4e59c5f6 100644 --- a/.github/workflows/autoclose-issues.yml +++ b/.github/workflows/autoclose-issues.yml @@ -31,8 +31,7 @@ jobs: uses: ./.github/actions/get-labels with: issue_number: ${{ github.event.issue.number }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} # if the issue is labeled as a 'new icon' and it matches Java, we # - add a comment referring to the removal request From 04d49785f70240c8f60cb4d070a036675566c925 Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:28:42 -0400 Subject: [PATCH 07/24] Add Parrot Security icon (#10736) --- _data/simple-icons.json | 5 +++++ icons/parrotsecurity.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/parrotsecurity.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 2452a9bd95f4..b171f87c2476 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -11225,6 +11225,11 @@ "hex": "282828", "source": "https://substrate.dev" }, + { + "title": "Parrot Security", + "hex": "15E0ED", + "source": "https://gitlab.com/parrotsec/project/documentation/-/blob/d1d426b9cb3ea0efd16a2b34056c1ebb21bb9af9/static/img/parrot-logo.svg" + }, { "title": "Parse.ly", "hex": "5BA745", diff --git a/icons/parrotsecurity.svg b/icons/parrotsecurity.svg new file mode 100644 index 000000000000..8eefdbd049db --- /dev/null +++ b/icons/parrotsecurity.svg @@ -0,0 +1 @@ +Parrot Security \ No newline at end of file From 2daafd27c62b95b6d59add2ada86943ffbaa95fb Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:32:38 -0400 Subject: [PATCH 08/24] Add bat icon (#10750) --- _data/simple-icons.json | 5 +++++ icons/bat.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/bat.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index b171f87c2476..1e0cbb94ec4b 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1911,6 +1911,11 @@ ] } }, + { + "title": "bat", + "hex": "31369E", + "source": "https://github.com/sharkdp/bat/blob/018a4826211b8b486883b720a5daa65eca2d4604/doc/logo-header.svg" + }, { "title": "Bata", "hex": "DD282E", diff --git a/icons/bat.svg b/icons/bat.svg new file mode 100644 index 000000000000..36aa08237623 --- /dev/null +++ b/icons/bat.svg @@ -0,0 +1 @@ +bat \ No newline at end of file From 832a40707b5c9b0d00059fc0af350e554b5709c5 Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:38:32 -0400 Subject: [PATCH 09/24] Add Malwarebytes icon (#10755) --- _data/simple-icons.json | 5 +++++ icons/malwarebytes.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/malwarebytes.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 1e0cbb94ec4b..ba57f72d21cb 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -9034,6 +9034,11 @@ "source": "https://newsroom.malt.com/media-kit-uk", "guidelines": "https://newsroom.malt.com/media-kit-uk" }, + { + "title": "Malwarebytes", + "hex": "0D3ECC", + "source": "https://www.malwarebytes.com" + }, { "title": "Mamba UI", "hex": "6D28D9", diff --git a/icons/malwarebytes.svg b/icons/malwarebytes.svg new file mode 100644 index 000000000000..6c641af0baa8 --- /dev/null +++ b/icons/malwarebytes.svg @@ -0,0 +1 @@ +Malwarebytes \ No newline at end of file From a0f0ad217c14fa23d5b6deb6e475f8cf1a5847bc Mon Sep 17 00:00:00 2001 From: Reza Mousavi Date: Wed, 3 Apr 2024 11:17:23 +0330 Subject: [PATCH 10/24] Add Rocket icon (#9492) --- _data/simple-icons.json | 5 +++++ icons/rocket.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/rocket.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index ba57f72d21cb..76aa55b89ac4 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -13093,6 +13093,11 @@ "type": "CC-BY-NC-SA-4.0" } }, + { + "title": "Rocket", + "hex": "D33847", + "source": "https://rocket.rs" + }, { "title": "Rocket.Chat", "hex": "F5455C", diff --git a/icons/rocket.svg b/icons/rocket.svg new file mode 100644 index 000000000000..07c30a7d2c07 --- /dev/null +++ b/icons/rocket.svg @@ -0,0 +1 @@ +Rocket \ No newline at end of file From b880dbe5cd30234cd5ca7d0f6c1b29232ed46be7 Mon Sep 17 00:00:00 2001 From: patrik csak Date: Wed, 3 Apr 2024 02:28:31 -0700 Subject: [PATCH 11/24] Update Font Awesome icon (#10759) --- _data/simple-icons.json | 4 ++-- icons/fontawesome.svg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 76aa55b89ac4..e40fc9740621 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -5396,8 +5396,8 @@ }, { "title": "Font Awesome", - "hex": "528DD7", - "source": "https://fontawesome.com/v5.15/icons/font-awesome-flag" + "hex": "538DD7", + "source": "https://fontawesome.com" }, { "title": "FontBase", diff --git a/icons/fontawesome.svg b/icons/fontawesome.svg index 1c3ec6e8daba..18a2dd310c1a 100644 --- a/icons/fontawesome.svg +++ b/icons/fontawesome.svg @@ -1 +1 @@ -Font Awesome \ No newline at end of file +Font Awesome \ No newline at end of file From 420876aad8c0fdb6f4c836a9a0c41e2c62a64f93 Mon Sep 17 00:00:00 2001 From: LitoMore Date: Thu, 4 Apr 2024 10:26:43 +0800 Subject: [PATCH 12/24] Fix docker command (#10764) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fa75c7a96a65..3b2d0b68dac5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ RUN npm install --ignore-scripts --no-audit --no-fund COPY . . -ENTRYPOINT ["npm", "run", "svgo", "--", "/image.svg"] +ENTRYPOINT ["npx", "svgo", "/image.svg"] From ec4aa60b3920e75e7467b611023d2568a292beb4 Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Thu, 4 Apr 2024 07:42:24 -0400 Subject: [PATCH 13/24] Add Anthropic icon (#10756) * Add Anthropic icon * Remove redundant trailing slash from source --- _data/simple-icons.json | 5 +++++ icons/anthropic.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/anthropic.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index e40fc9740621..8136d5d7600b 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1022,6 +1022,11 @@ "hex": "FF7328", "source": "https://www.antena3.com" }, + { + "title": "Anthropic", + "hex": "191919", + "source": "https://www.anthropic.com" + }, { "title": "Anycubic", "hex": "476695", diff --git a/icons/anthropic.svg b/icons/anthropic.svg new file mode 100644 index 000000000000..c917480d3259 --- /dev/null +++ b/icons/anthropic.svg @@ -0,0 +1 @@ +Anthropic \ No newline at end of file From 3fe5165386de2bda068673de4b43f5878993276d Mon Sep 17 00:00:00 2001 From: Josh Yee Date: Thu, 4 Apr 2024 19:47:30 +0800 Subject: [PATCH 14/24] Add tldraw icon (#10703) * add tldraw icon * update hex color * Update _data/simple-icons.json * update hex color --- _data/simple-icons.json | 6 ++++++ icons/tldraw.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 icons/tldraw.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 8136d5d7600b..60b6ed85adc4 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -15535,6 +15535,12 @@ } } }, + { + "title": "tldraw", + "hex": "FAFAFA", + "source": "https://tldraw.dev", + "guidelines": "https://github.com/tldraw/tldraw/blob/main/TRADEMARKS.md" + }, { "title": "tmux", "hex": "1BB91F", diff --git a/icons/tldraw.svg b/icons/tldraw.svg new file mode 100644 index 000000000000..325d2179b064 --- /dev/null +++ b/icons/tldraw.svg @@ -0,0 +1 @@ +tldraw \ No newline at end of file From 43dfb34119ac24d888a286c296177c766de8eb91 Mon Sep 17 00:00:00 2001 From: Teruhisa Fukumoto Date: Thu, 4 Apr 2024 20:52:10 +0900 Subject: [PATCH 15/24] Add ktor (#10488) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added ktor icon * Update _data/simple-icons.json * Fix ktor icon Comment: https://github.com/simple-icons/simple-icons/pull/10488#discussion_r1493768660 * Fixed ktor icon ※ref: https://github.com/simple-icons/simple-icons/pull/10488#discussion_r1515356308 ※ref: https://github.com/simple-icons/simple-icons/pull/10488#discussion_r1515356350 * Fixed ktor icon svg image * Fixed ktor icon svg image ref: https://github.com/simple-icons/simple-icons/pull/10488#discussion_r1528437639 --- _data/simple-icons.json | 6 ++++++ icons/ktor.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 icons/ktor.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 60b6ed85adc4..f0adab3c250d 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -8281,6 +8281,12 @@ "hex": "FF6600", "source": "https://ktm.com" }, + { + "title": "Ktor", + "hex": "087CFA", + "source": "https://www.jetbrains.com/company/brand/#logos-and-icons-product-icons", + "guidelines": "https://www.jetbrains.com/company/brand/#brand-guidelines" + }, { "title": "Kuaishou", "hex": "FF4906", diff --git a/icons/ktor.svg b/icons/ktor.svg new file mode 100644 index 000000000000..41a5070d92dc --- /dev/null +++ b/icons/ktor.svg @@ -0,0 +1 @@ +Ktor \ No newline at end of file From 085b78966c838a9aab7ca5bc0de9620fc076c77f Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Thu, 4 Apr 2024 12:56:58 +0100 Subject: [PATCH 16/24] Adds Qwik icon (#10378) * Adds Qwik icon (##7922) * Update _data/simple-icons.json * Remove trailing newline qwik.svg * Fix ordering * Updates with @EatChangmyeong's Qwik icon * Remove trailing newline from Qwik icon * Update icon * Update source * Remove newline * Redo icon --------- Co-authored-by: uncenter <47499684+uncenter@users.noreply.github.com> --- _data/simple-icons.json | 5 +++++ icons/qwik.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/qwik.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index f0adab3c250d..f2ca451769fe 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -12534,6 +12534,11 @@ "hex": "5C97FF", "source": "https://about.qwant.com" }, + { + "title": "Qwik", + "hex": "AC7EF4", + "source": "https://github.com/BuilderIO/qwik/blob/c88e53d49dc65020899d770338f4e51f3134611e/packages/docs/public/logos/qwik-logo.svg" + }, { "title": "Qwiklabs", "hex": "F5CD0E", diff --git a/icons/qwik.svg b/icons/qwik.svg new file mode 100644 index 000000000000..f0b2ddc8c9e9 --- /dev/null +++ b/icons/qwik.svg @@ -0,0 +1 @@ +Qwik \ No newline at end of file From ecffec11ee2ed967131a86a889807e11c7b18f7d Mon Sep 17 00:00:00 2001 From: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> Date: Thu, 4 Apr 2024 13:03:38 +0100 Subject: [PATCH 17/24] Add BeatStars (#10767) --- _data/simple-icons.json | 6 ++++++ icons/beatstars.svg | 1 + 2 files changed, 7 insertions(+) create mode 100644 icons/beatstars.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index f2ca451769fe..0f070d61959f 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -1953,6 +1953,12 @@ "hex": "E01F3D", "source": "https://www.beatsbydre.com" }, + { + "title": "BeatStars", + "hex": "EB0000", + "source": "https://beatstars.world/brand-guidelines", + "guidelines": "https://beatstars.world/brand-guidelines" + }, { "title": "Behance", "hex": "1769FF", diff --git a/icons/beatstars.svg b/icons/beatstars.svg new file mode 100644 index 000000000000..92bffe4486a3 --- /dev/null +++ b/icons/beatstars.svg @@ -0,0 +1 @@ +BeatStars \ No newline at end of file From c73cde7ba512273944ff55e02a7d4db0f82bfad3 Mon Sep 17 00:00:00 2001 From: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> Date: Thu, 4 Apr 2024 13:13:07 +0100 Subject: [PATCH 18/24] Add Meizu (#10768) --- _data/simple-icons.json | 10 ++++++++++ icons/meizu.svg | 1 + 2 files changed, 11 insertions(+) create mode 100644 icons/meizu.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 0f070d61959f..167806e5537c 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -9322,6 +9322,16 @@ } } }, + { + "title": "Meizu", + "hex": "FF4132", + "source": "https://commons.wikimedia.org/wiki/File:Meizu.svg", + "aliases": { + "loc": { + "zh-CN": "魅族" + } + } + }, { "title": "Mendeley", "hex": "9D1620", diff --git a/icons/meizu.svg b/icons/meizu.svg new file mode 100644 index 000000000000..8f903f6dcc3c --- /dev/null +++ b/icons/meizu.svg @@ -0,0 +1 @@ +Meizu \ No newline at end of file From 79b53050ac2376e4543d838525d1ad017f1f60e5 Mon Sep 17 00:00:00 2001 From: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> Date: Fri, 5 Apr 2024 13:14:24 +0100 Subject: [PATCH 19/24] Add Indian Super League icon (#10770) * Add Indian Super League * Increase precision --- _data/simple-icons.json | 5 +++++ icons/indiansuperleague.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/indiansuperleague.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 167806e5537c..5e856253c8b5 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -7305,6 +7305,11 @@ "hex": "003A9B", "source": "https://indeed.design/resources" }, + { + "title": "Indian Super League", + "hex": "ED2F21", + "source": "https://indiansuperleague.com" + }, { "title": "Indie Hackers", "hex": "0E2439", diff --git a/icons/indiansuperleague.svg b/icons/indiansuperleague.svg new file mode 100644 index 000000000000..1ff340b36abe --- /dev/null +++ b/icons/indiansuperleague.svg @@ -0,0 +1 @@ +Indian Super League \ No newline at end of file From a8737fb7b6aea52243536ea8d5e6347f0926aecb Mon Sep 17 00:00:00 2001 From: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> Date: Fri, 5 Apr 2024 13:24:34 +0100 Subject: [PATCH 20/24] Add Copa Airlines icon (#10771) * Add Copa Airlines * Update source --- _data/simple-icons.json | 5 +++++ icons/copaairlines.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/copaairlines.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 5e856253c8b5..c9b77b43ac6c 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -3498,6 +3498,11 @@ "source": "https://www.coolermaster.com/branding", "guidelines": "https://www.coolermaster.com/branding" }, + { + "title": "Copa Airlines", + "hex": "0032A0", + "source": "https://www.copaair.com" + }, { "title": "Coppel", "hex": "0266AE", diff --git a/icons/copaairlines.svg b/icons/copaairlines.svg new file mode 100644 index 000000000000..4d78014a259b --- /dev/null +++ b/icons/copaairlines.svg @@ -0,0 +1 @@ +Copa Airlines \ No newline at end of file From 18b87f5c3be680b55187218a84cea789aad7a702 Mon Sep 17 00:00:00 2001 From: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> Date: Fri, 5 Apr 2024 14:20:59 +0100 Subject: [PATCH 21/24] Add Stencil icon (#10769) * Add Stencil * Update hex --- _data/simple-icons.json | 5 +++++ icons/stencil.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/stencil.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index c9b77b43ac6c..283e2ad043b9 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -14724,6 +14724,11 @@ "hex": "7D00FF", "source": "https://www.stellar.org/press" }, + { + "title": "Stencil", + "hex": "5530FF", + "source": "https://ionic.io/ionicons" + }, { "title": "Stencyl", "hex": "8E1C04", diff --git a/icons/stencil.svg b/icons/stencil.svg new file mode 100644 index 000000000000..2f7106169832 --- /dev/null +++ b/icons/stencil.svg @@ -0,0 +1 @@ +Stencil \ No newline at end of file From 70a636650da086365b390d31f10029316e91663e Mon Sep 17 00:00:00 2001 From: LitoMore Date: Fri, 5 Apr 2024 21:26:34 +0800 Subject: [PATCH 22/24] Optimize Simple Icons icon (#10765) Co-authored-by: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> --- icons/simpleicons.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/simpleicons.svg b/icons/simpleicons.svg index 1fa7e0fd057e..15a7bbc89f76 100644 --- a/icons/simpleicons.svg +++ b/icons/simpleicons.svg @@ -1 +1 @@ -Simple Icons \ No newline at end of file +Simple Icons \ No newline at end of file From c1bd89ab271c17f477ecde7045448a481e8bc387 Mon Sep 17 00:00:00 2001 From: Peter Noble <15157491+PeterShaggyNoble@users.noreply.github.com> Date: Fri, 5 Apr 2024 20:44:40 +0100 Subject: [PATCH 23/24] Add Pixlr icon (#10777) * Add Pixlr * Update color --- _data/simple-icons.json | 5 +++++ icons/pixlr.svg | 1 + 2 files changed, 6 insertions(+) create mode 100644 icons/pixlr.svg diff --git a/_data/simple-icons.json b/_data/simple-icons.json index 283e2ad043b9..c84676c57f3d 100644 --- a/_data/simple-icons.json +++ b/_data/simple-icons.json @@ -11647,6 +11647,11 @@ "source": "https://policies.pixiv.net/en.html#brand", "guidelines": "https://policies.pixiv.net/en.html#brand" }, + { + "title": "Pixlr", + "hex": "3EBBDF", + "source": "https://pixlr.com" + }, { "title": "pkgsrc", "hex": "FF6600", diff --git a/icons/pixlr.svg b/icons/pixlr.svg new file mode 100644 index 000000000000..04c75b0d0c81 --- /dev/null +++ b/icons/pixlr.svg @@ -0,0 +1 @@ +Pixlr \ No newline at end of file From c5c7c24a8e46237050d451c31b0a05da354ce332 Mon Sep 17 00:00:00 2001 From: "simple-icons[bot]" Date: Sun, 7 Apr 2024 00:26:17 +0000 Subject: [PATCH 24/24] version bump --- package.json | 2 +- slugs.md | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f6e99405d196..af8df65d47cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-icons", - "version": "11.11.0", + "version": "11.12.0", "description": "SVG icons for popular brands https://simpleicons.org", "homepage": "https://simpleicons.org", "keywords": [ diff --git a/slugs.md b/slugs.md index 9050c02f2a7a..e64d0968eaae 100644 --- a/slugs.md +++ b/slugs.md @@ -176,6 +176,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Ant Design` | `antdesign` | | `Anta` | `anta` | | `Antena 3` | `antena3` | +| `Anthropic` | `anthropic` | | `Anycubic` | `anycubic` | | `AnyDesk` | `anydesk` | | `Anytype` | `anytype` | @@ -322,12 +323,14 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Basecamp` | `basecamp` | | `Basic Attention Token` | `basicattentiontoken` | | `Bastyon` | `bastyon` | +| `bat` | `bat` | | `Bata` | `bata` | | `Battle.net` | `battledotnet` | | `Bazel` | `bazel` | | `Beatport` | `beatport` | | `Beats` | `beats` | | `Beats by Dre` | `beatsbydre` | +| `BeatStars` | `beatstars` | | `Behance` | `behance` | | `Beijing Subway` | `beijingsubway` | | `BEM` | `bem` | @@ -612,6 +615,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Convertio` | `convertio` | | `Cookiecutter` | `cookiecutter` | | `Cooler Master` | `coolermaster` | +| `Copa Airlines` | `copaairlines` | | `Coppel` | `coppel` | | `Cora` | `cora` | | `CorelDRAW` | `coreldraw` | @@ -1298,6 +1302,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Imou` | `imou` | | `ImprovMX` | `improvmx` | | `Indeed` | `indeed` | +| `Indian Super League` | `indiansuperleague` | | `Indie Hackers` | `indiehackers` | | `IndiGo` | `indigo` | | `Inertia` | `inertia` | @@ -1468,6 +1473,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Koyeb` | `koyeb` | | `Krita` | `krita` | | `KTM` | `ktm` | +| `Ktor` | `ktor` | | `Kuaishou` | `kuaishou` | | `Kubernetes` | `kubernetes` | | `Kubuntu` | `kubuntu` | @@ -1600,6 +1606,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Make` | `make` | | `MakerBot` | `makerbot` | | `Malt` | `malt` | +| `Malwarebytes` | `malwarebytes` | | `Mamba UI` | `mambaui` | | `MAMP` | `mamp` | | `MAN` | `man` | @@ -1649,6 +1656,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `MEGA` | `mega` | | `Meilisearch` | `meilisearch` | | `Meituan` | `meituan` | +| `Meizu` | `meizu` | | `Mendeley` | `mendeley` | | `MentorCruise` | `mentorcruise` | | `Mercado Pago` | `mercadopago` | @@ -1975,6 +1983,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Paperspace` | `paperspace` | | `Paramount+` | `paramountplus` | | `Parity Substrate` | `paritysubstrate` | +| `Parrot Security` | `parrotsecurity` | | `Parse.ly` | `parsedotly` | | `Passport` | `passport` | | `Pastebin` | `pastebin` | @@ -2042,6 +2051,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Pixabay` | `pixabay` | | `Pixelfed` | `pixelfed` | | `pixiv` | `pixiv` | +| `Pixlr` | `pixlr` | | `pkgsrc` | `pkgsrc` | | `Planet` | `planet` | | `PlanetScale` | `planetscale` | @@ -2202,6 +2212,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Quip` | `quip` | | `Quora` | `quora` | | `Qwant` | `qwant` | +| `Qwik` | `qwik` | | `Qwiklabs` | `qwiklabs` | | `Qzone` | `qzone` | | `R` | `r` | @@ -2304,6 +2315,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Roblox` | `roblox` | | `Roblox Studio` | `robloxstudio` | | `Robot Framework` | `robotframework` | +| `Rocket` | `rocket` | | `Rocket.Chat` | `rocketdotchat` | | `RocksDB` | `rocksdb` | | `Rockstar Games` | `rockstargames` | @@ -2586,6 +2598,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Steemit` | `steemit` | | `Steinberg` | `steinberg` | | `Stellar` | `stellar` | +| `Stencil` | `stencil` | | `Stencyl` | `stencyl` | | `Stimulus` | `stimulus` | | `Stitcher` | `stitcher` | @@ -2740,6 +2753,7 @@ update the script at 'scripts/release/update-slugs-table.js'. | `Tinkercad` | `tinkercad` | | `TinyLetter` | `tinyletter` | | `Tistory` | `tistory` | +| `tldraw` | `tldraw` | | `tmux` | `tmux` | | `Todoist` | `todoist` | | `Toggl` | `toggl` |