From 0c1300404068a8aee3f5545198655d4b4802ba89 Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Sun, 28 Feb 2021 10:05:16 +0100 Subject: [PATCH 01/12] Start using new Issue template system --- .github/ISSUE_TEMPLATE/{bug_report.md => bug_report_old.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report.md => bug_report_old.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report_old.md similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to .github/ISSUE_TEMPLATE/bug_report_old.md From a8bcf0e14d771ff56adcbad9eeba50bcf8799866 Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Sun, 28 Feb 2021 10:41:15 +0100 Subject: [PATCH 02/12] Create bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 82 +++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..6ff771a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,82 @@ +name: Bug Report +about: Found a Bug about PlaceholderAPI? Use this template to report it! +body: +- type: markdown + attributes: + value: |- + Thank you for opening a bug report. In order to process the Report efficiently and to also help you with it in the process do we require some specific information from you. + Please make sure to always use the latest Release on Spigot, or the latest Development release from our Jenkins Server. + + Spigot: https://www.spigotmc.org/resources/6245/ + Jenkins: http://ci.extendedclip.com/job/PlaceholderAPI/ + + **DO NOT REPORT ISSUES WITH EXPANSIONS AND/OR PLACEHOLDERS. USE THE APPROPRIATE ISSUE TRACKER FOR THOSE!** + +- type: dropdown + attributes: + label: "Type" + description: "What type of bug do you encounter?" + multiple: false + options: + - Plugin Bug + - API Bug + - Plugin/Server Incompatability + validations: + required: true + +- type: textarea + attributes: + label: "What happens?" + description: "What bug are you encountering? Try to explain it as detailed as possible." + validations: + required: true + +- type: textarea + attributes: + label: "Expected Behaviour" + description: "What behaviour did you expect from PlaceholderAPI?" + validations: + required: true + +- type: textarea + attributes: + label: "Actual Behaviour" + description: "How does PlaceholderAPI behave instead?" + validations: + required: true + +- type: textarea + attributes: + label: "How to Reproduce" + description: |- + List the steps on how to reproduce this Bug. + Post any Code-examples in the `Additional Info` field below when you selected `API Bug`. + placeholder: |- + 1. Do this + 2. ... + 3. Profit! + validations: + required: true + +- type: input + attributes: + label: "`/papi dump` Output" + description: "Paste the output of `/papi dump` in the field below. It includes a lot of useful information for us." + placeholder: "https://paste.helpch.at/dump.log" + validations: + required: true + +- type: input + attributes: + label: "Errors" + description: "Post links to any Stacktraces or Errors PlaceholderAPI printed. We recommend using https://paste.helpch.at, https://paste.gg or any other hastebin/Pastebin-like site." + placeholder: "https://paste.helpch.at/error.log" + validations: + required: false + +- type: markdown + attributes: + value: |- + Add any extra info you think is nessesary for this Bug report. + - If you selected `API Bug` will you need to include code-examples here to reproduce the issue. + - If you selected `Plugin/Server Incompatability` should you include extra Server info such as a Timings or Spark-Report or info about the plugin in question. From b5c70dedcb4c7df546cc5989029d7306ae2b7c1c Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Sun, 28 Feb 2021 10:48:06 +0100 Subject: [PATCH 03/12] Rename feature_request.md to feature_request_old.md --- .../ISSUE_TEMPLATE/{feature_request.md => feature_request_old.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{feature_request.md => feature_request_old.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request_old.md similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request_old.md From d640d801e6407fc849f371b72b9922e4ba6641af Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Sun, 28 Feb 2021 11:00:23 +0100 Subject: [PATCH 04/12] Create feature_request.yml --- .github/ISSUE_TEMPLATE/feature_request.yml | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..94961c7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,53 @@ +name: Feature Request +about: Suggest a new Feature for PlaceholderAPI +body: +- type: markdown + attributes: + value: |- + Thank you for opening a Feature request. + Please make sure you first checked for any existing issue (either open or closed), Discussion or Pull request about your suggestion. + If it doesn't exist, proceed. + + Note that any suggestions towards a specific Expansion should be made on that expansion's repository and not here! +- type: dropdown + attributes: + label: "Type" + description: "What type is your Suggestion? Select all that match." + multiple: true + options: + - New API feature + - New config option + - Minor Code improvement (Won't affect Servers) + - Major Code improvement (Will affect Servers) + validations: + required: true + +- type: textarea + attributes: + label: "Description" + description: |- + Give a detailed explanation about your suggestion and why it would be beneficial for PlaceholderAPI. + Just saying "It's cool!" or "I need it" aren't valid reasons, as it should also benefit other users and not just you. + validations: + required: true + +- type: textarea + attributes: + label: "Code Example" + description: "Do you have any Code Examples that you could show us?" + validations: + required: false + +- type: input + attributes: + label: "Jar file" + description: "If you already have a Jar file with those suggested features, provide it as download link here. Set 'N/A' if you don't have a jar file available." + placeholder: "https://cdn.discordapp.com/..." + validations: + required: true + +- type: markdown + attributes: + value: |- + Add any extra info you think is nessesary for this Feature request. + - When you selected `Major Code improvement (Will affect Servers)` should you mention what will break when people update. From 43a5db7711bab5c403adf333997e86bfc7426ddd Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Mon, 8 Mar 2021 15:44:10 +0100 Subject: [PATCH 05/12] fix unique name --- .github/ISSUE_TEMPLATE/bug_report_old.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report_old.md b/.github/ISSUE_TEMPLATE/bug_report_old.md index c4ab045..93d7f55 100644 --- a/.github/ISSUE_TEMPLATE/bug_report_old.md +++ b/.github/ISSUE_TEMPLATE/bug_report_old.md @@ -1,7 +1,6 @@ --- -name: Bug Report +name: Bug Report (Old) about: Report bugs of PlaceholderAPI with this template - --- -## Bug Report - -### Issue - - - -### Expected behaviour - - - -### Actual behaviour - - - -### How to reproduce - - -1. - -### `/papi dump` output - From 73f55735b424b71ded1a316746f7ee68c50d442d Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Mon, 8 Mar 2021 16:10:43 +0100 Subject: [PATCH 11/12] Delete feature_request_old.md --- .github/ISSUE_TEMPLATE/feature_request_old.md | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request_old.md diff --git a/.github/ISSUE_TEMPLATE/feature_request_old.md b/.github/ISSUE_TEMPLATE/feature_request_old.md deleted file mode 100644 index bac1257..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request_old.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Feature Request (Old) -about: Request a update/change of the PlaceholderAPI-code ---- - - - -## Feature Request - -### Type - - - -- [ ] New function for PlaceholderAPI. -A new function that developers could use. -- [ ] Change to code (Internal). -Changes to code that won't affect the end-user. -- [ ] Change to code (External). -Changes to code that will affect the end-user (breaks stuff). -- [ ] Other: __________ - -### Description - - From a7d92f569f764630c963fbc423d354f409bc9284 Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Mon, 8 Mar 2021 16:12:25 +0100 Subject: [PATCH 12/12] Rename bug_report_new.yml to bug_report.yml --- .github/ISSUE_TEMPLATE/{bug_report_new.yml => bug_report.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report_new.yml => bug_report.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report_new.yml b/.github/ISSUE_TEMPLATE/bug_report.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report_new.yml rename to .github/ISSUE_TEMPLATE/bug_report.yml