From 4a7350a0743a3cf5307065ff62a040a588c8eb22 Mon Sep 17 00:00:00 2001 From: Ethan <66741050+EthanDevelops@users.noreply.github.com> Date: Mon, 27 Dec 2021 21:17:31 +0100 Subject: [PATCH 1/2] new icon: polygon (plain, original) (#989) * Added Discord.js Icons * Oops! * Forgot to add aliases. Co-authored-by: David Leal * Change original wordmark to real SVG * Add plain-wordmark * Update devicon.json Co-authored-by: David Leal * Update devicon.json Co-authored-by: David Leal * Apply suggestions from code review * Fixed wordmark * Create polygon-plain.svg * Update polygon-plain.svg * Update polygon-plain.svg * Create polygon-original-wordmark.svg * Delete polygon-original-wordmark.svg * Rename polygon-plain.svg to polygon-original.svg * Create polygon-plain.svg * Update polygon-plain.svg * Update polygon-plain.svg * Update and fix devicon.json * Update devicon.json Co-authored-by: David Leal * Update icons/discordjs/discordjs-original-wordmark.svg Co-authored-by: David Leal * Apply suggestions from code review * Update polygon-plain.svg * Update polygon-plain.svg Co-authored-by: David Leal Co-authored-by: Thomas Bui <43018778+Thomas-Boi@users.noreply.github.com> --- devicon.json | 66 +++++++++++++++++++----------- icons/polygon/polygon-original.svg | 7 ++++ icons/polygon/polygon-plain.svg | 6 +++ 3 files changed, 55 insertions(+), 24 deletions(-) create mode 100644 icons/polygon/polygon-original.svg create mode 100644 icons/polygon/polygon-plain.svg diff --git a/devicon.json b/devicon.json index d9a40c77..6ed756e0 100644 --- a/devicon.json +++ b/devicon.json @@ -1241,8 +1241,7 @@ ] }, "color": "#2a2c3e", - "aliases": [ - ] + "aliases": [] }, { "name": "electron", @@ -3315,6 +3314,47 @@ "color": "#5058A6", "aliases": [] }, + { + "name": "podman", + "tags": [ + "container", + "pods", + "docker" + ], + "versions": { + "svg": [ + "original", + "original-wordmark", + "plain", + "plain-wordmark" + ], + "font": [ + "plain", + "plain-wordmark" + ] + }, + "color": "#872b9e", + "aliases": [] + }, + { + "name": "polygon", + "tags": [ + "ethereum", + "erc20", + "blockchain" + ], + "versions": { + "svg": [ + "original", + "plain" + ], + "font": [ + "plain" + ] + }, + "color": "#38285B", + "aliases": [] + }, { "name": "postgresql", "tags": [ @@ -5156,27 +5196,5 @@ }, "color": "#DC7B2E", "aliases": [] - }, - { - "name": "podman", - "tags": [ - "container", - "pods", - "docker" - ], - "versions": { - "svg": [ - "original", - "original-wordmark", - "plain", - "plain-wordmark" - ], - "font": [ - "plain", - "plain-wordmark" - ] - }, - "color": "#872b9e", - "aliases": [] } ] diff --git a/icons/polygon/polygon-original.svg b/icons/polygon/polygon-original.svg new file mode 100644 index 00000000..d49c56bd --- /dev/null +++ b/icons/polygon/polygon-original.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/polygon/polygon-plain.svg b/icons/polygon/polygon-plain.svg new file mode 100644 index 00000000..5e76e373 --- /dev/null +++ b/icons/polygon/polygon-plain.svg @@ -0,0 +1,6 @@ + + + + + + From 3332e27fd3f5bf648d1791e05bd9982c7ff40f5e Mon Sep 17 00:00:00 2001 From: Thomas Bui <43018778+Thomas-Boi@users.noreply.github.com> Date: Mon, 27 Dec 2021 12:24:44 -0800 Subject: [PATCH 2/2] Upgrade PR and Issue Templates (#986) * Update issue templates * Add pr templates * Update templates * Update pr templates * Update default pr template * Clarify pr closing statement * Apply suggestions from code review Co-authored-by: David Leal * Update .github/PULL_REQUEST_TEMPLATE/new_feature.md Co-authored-by: David Leal Co-authored-by: David Leal --- .github/ISSUE_TEMPLATE/feature_request.yml | 15 ++----- .github/ISSUE_TEMPLATE/icon_request.yml | 2 +- .github/PULL_REQUEST_TEMPLATE/new_feature.md | 13 ++++++ .../PULL_REQUEST_TEMPLATE/new_icon.md | 12 ++---- .../PULL_REQUEST_TEMPLATE/new_feature.md | 24 ----------- .github/pull_request_template.md | 41 ++----------------- 6 files changed, 25 insertions(+), 82 deletions(-) create mode 100644 .github/PULL_REQUEST_TEMPLATE/new_feature.md rename .github/{drafts => }/PULL_REQUEST_TEMPLATE/new_icon.md (82%) delete mode 100644 .github/drafts/PULL_REQUEST_TEMPLATE/new_feature.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index a637b86e..d0815fbe 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -7,23 +7,16 @@ body: id: currentproblem attributes: label: Problem - description: Tell us about the current problem that you face that this feature might help you with. + description: Tell us about the problem. validations: required: true - type: textarea - id: suggestedfeat + id: possiblesolution attributes: - label: Suggested feature - description: Tell us about the feature that might solve the above problem. + label: Possible Solution + description: If you have an idea, please tell us what might solve the above problem. validations: required: true - - type: textarea - id: why - attributes: - label: Why should we have this feature? - description: List any extra benefits, other than solving your problem, that this feature will bring to the repository. If none, leave blank. - validations: - required: false - type: textarea id: extrainformation attributes: diff --git a/.github/ISSUE_TEMPLATE/icon_request.yml b/.github/ISSUE_TEMPLATE/icon_request.yml index 04e3a29f..32637c14 100644 --- a/.github/ISSUE_TEMPLATE/icon_request.yml +++ b/.github/ISSUE_TEMPLATE/icon_request.yml @@ -1,6 +1,6 @@ name: Icon Request description: Requesting a new icon or changes to an existing icon -title: 'Icon request: [NAME]' +title: '[ICON REQUEST]: ' labels: ["request:icon"] body: - type: input diff --git a/.github/PULL_REQUEST_TEMPLATE/new_feature.md b/.github/PULL_REQUEST_TEMPLATE/new_feature.md new file mode 100644 index 00000000..9df58fd5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/new_feature.md @@ -0,0 +1,13 @@ +## Double check these details before you open a PR + + +- [ ] PR does not match another non-stale PR currently opened + +## Features + + +**This PR closes NONE** + + +## Notes + diff --git a/.github/drafts/PULL_REQUEST_TEMPLATE/new_icon.md b/.github/PULL_REQUEST_TEMPLATE/new_icon.md similarity index 82% rename from .github/drafts/PULL_REQUEST_TEMPLATE/new_icon.md rename to .github/PULL_REQUEST_TEMPLATE/new_icon.md index 57f046f7..58e458ef 100644 --- a/.github/drafts/PULL_REQUEST_TEMPLATE/new_icon.md +++ b/.github/PULL_REQUEST_TEMPLATE/new_icon.md @@ -1,12 +1,3 @@ ---- -name: New Icon -about: Add a new icon to the repository. -title: 'new icon: [NAME] (versions)' -labels: 'feature:icon' -assignees: '' - ---- - ## Double check these details before you open a PR @@ -19,5 +10,8 @@ assignees: '' +**This PR closes NONE** + + ## Link to prove your SVG is correct and up-to-date. diff --git a/.github/drafts/PULL_REQUEST_TEMPLATE/new_feature.md b/.github/drafts/PULL_REQUEST_TEMPLATE/new_feature.md deleted file mode 100644 index 2dc712b2..00000000 --- a/.github/drafts/PULL_REQUEST_TEMPLATE/new_feature.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: New Feature -about: Add a new feature to the repository. -title: 'New Feature: [NAME]' -labels: 'enhancement' -assignees: '' - ---- - - -## Double check these details before you open a PR** - - -- [] PR does not match another non-stale PR currently opened -- [] PR name matches the format *New Feature: brief description of feature* - - -## This PR adds/fixes... - - - -## Notes - - diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b7118818..99a2cb90 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,38 +1,5 @@ -# **New icon section** +### Adding a New Icon? +- Add `?quick_pull=1&template=new_icon.md` to the end of your current URL and press `Enter` - - -## Double check these details before you open a PR - - -- [ ] PR does not match another non-stale PR currently opened -- [ ] PR name matches the format *new icon: Icon name (versions separated by comma)*. More details [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#overview) -- [ ] The PR's base is the `develop` branch. -- [ ] Your icons are inside a folder as seen [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#organizational-guidelines) -- [ ] SVG matches the standards laid out [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#svgStandards) -- [ ] A new object is added in the `devicon.json` file as seen [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#-updating-the-deviconjson-) - - - -## Link to prove your SVG is correct and up-to-date - - - ---- -# **New feature section** - - - -## Double check these details before you open a PR - - -- [ ] PR does not match another non-stale PR currently opened -- [ ] PR name matches the format *New Feature: a brief description of feature* - -## This PR adds/fixes - - - -## Notes - - +### Adding a New Feature or fixing a bug? +- Add `?quick_pull=1&template=new_feature.md` to the end of your current URL and press `Enter`. \ No newline at end of file