From cde94faefa38b7056bb341604b64bfd8d6155509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=CE=9EV=CE=9BR?= Date: Sun, 1 Mar 2026 20:07:49 +0100 Subject: [PATCH 1/8] added feature request template --- .github/feature_request.yaml | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/feature_request.yaml 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 From c23dc98b67e0b280069e56d3344b595771023dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=CE=9EV=CE=9BR?= Date: Sun, 1 Mar 2026 20:10:49 +0100 Subject: [PATCH 2/8] added bug report template --- .github/bug_report.yaml | 72 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/bug_report.yaml 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 From 15e952d4cbf5dde988890eb9ee28189e17441e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=CE=9EV=CE=9BR?= Date: Sun, 1 Mar 2026 20:20:20 +0100 Subject: [PATCH 3/8] added config for issues --- .github/{ => ISSUE_TEMPLATE}/bug_report.yaml | 0 .github/ISSUE_TEMPLATE/config.yml | 1 + .github/{ => ISSUE_TEMPLATE}/feature_request.yaml | 0 3 files changed, 1 insertion(+) rename .github/{ => ISSUE_TEMPLATE}/bug_report.yaml (100%) create mode 100644 .github/ISSUE_TEMPLATE/config.yml rename .github/{ => ISSUE_TEMPLATE}/feature_request.yaml (100%) diff --git a/.github/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml similarity index 100% rename from .github/bug_report.yaml rename to .github/ISSUE_TEMPLATE/bug_report.yaml 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/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml similarity index 100% rename from .github/feature_request.yaml rename to .github/ISSUE_TEMPLATE/feature_request.yaml From 9691561693c3171262a9ec9a0e4e8663949c3fa0 Mon Sep 17 00:00:00 2001 From: Slenderman Date: Sun, 1 Mar 2026 14:33:30 -0500 Subject: [PATCH 4/8] Remove need for Durango folder --- Minecraft.Client/Common/Audio/SoundEngine.cpp | 2 +- Minecraft.Client/Minecraft.Client.vcxproj | 7 ++++--- Minecraft.Client/Minecraft.Client.vcxproj.filters | 3 --- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Minecraft.Client/Common/Audio/SoundEngine.cpp b/Minecraft.Client/Common/Audio/SoundEngine.cpp index 4eaf7df7..1906b1aa 100644 --- a/Minecraft.Client/Common/Audio/SoundEngine.cpp +++ b/Minecraft.Client/Common/Audio/SoundEngine.cpp @@ -56,7 +56,7 @@ void SoundEngine::playMusicTick() {}; #else #ifdef _WINDOWS64 -char SoundEngine::m_szSoundPath[]={"Durango\\Sound\\"}; +char SoundEngine::m_szSoundPath[]={"Windows64Media\\Sound\\"}; char SoundEngine::m_szMusicPath[]={"music\\"}; char SoundEngine::m_szRedistName[]={"redist64"}; #elif defined _DURANGO diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index a6aeac2e..5de7c839 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1441,13 +1441,14 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU Copying sound assets to output directory - xcopy /q /y /i /s /e "$(ProjectDir)Durango\Sound" "$(OutDir)Durango\Sound" -xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" + xcopy /q /y /i /s /e "$(ProjectDir)music" "$(OutDir)music" xcopy /q /y /i /s /e "$(ProjectDir)Windows64\GameHDD" "$(OutDir)Windows64\GameHDD" xcopy /q /y /i /s /e "$(ProjectDir)Common\Media" "$(OutDir)Common\Media" xcopy /q /y /i /s /e "$(ProjectDir)Common\res" "$(OutDir)Common\res" xcopy /q /y /i /s /e "$(ProjectDir)Common\Trial" "$(OutDir)Common\Trial" -xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" +xcopy /q /y /i /s /e "$(ProjectDir)Common\Tutorial" "$(OutDir)Common\Tutorial" +xcopy /q /y /i /s /e "$(ProjectDir)DurangoMedia" "$(OutDir)Windows64Media" +xcopy /q /y /i /s /e "$(ProjectDir)Windows64Media" "$(OutDir)Windows64Media" $(ProjectDir)xbox\xex-dev.xml diff --git a/Minecraft.Client/Minecraft.Client.vcxproj.filters b/Minecraft.Client/Minecraft.Client.vcxproj.filters index 7731385c..451dec44 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj.filters +++ b/Minecraft.Client/Minecraft.Client.vcxproj.filters @@ -6014,9 +6014,6 @@ PS3\SPUObjFiles\ContentPackage - - - From 47924e86fdff70e4da451e404e2f4dd712ff77d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=CE=9EV=CE=9BR?= <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:54:18 +0100 Subject: [PATCH 5/8] Rename bug report template to remove emoji --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"] From dc1e90fdc0654c22a2d3e2b3777ca5e2f5e0cfcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=CE=9EV=CE=9BR?= <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:54:42 +0100 Subject: [PATCH 6/8] Removed emoji from feature request name for consistency. --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: From c48120dd3533e795cd541e4b3e4af1c518eb55d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=CE=9EV=CE=9BR?= <63956787+NEVARLeVrai@users.noreply.github.com> Date: Sun, 1 Mar 2026 20:55:00 +0100 Subject: [PATCH 7/8] Remove heart emoji from feature request template --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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: [PATCH 8/8] 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(-) 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.