From 6850c3b42c0e3919c45011fb4d9e24f839c9a569 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 01:54:47 +0700 Subject: Create pull_request_template.md --- .github/pull_request_template.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/pull_request_template.md (limited to '.github') diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..c1108a81 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +# Pull Request Template + +## Description +Briefly describe the changes this PR introduces. + +## Changes + +### Previous Behavior +*Describe how the code behaved before this change.* + +### Root Cause +*Explain the core reason behind the erroneous/old behavior (e.g., bug, design flaw, missing edge case).* + +### New Behavior +*Describe how the code behaves after this change.* + +### Fix Implementation +*Detail exactly how the issue was resolved (specific code changes, algorithms, logic flows).* + +## Related Issues +- Fixes #[issue-number] +- Related to #[issue-number] -- cgit v1.2.3 From cde94faefa38b7056bb341604b64bfd8d6155509 Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 20:07:49 +0100 Subject: added feature request template --- .github/feature_request.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/feature_request.yaml (limited to '.github') diff --git a/.github/feature_request.yaml b/.github/feature_request.yaml new file mode 100644 index 00000000..39e0b223 --- /dev/null +++ b/.github/feature_request.yaml @@ -0,0 +1,46 @@ +--- +name: 🛠️ Feature Request +description: Suggest an idea to help us improve MinecraftConsoles +title: "[Feature]: " +labels: + - "enhancement" + +body: + - type: markdown + attributes: + value: | + **Thanks :heart: for taking the time to fill out this feature request report!** + We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. + + - type: textarea + attributes: + label: Description + description: | + A clear and concise description of the feature you're interested in. + validations: + required: true + + - type: textarea + attributes: + label: Suggested Solution + description: | + Describe the solution you'd like. A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Alternatives + description: | + Describe alternatives you've considered. + A clear and concise description of any alternative solutions or features you've considered. + validations: + required: false + + - type: textarea + attributes: + label: Additional Context + description: | + Add any other context about the problem here. + validations: + required: false -- cgit v1.2.3 From c23dc98b67e0b280069e56d3344b595771023dc2 Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 20:10:49 +0100 Subject: added bug report template --- .github/bug_report.yaml | 72 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/bug_report.yaml (limited to '.github') diff --git a/.github/bug_report.yaml b/.github/bug_report.yaml new file mode 100644 index 00000000..7f3c2033 --- /dev/null +++ b/.github/bug_report.yaml @@ -0,0 +1,72 @@ +name: "🐛 Bug Report" +description: "Report a bug to help us improve MinecraftConsoles" +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + **Thanks for taking the time to report a bug!** + Please ensure you are using the latest version of the repository and have followed the build instructions in the README. + - type: textarea + id: description + attributes: + label: Description + description: "A clear and concise description of what the bug is." + placeholder: "Describe what happened..." + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: "How can we reproduce this bug?" + placeholder: | + 1. Open MinecraftConsoles.sln + 2. Set configuration to ... + 3. Run the project + 4. Do ... + validations: + required: true + - type: textarea + id: expected-actual + attributes: + label: Expected vs. Actual Behavior + description: "What did you expect to happen, and what actually happened?" + validations: + required: true + - type: dropdown + id: build-config + attributes: + label: Build Configuration + description: "Which configuration were you using?" + options: + - Debug + - Release + validations: + required: true + - type: dropdown + id: target-platform + attributes: + label: Target Platform + description: "Which platform were you targeting?" + options: + - Windows64 + - Other (please specify in context) + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment Details + description: "e.g., Visual Studio version, Windows version, Hardware specs." + placeholder: "Visual Studio 2022 v17.x, Windows 11..." + validations: + required: false + - type: textarea + id: context + attributes: + label: Additional Context + description: "Add any other context, screenshots, or logs here." + validations: + required: false -- cgit v1.2.3 From 15e952d4cbf5dde988890eb9ee28189e17441e6a Mon Sep 17 00:00:00 2001 From: NΞVΛR Date: Sun, 1 Mar 2026 20:20:20 +0100 Subject: added config for issues --- .github/ISSUE_TEMPLATE/bug_report.yaml | 72 +++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yaml | 46 ++++++++++++++++++ .github/bug_report.yaml | 72 ----------------------------- .github/feature_request.yaml | 46 ------------------ 5 files changed, 119 insertions(+), 118 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml delete mode 100644 .github/bug_report.yaml delete mode 100644 .github/feature_request.yaml (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..7f3c2033 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,72 @@ +name: "🐛 Bug Report" +description: "Report a bug to help us improve MinecraftConsoles" +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + **Thanks for taking the time to report a bug!** + Please ensure you are using the latest version of the repository and have followed the build instructions in the README. + - type: textarea + id: description + attributes: + label: Description + description: "A clear and concise description of what the bug is." + placeholder: "Describe what happened..." + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: "How can we reproduce this bug?" + placeholder: | + 1. Open MinecraftConsoles.sln + 2. Set configuration to ... + 3. Run the project + 4. Do ... + validations: + required: true + - type: textarea + id: expected-actual + attributes: + label: Expected vs. Actual Behavior + description: "What did you expect to happen, and what actually happened?" + validations: + required: true + - type: dropdown + id: build-config + attributes: + label: Build Configuration + description: "Which configuration were you using?" + options: + - Debug + - Release + validations: + required: true + - type: dropdown + id: target-platform + attributes: + label: Target Platform + description: "Which platform were you targeting?" + options: + - Windows64 + - Other (please specify in context) + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment Details + description: "e.g., Visual Studio version, Windows version, Hardware specs." + placeholder: "Visual Studio 2022 v17.x, Windows 11..." + validations: + required: false + - type: textarea + id: context + attributes: + label: Additional Context + description: "Add any other context, screenshots, or logs here." + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..3ba13e0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000..39e0b223 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,46 @@ +--- +name: 🛠️ Feature Request +description: Suggest an idea to help us improve MinecraftConsoles +title: "[Feature]: " +labels: + - "enhancement" + +body: + - type: markdown + attributes: + value: | + **Thanks :heart: for taking the time to fill out this feature request report!** + We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. + + - type: textarea + attributes: + label: Description + description: | + A clear and concise description of the feature you're interested in. + validations: + required: true + + - type: textarea + attributes: + label: Suggested Solution + description: | + Describe the solution you'd like. A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Alternatives + description: | + Describe alternatives you've considered. + A clear and concise description of any alternative solutions or features you've considered. + validations: + required: false + + - type: textarea + attributes: + label: Additional Context + description: | + Add any other context about the problem here. + validations: + required: false diff --git a/.github/bug_report.yaml b/.github/bug_report.yaml deleted file mode 100644 index 7f3c2033..00000000 --- a/.github/bug_report.yaml +++ /dev/null @@ -1,72 +0,0 @@ -name: "🐛 Bug Report" -description: "Report a bug to help us improve MinecraftConsoles" -title: "[Bug]: " -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - **Thanks for taking the time to report a bug!** - Please ensure you are using the latest version of the repository and have followed the build instructions in the README. - - type: textarea - id: description - attributes: - label: Description - description: "A clear and concise description of what the bug is." - placeholder: "Describe what happened..." - validations: - required: true - - type: textarea - id: reproduction - attributes: - label: Steps to Reproduce - description: "How can we reproduce this bug?" - placeholder: | - 1. Open MinecraftConsoles.sln - 2. Set configuration to ... - 3. Run the project - 4. Do ... - validations: - required: true - - type: textarea - id: expected-actual - attributes: - label: Expected vs. Actual Behavior - description: "What did you expect to happen, and what actually happened?" - validations: - required: true - - type: dropdown - id: build-config - attributes: - label: Build Configuration - description: "Which configuration were you using?" - options: - - Debug - - Release - validations: - required: true - - type: dropdown - id: target-platform - attributes: - label: Target Platform - description: "Which platform were you targeting?" - options: - - Windows64 - - Other (please specify in context) - validations: - required: true - - type: textarea - id: environment - attributes: - label: Environment Details - description: "e.g., Visual Studio version, Windows version, Hardware specs." - placeholder: "Visual Studio 2022 v17.x, Windows 11..." - validations: - required: false - - type: textarea - id: context - attributes: - label: Additional Context - description: "Add any other context, screenshots, or logs here." - validations: - required: false diff --git a/.github/feature_request.yaml b/.github/feature_request.yaml deleted file mode 100644 index 39e0b223..00000000 --- a/.github/feature_request.yaml +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: 🛠️ Feature Request -description: Suggest an idea to help us improve MinecraftConsoles -title: "[Feature]: " -labels: - - "enhancement" - -body: - - type: markdown - attributes: - value: | - **Thanks :heart: for taking the time to fill out this feature request report!** - We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. - - - type: textarea - attributes: - label: Description - description: | - A clear and concise description of the feature you're interested in. - validations: - required: true - - - type: textarea - attributes: - label: Suggested Solution - description: | - Describe the solution you'd like. A clear and concise description of what you want to happen. - validations: - required: true - - - type: textarea - attributes: - label: Alternatives - description: | - Describe alternatives you've considered. - A clear and concise description of any alternative solutions or features you've considered. - validations: - required: false - - - type: textarea - attributes: - label: Additional Context - description: | - Add any other context about the problem here. - validations: - required: false -- cgit v1.2.3 From 47924e86fdff70e4da451e404e2f4dd712ff77d6 Mon Sep 17 00:00:00 2001 From: NΞVΛR <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:54:18 +0100 Subject: Rename bug report template to remove emoji --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 7f3c2033..a1ba3073 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -1,4 +1,4 @@ -name: "🐛 Bug Report" +name: "Bug Report" description: "Report a bug to help us improve MinecraftConsoles" title: "[Bug]: " labels: ["bug"] -- cgit v1.2.3 From dc1e90fdc0654c22a2d3e2b3777ca5e2f5e0cfcf Mon Sep 17 00:00:00 2001 From: NΞVΛR <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:54:42 +0100 Subject: Removed emoji from feature request name for consistency. --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 39e0b223..9cf309d5 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,5 +1,5 @@ --- -name: 🛠️ Feature Request +name: Feature Request description: Suggest an idea to help us improve MinecraftConsoles title: "[Feature]: " labels: -- cgit v1.2.3 From c48120dd3533e795cd541e4b3e4af1c518eb55d6 Mon Sep 17 00:00:00 2001 From: NΞVΛR <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:55:00 +0100 Subject: Remove heart emoji from feature request template --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 9cf309d5..20a1aa73 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -9,7 +9,7 @@ body: - type: markdown attributes: value: | - **Thanks :heart: for taking the time to fill out this feature request report!** + **Thanks for taking the time to fill out this feature request report!** We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. - type: textarea -- cgit v1.2.3 From f580a6a603b79ad9c308ba08b8c1af6102de0c32 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 03:02:18 +0700 Subject: Remove the word `template` from PR template Looks like people don't change this field so the word `template` is not needed here. --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c1108a81..0dfcc8e2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,4 @@ -# Pull Request Template +# Pull Request ## Description Briefly describe the changes this PR introduces. -- cgit v1.2.3 From 180ad193eefffe068b61572b4cf44daa0fc52622 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 03:52:55 +0700 Subject: Revert "Added bug, and feature template for issues" --- .github/ISSUE_TEMPLATE/bug_report.yaml | 72 ----------------------------- .github/ISSUE_TEMPLATE/config.yml | 1 - .github/ISSUE_TEMPLATE/feature_request.yaml | 46 ------------------ 3 files changed, 119 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml deleted file mode 100644 index a1ba3073..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ /dev/null @@ -1,72 +0,0 @@ -name: "Bug Report" -description: "Report a bug to help us improve MinecraftConsoles" -title: "[Bug]: " -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - **Thanks for taking the time to report a bug!** - Please ensure you are using the latest version of the repository and have followed the build instructions in the README. - - type: textarea - id: description - attributes: - label: Description - description: "A clear and concise description of what the bug is." - placeholder: "Describe what happened..." - validations: - required: true - - type: textarea - id: reproduction - attributes: - label: Steps to Reproduce - description: "How can we reproduce this bug?" - placeholder: | - 1. Open MinecraftConsoles.sln - 2. Set configuration to ... - 3. Run the project - 4. Do ... - validations: - required: true - - type: textarea - id: expected-actual - attributes: - label: Expected vs. Actual Behavior - description: "What did you expect to happen, and what actually happened?" - validations: - required: true - - type: dropdown - id: build-config - attributes: - label: Build Configuration - description: "Which configuration were you using?" - options: - - Debug - - Release - validations: - required: true - - type: dropdown - id: target-platform - attributes: - label: Target Platform - description: "Which platform were you targeting?" - options: - - Windows64 - - Other (please specify in context) - validations: - required: true - - type: textarea - id: environment - attributes: - label: Environment Details - description: "e.g., Visual Studio version, Windows version, Hardware specs." - placeholder: "Visual Studio 2022 v17.x, Windows 11..." - validations: - required: false - - type: textarea - id: context - attributes: - label: Additional Context - description: "Add any other context, screenshots, or logs here." - validations: - required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3ba13e0c..00000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml deleted file mode 100644 index 20a1aa73..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Feature Request -description: Suggest an idea to help us improve MinecraftConsoles -title: "[Feature]: " -labels: - - "enhancement" - -body: - - type: markdown - attributes: - value: | - **Thanks for taking the time to fill out this feature request report!** - We kindly ask that you search to see if an issue [already exists](https://github.com/smartcmd/MinecraftConsoles/issues) for your feature. - - - type: textarea - attributes: - label: Description - description: | - A clear and concise description of the feature you're interested in. - validations: - required: true - - - type: textarea - attributes: - label: Suggested Solution - description: | - Describe the solution you'd like. A clear and concise description of what you want to happen. - validations: - required: true - - - type: textarea - attributes: - label: Alternatives - description: | - Describe alternatives you've considered. - A clear and concise description of any alternative solutions or features you've considered. - validations: - required: false - - - type: textarea - attributes: - label: Additional Context - description: | - Add any other context about the problem here. - validations: - required: false -- cgit v1.2.3 From a4dd1c4bc7010c0a4067496b0abf182ced84daff Mon Sep 17 00:00:00 2001 From: WushR00M <106882106+WushR00M@users.noreply.github.com> Date: Sun, 1 Mar 2026 14:08:52 -0700 Subject: Add files via upload --- .github/IMG_8725.png | Bin 0 -> 975385 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/IMG_8725.png (limited to '.github') diff --git a/.github/IMG_8725.png b/.github/IMG_8725.png new file mode 100644 index 00000000..4f958dc4 Binary files /dev/null and b/.github/IMG_8725.png differ -- cgit v1.2.3