From 2979abf8d4d6233056d2f23f7d0fc54071a2cc6f Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 12:07:54 -0400 Subject: [PATCH 1/7] added Debug Nigthly Build --- .github/debug-nighly.yml | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/debug-nighly.yml diff --git a/.github/debug-nighly.yml b/.github/debug-nighly.yml new file mode 100644 index 0000000000..cac3b257e9 --- /dev/null +++ b/.github/debug-nighly.yml @@ -0,0 +1,47 @@ +name: Nightly Debug Release + +on: + workflow_dispatch: + push: + branches: + - 'main' + paths-ignore: + - '.gitignore' + - '*.md' + - '.github/*.md' + +jobs: + build: + name: Build Windows64 + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Setup msbuild + uses: Microsoft/setup-msbuild@v2 + + - name: Build + run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Debug /p:Platform="Windows64" + + - name: Zip Build + run: 7z a -r LCEWindows64.zip ./x64/Release/* + + - name: Update release + uses: andelf/nightly-release@main + + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: debug-nightly + name: Debug Nightly Release + body: | + Requires at least Windows 7 and DirectX 11 compatible GPU to run. Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF /fp:precise`. + + # 🚨 First time here? 🚨 + If you've never downloaded the game before, you need to download `LCEWindows64.zip` and extract it to the folder where you'd like to keep the game. The other files are included in this `.zip` file! + files: | + LCEWindows64.zip + ./x64/Release/Minecraft.Client.exe + ./x64/Release/Minecraft.Client.pdb From 5658d84783f786131e58794cf7327b4ad5a02a1b Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 12:16:48 -0400 Subject: [PATCH 2/7] Update README with Nightly Debug link and clarifications Added a link for the new Nightly Debug build and updated the macOS/Linux support note for clarity. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 707b1e6d7c..fffb6715d4 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ The current goal of MinecraftConsoles is to be a multi-platform base for further See our our [Contributor's Guide](./CONTRIBUTING.md) for more information on the goals of this project. ## Download -Windows users can download our [Nightly Build](https://github.com/smartcmd/MinecraftConsoles/releases/tag/nightly)! Simply download the `.zip` file and extract it to a folder where you'd like to keep the game. You can set your username in `username.txt` (you'll have to make this file) +Windows users can download our [Nightly Build](https://github.com/smartcmd/MinecraftConsoles/releases/tag/nightly) or our new [Nightly Debug](https://github.com/smartcmd/MinecraftConsoles/releases/tag/debug-nightly) for the debug option enabled! Simply download the `.zip` file and extract it to a folder where you'd like to keep the game. You can set your username in `username.txt` (you'll have to make this file) or If you're looking for Dedicated Server software, download its [Nightly Build here](https://github.com/smartcmd/MinecraftConsoles/releases/tag/nightly-dedicated-server). Similar instructions to the client more or less, though see further down in this README for more info on that. ## Platform Support - **Windows**: Supported for building and running the project -- **macOS / Linux**: The Windows nightly build will run through Wine or CrossOver based on community reports, but this is unofficial and not currently tested by the maintainers when pushing updates +- **macOS / Linux**: The Windows nightly build will run through Wine or CrossOverbased on community reports, but this is unofficial and not currently tested by the maintainers when pushing updates - **Android**: The Windows nightly build does run but has stability / frametime pacing issues frequently reported - **iOS**: No current support - **All Consoles**: Console support remains in the code, but maintainers are not currently verifying console functionality / porting UI Changes to the console builds at this time. From 796a5549006bf47895080bdc0a207cea58a7c077 Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 12:42:22 -0400 Subject: [PATCH 3/7] Fix a typo in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fffb6715d4..33dbd22cf9 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you're looking for Dedicated Server software, download its [Nightly Build her ## Platform Support - **Windows**: Supported for building and running the project -- **macOS / Linux**: The Windows nightly build will run through Wine or CrossOverbased on community reports, but this is unofficial and not currently tested by the maintainers when pushing updates +- **macOS / Linux**: The Windows nightly build will run through Wine or CrossOver based on community reports, but this is unofficial and not currently tested by the maintainers when pushing updates - **Android**: The Windows nightly build does run but has stability / frametime pacing issues frequently reported - **iOS**: No current support - **All Consoles**: Console support remains in the code, but maintainers are not currently verifying console functionality / porting UI Changes to the console builds at this time. From dff00cc95a2f4bab23fddbf81ae8659edb28c76f Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 13:03:14 -0400 Subject: [PATCH 4/7] Fix the work flow to generate debug instead of release --- .github/debug-nighly.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/debug-nighly.yml b/.github/debug-nighly.yml index cac3b257e9..3113764217 100644 --- a/.github/debug-nighly.yml +++ b/.github/debug-nighly.yml @@ -26,7 +26,7 @@ jobs: run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Debug /p:Platform="Windows64" - name: Zip Build - run: 7z a -r LCEWindows64.zip ./x64/Release/* + run: 7z a -r LCEWindows64.zip ./x64/Debug/* - name: Update release uses: andelf/nightly-release@main @@ -43,5 +43,5 @@ jobs: If you've never downloaded the game before, you need to download `LCEWindows64.zip` and extract it to the folder where you'd like to keep the game. The other files are included in this `.zip` file! files: | LCEWindows64.zip - ./x64/Release/Minecraft.Client.exe - ./x64/Release/Minecraft.Client.pdb + ./x64/Debug/Minecraft.Client.exe + ./x64/Debug/Minecraft.Client.pdb From abfaa0855505d4202cb5eb81dcf8a55fd96b5a64 Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 13:12:31 -0400 Subject: [PATCH 5/7] Move the workflow file to the correct folder --- .github/{ => workflow}/debug-nighly.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflow}/debug-nighly.yml (100%) diff --git a/.github/debug-nighly.yml b/.github/workflow/debug-nighly.yml similarity index 100% rename from .github/debug-nighly.yml rename to .github/workflow/debug-nighly.yml From cc550cac1c503e565f05d7675b238c86e0ca3b3d Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:23:10 -0400 Subject: [PATCH 6/7] Rename debug-nighly.yml to debug-nighly.yml --- .github/{workflow => worflows}/debug-nighly.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{workflow => worflows}/debug-nighly.yml (100%) diff --git a/.github/workflow/debug-nighly.yml b/.github/worflows/debug-nighly.yml similarity index 100% rename from .github/workflow/debug-nighly.yml rename to .github/worflows/debug-nighly.yml From 450f2ec6955c1d0ba6fa520b9887e0eee9650192 Mon Sep 17 00:00:00 2001 From: Xgui4-Dev <134389196+xgui4@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:34:24 -0400 Subject: [PATCH 7/7] Better Clarification for the debug nightly build in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33dbd22cf9..1e85efab6c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The current goal of MinecraftConsoles is to be a multi-platform base for further See our our [Contributor's Guide](./CONTRIBUTING.md) for more information on the goals of this project. ## Download -Windows users can download our [Nightly Build](https://github.com/smartcmd/MinecraftConsoles/releases/tag/nightly) or our new [Nightly Debug](https://github.com/smartcmd/MinecraftConsoles/releases/tag/debug-nightly) for the debug option enabled! Simply download the `.zip` file and extract it to a folder where you'd like to keep the game. You can set your username in `username.txt` (you'll have to make this file) or +Windows users can download our [Nightly Build](https://github.com/smartcmd/MinecraftConsoles/releases/tag/nightly) or our [Nightly Debug](https://github.com/smartcmd/MinecraftConsoles/releases/tag/debug-nightly) for the debug option enabled! Simply download the `.zip` file and extract it to a folder where you'd like to keep the game. You can set your username in `username.txt` (you'll have to make this file) or If you're looking for Dedicated Server software, download its [Nightly Build here](https://github.com/smartcmd/MinecraftConsoles/releases/tag/nightly-dedicated-server). Similar instructions to the client more or less, though see further down in this README for more info on that.