[PR #41] [MERGED] Dev #41

Closed
opened 2026-05-06 16:05:16 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/BreizhHardware/CipaUtils/pull/41
Author: @BreizhHardware
Created: 10/21/2025
Status: Merged
Merged: 10/21/2025
Merged by: @BreizhHardware

Base: mainHead: dev


📝 Commits (10+)

  • f0b2009 Merge pull request #29 from BreizhHardware/main
  • 99e5ec4 feat: Add custom recipe for light block using torch
  • 13d73b4 refactor: Extract constants for light block recipe key and quantity
  • 7d5577d feat: Add script to bump plugin version
  • 0949cb3 refactor: Move custom recipe logic to RecipeManager and remove CustomRecipe class
  • ce560e8 refactor: Simplify recipe registration by consolidating waystone logic into RecipeManager and removing WaystoneRecipe class
  • 0760cde Merge pull request #30 from BreizhHardware/feature/light-block-craft
  • b0f566a feat: prevent barrel destruction and movement when graves exist
  • 7b735e2 feat: add cipautils command for bug reporting and help
  • 0fceece docs: update pull request template to include destination branch check

📊 Changes

27 files changed (+1137 additions, -553 deletions)

View changed files

📝 .github/pull_request_template.md (+3 -8)
📝 .github/workflows/build-check.yml (+4 -2)
📝 .github/workflows/release.yml (+7 -4)
📝 .gitignore (+5 -1)
📝 README.md (+0 -0)
build.gradle (+39 -0)
bump-version.sh (+28 -0)
gradle/wrapper/gradle-wrapper.jar (+0 -0)
gradle/wrapper/gradle-wrapper.properties (+7 -0)
gradlew (+248 -0)
gradlew.bat (+93 -0)
pom.xml (+0 -39)
settings.gradle (+2 -0)
📝 src/main/java/bzh/breizhhardware/cipautils/Main.java (+55 -193)
src/main/java/bzh/breizhhardware/cipautils/commands/NoMoreSpawnProtectCommand.java (+20 -0)
src/main/java/bzh/breizhhardware/cipautils/commands/WaystoneCommand.java (+211 -0)
src/main/java/bzh/breizhhardware/cipautils/customRecipe/RecipeManager.java (+86 -0)
📝 src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java (+129 -4)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/Waystone.java (+10 -0)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneGUI.java (+46 -37)

...and 7 more files

📄 Description

Description

Please briefly describe the changes introduced by this Pull Request.

Checklist

  • I have bumped the version in all required files (pom.xml, plugin.yml, start-test-server.bat, start-test-server.sh) (mandatory for a PR from dev to main)
  • I have tested the changes locally
  • I have updated the documentation if needed

Type of change

  • Bug fix
  • New feature
  • Refactoring
  • Other (please specify)

Screenshots (if relevant)


IMPORTANT:
For a Pull Request from dev to main, make sure you have bumped the version in all of the following files: pom.xml, plugin.yml, start-test-server.bat, and start-test-server.sh.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BreizhHardware/CipaUtils/pull/41 **Author:** [@BreizhHardware](https://github.com/BreizhHardware) **Created:** 10/21/2025 **Status:** ✅ Merged **Merged:** 10/21/2025 **Merged by:** [@BreizhHardware](https://github.com/BreizhHardware) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f0b2009`](https://github.com/BreizhHardware/CipaUtils/commit/f0b2009913a53f422914552281f2813068e100ed) Merge pull request #29 from BreizhHardware/main - [`99e5ec4`](https://github.com/BreizhHardware/CipaUtils/commit/99e5ec4b3af4217e8fc124e0ad40e8c9baf6dac5) feat: Add custom recipe for light block using torch - [`13d73b4`](https://github.com/BreizhHardware/CipaUtils/commit/13d73b446b404c1ed071be12a931495b95e5a96a) refactor: Extract constants for light block recipe key and quantity - [`7d5577d`](https://github.com/BreizhHardware/CipaUtils/commit/7d5577df309fcaae4ecae1311d4caf71c7105d67) feat: Add script to bump plugin version - [`0949cb3`](https://github.com/BreizhHardware/CipaUtils/commit/0949cb361509694ad9fbd6ff621bc71704b529c3) refactor: Move custom recipe logic to RecipeManager and remove CustomRecipe class - [`ce560e8`](https://github.com/BreizhHardware/CipaUtils/commit/ce560e85a03df43dcbfbbc08846e597ed937a0e6) refactor: Simplify recipe registration by consolidating waystone logic into RecipeManager and removing WaystoneRecipe class - [`0760cde`](https://github.com/BreizhHardware/CipaUtils/commit/0760cde08acffa55b6b66bc5dc69fa55d8d88bfc) Merge pull request #30 from BreizhHardware/feature/light-block-craft - [`b0f566a`](https://github.com/BreizhHardware/CipaUtils/commit/b0f566a5bdd3e45ffdcb2913e81a32a620a457ff) feat: prevent barrel destruction and movement when graves exist - [`7b735e2`](https://github.com/BreizhHardware/CipaUtils/commit/7b735e2c28949fc272d33d5f29c19855658a853f) feat: add cipautils command for bug reporting and help - [`0fceece`](https://github.com/BreizhHardware/CipaUtils/commit/0fceecee98b030247c9e5bcacf3febef8936165e) docs: update pull request template to include destination branch check ### 📊 Changes **27 files changed** (+1137 additions, -553 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+3 -8) 📝 `.github/workflows/build-check.yml` (+4 -2) 📝 `.github/workflows/release.yml` (+7 -4) 📝 `.gitignore` (+5 -1) 📝 `README.md` (+0 -0) ➕ `build.gradle` (+39 -0) ➕ `bump-version.sh` (+28 -0) ➕ `gradle/wrapper/gradle-wrapper.jar` (+0 -0) ➕ `gradle/wrapper/gradle-wrapper.properties` (+7 -0) ➕ `gradlew` (+248 -0) ➕ `gradlew.bat` (+93 -0) ➖ `pom.xml` (+0 -39) ➕ `settings.gradle` (+2 -0) 📝 `src/main/java/bzh/breizhhardware/cipautils/Main.java` (+55 -193) ➕ `src/main/java/bzh/breizhhardware/cipautils/commands/NoMoreSpawnProtectCommand.java` (+20 -0) ➕ `src/main/java/bzh/breizhhardware/cipautils/commands/WaystoneCommand.java` (+211 -0) ➕ `src/main/java/bzh/breizhhardware/cipautils/customRecipe/RecipeManager.java` (+86 -0) 📝 `src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java` (+129 -4) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/Waystone.java` (+10 -0) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneGUI.java` (+46 -37) _...and 7 more files_ </details> ### 📄 Description ## Description Please briefly describe the changes introduced by this Pull Request. ## Checklist - [x] I have bumped the version in all required files (`pom.xml`, `plugin.yml`, `start-test-server.bat`, `start-test-server.sh`) (mandatory for a PR from `dev` to `main`) - [x] I have tested the changes locally - [x] I have updated the documentation if needed ## Type of change - [ ] Bug fix - [x] New feature - [ ] Refactoring - [ ] Other (please specify) ## Related issues <!-- Add any related issues or tickets here --> ## Screenshots (if relevant) <!-- Add screenshots here to illustrate your changes --> --- > **IMPORTANT:** > For a Pull Request from `dev` to `main`, make sure you have bumped the version in all of the following files: `pom.xml`, `plugin.yml`, `start-test-server.bat`, and `start-test-server.sh`. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 16:05:16 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
BreizhHardware/CipaUtils#41
No description provided.