From 40953f857e5c30b22e414d883fd0516248f4a794 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 19:41:30 +0700 Subject: Update pull_request_template.md --- .github/pull_request_template.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 0dfcc8e2..9d71e5c1 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,7 +1,9 @@ # Pull Request +## Note: IF YOUR PR CHANGES THE GAME BEHAVIOR VISIBLY, REMEMBER TO ATTACH A GAMEPLAY FOOTAGE (or at least a screenshot) OF YOU *ACTUALLY* PLAYING THE GAME WITH YOUR CHANGES. Untested PRs will are *NOT* welcome. + ## Description -Briefly describe the changes this PR introduces. +Briefly describe the changes this PR introduces. ## Changes -- cgit v1.2.3 From 73ceca7fc21ba1c3355072995ba331d51c0634ab Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Mon, 2 Mar 2026 19:43:22 +0700 Subject: Fix typo in pull_request_template.md --- .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 9d71e5c1..9578777c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,6 @@ # Pull Request -## Note: IF YOUR PR CHANGES THE GAME BEHAVIOR VISIBLY, REMEMBER TO ATTACH A GAMEPLAY FOOTAGE (or at least a screenshot) OF YOU *ACTUALLY* PLAYING THE GAME WITH YOUR CHANGES. Untested PRs will are *NOT* welcome. +## Note: IF YOUR PR CHANGES THE GAME BEHAVIOR VISIBLY, REMEMBER TO ATTACH A GAMEPLAY FOOTAGE (or at least a screenshot) OF YOU *ACTUALLY* PLAYING THE GAME WITH YOUR CHANGES. Untested PRs are *NOT* welcome. Please don't forget to describe what did you do in each commit in your PR. ## Description Briefly describe the changes this PR introduces. -- cgit v1.2.3 From 2189da6f924c76938a54052429ae0f27613a6b4c Mon Sep 17 00:00:00 2001 From: Twig6943 <119701717+Twig6943@users.noreply.github.com> Date: Tue, 3 Mar 2026 02:01:00 +0300 Subject: Make ci skip on non important stuff - give tutorial image a name (#202) --- .github/IMG_8725.png | Bin 975385 -> 0 bytes .github/TutorialWorld.png | Bin 0 -> 975385 bytes .github/workflows/nightly.yml | 3 +++ README.md | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) delete mode 100644 .github/IMG_8725.png create mode 100644 .github/TutorialWorld.png (limited to '.github') diff --git a/.github/IMG_8725.png b/.github/IMG_8725.png deleted file mode 100644 index 4f958dc4..00000000 Binary files a/.github/IMG_8725.png and /dev/null differ diff --git a/.github/TutorialWorld.png b/.github/TutorialWorld.png new file mode 100644 index 00000000..4f958dc4 Binary files /dev/null and b/.github/TutorialWorld.png differ diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 00f18f53..0affa845 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -5,6 +5,9 @@ on: push: branches: - 'main' + paths-ignore: + - '.gitignore' + - '*.md' jobs: build: diff --git a/README.md b/README.md index 92aa2d7d..b24ef159 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Discord](https://img.shields.io/badge/Discord-Join%20Server-5865F2?logo=discord&logoColor=white)](https://discord.gg/5CSzhc9t) -![Tutorial World](.github/IMG_8725.png) +![Tutorial World](.github/TutorialWorld.png) ## Introduction -- cgit v1.2.3 From c1ec83aedc9b946b60a7c250983af876b2dccb2b Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:59:47 +0700 Subject: Add nightly.yml release description Compiler information mostly --- .github/workflows/nightly.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0affa845..df01b57a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,4 +35,5 @@ jobs: with: tag_name: nightly name: Nightly Release - files: LCEWindows64.zip \ No newline at end of file + body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF`. (So far the floating point model is `/fp:strict` to avoid undefined behavior before we refactor for performance). Requires at least Windows 7 and DirectX 11 compatible GPU to run. + files: LCEWindows64.zip -- cgit v1.2.3 From a3095a705089145587835346378d9051e1d5db45 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:07:37 +0700 Subject: Ship updated binary alongside with the whole archive in nightly builds Now ship both the entire .zip archive and the separate .exe binary updated on each commit. --- .github/workflows/nightly.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index df01b57a..b4830a6d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,5 +35,7 @@ jobs: with: tag_name: nightly name: Nightly Release - body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF`. (So far the floating point model is `/fp:strict` to avoid undefined behavior before we refactor for performance). Requires at least Windows 7 and DirectX 11 compatible GPU to run. - files: LCEWindows64.zip + body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF /fp:precise`. Requires at least Windows 7 and DirectX 11 compatible GPU to run. + files: | + LCEWindows64.zip + ./x64/Release/Minecraft.Client.exe -- cgit v1.2.3 From b44d29b2ff6742af5223582960518c5ea948748f Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:18:57 +0700 Subject: Ship the .pdb file in nightly builds too --- .github/workflows/nightly.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b4830a6d..872834c3 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,7 +35,8 @@ jobs: with: tag_name: nightly name: Nightly Release - body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF /fp:precise`. Requires at least Windows 7 and DirectX 11 compatible GPU to run. + 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`. files: | LCEWindows64.zip ./x64/Release/Minecraft.Client.exe + ./x64/Release/Minecraft.Client.pdb -- cgit v1.2.3 From 942ef7e99fdd49b3b72251eed7fd12f1de288866 Mon Sep 17 00:00:00 2001 From: rtm516 Date: Tue, 3 Mar 2026 18:17:33 +0000 Subject: Tidy up PR template --- .github/pull_request_template.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to '.github') diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 9578777c..a1c3e74a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,23 +1,23 @@ -# Pull Request - -## Note: IF YOUR PR CHANGES THE GAME BEHAVIOR VISIBLY, REMEMBER TO ATTACH A GAMEPLAY FOOTAGE (or at least a screenshot) OF YOU *ACTUALLY* PLAYING THE GAME WITH YOUR CHANGES. Untested PRs are *NOT* welcome. Please don't forget to describe what did you do in each commit in your PR. + ## 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] -- cgit v1.2.3 From 9b5348113c696107cfa6620aae5b4b241adf6a2e Mon Sep 17 00:00:00 2001 From: rtm516 Date: Tue, 3 Mar 2026 18:20:14 +0000 Subject: Don't build when PR template is updated --- .github/workflows/nightly.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 872834c3..4ef1274d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -8,6 +8,7 @@ on: paths-ignore: - '.gitignore' - '*.md' + - '.github/*.md' jobs: build: -- cgit v1.2.3