[PR #28] [MERGED] Dev #30

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

📋 Pull Request Information

Original PR: https://github.com/BreizhHardware/CipaUtils/pull/28
Author: @BreizhHardware
Created: 9/18/2025
Status: Merged
Merged: 9/18/2025
Merged by: @BreizhHardware

Base: mainHead: dev


📝 Commits (10+)

  • 5dbee8d docs: Add Git flow branching model explanation to README.md
  • 225028f feat: Add toggle command for death message and improve grave item recovery
  • d276eb9 Merge pull request #1 from BreizhHardware/feature/auto-grave-recover
  • d81d4f1 feat: Restrict waystone access to the same world for owners and public waystones
  • 5816229 feat: Enhance release workflow by adding release notes generation and setting release name
  • aabd7c7 refactor: Improve comments for clarity and consistency across the codebase
  • 15392cc Merge pull request #2 from BreizhHardware/feature/hide-not-available-waystone
  • 6b46118 Update src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java
  • 620e3d7 Update src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java
  • 39d4498 Update src/main/java/bzh/breizhhardware/cipautils/grave/ToggleDeathMsgCommand.java

📊 Changes

12 files changed (+254 additions, -89 deletions)

View changed files

📝 .github/workflows/release.yml (+67 -18)
📝 .gitignore (+3 -1)
📝 README.md (+0 -0)
📝 src/main/java/bzh/breizhhardware/cipautils/Main.java (+27 -20)
📝 src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java (+78 -9)
src/main/java/bzh/breizhhardware/cipautils/grave/ToggleDeathMsgCommand.java (+32 -0)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/Waystone.java (+1 -1)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneGUI.java (+10 -9)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneListener.java (+18 -17)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneManager.java (+8 -4)
📝 src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneRecipe.java (+3 -2)
📝 src/main/resources/plugin.yml (+7 -8)

📄 Description

No description provided


🔄 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/28 **Author:** [@BreizhHardware](https://github.com/BreizhHardware) **Created:** 9/18/2025 **Status:** ✅ Merged **Merged:** 9/18/2025 **Merged by:** [@BreizhHardware](https://github.com/BreizhHardware) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`5dbee8d`](https://github.com/BreizhHardware/CipaUtils/commit/5dbee8d8d9f071769aa00d00d69e3b99081a777a) docs: Add Git flow branching model explanation to README.md - [`225028f`](https://github.com/BreizhHardware/CipaUtils/commit/225028f279f4d5e238da325dc8f89bb890b501dd) feat: Add toggle command for death message and improve grave item recovery - [`d276eb9`](https://github.com/BreizhHardware/CipaUtils/commit/d276eb9d60d2c2a05de49b0f4c250d04f291277b) Merge pull request #1 from BreizhHardware/feature/auto-grave-recover - [`d81d4f1`](https://github.com/BreizhHardware/CipaUtils/commit/d81d4f1278a0396c7b50c60cc36447078860f4fc) feat: Restrict waystone access to the same world for owners and public waystones - [`5816229`](https://github.com/BreizhHardware/CipaUtils/commit/58162291b82cde342b694082a9e021e325ee2cd1) feat: Enhance release workflow by adding release notes generation and setting release name - [`aabd7c7`](https://github.com/BreizhHardware/CipaUtils/commit/aabd7c760e1a9281a1245c3f9223483d014a7bb7) refactor: Improve comments for clarity and consistency across the codebase - [`15392cc`](https://github.com/BreizhHardware/CipaUtils/commit/15392cc2e9990f4bee365cc309490af04eb182a2) Merge pull request #2 from BreizhHardware/feature/hide-not-available-waystone - [`6b46118`](https://github.com/BreizhHardware/CipaUtils/commit/6b46118505e58793dbad62040f748fb875d8b97d) Update src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java - [`620e3d7`](https://github.com/BreizhHardware/CipaUtils/commit/620e3d74a41f901801cb9de9ed910e5aa1412025) Update src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java - [`39d4498`](https://github.com/BreizhHardware/CipaUtils/commit/39d44987a274204b78339b54f6bb538ac0ecb103) Update src/main/java/bzh/breizhhardware/cipautils/grave/ToggleDeathMsgCommand.java ### 📊 Changes **12 files changed** (+254 additions, -89 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+67 -18) 📝 `.gitignore` (+3 -1) 📝 `README.md` (+0 -0) 📝 `src/main/java/bzh/breizhhardware/cipautils/Main.java` (+27 -20) 📝 `src/main/java/bzh/breizhhardware/cipautils/grave/GraveListener.java` (+78 -9) ➕ `src/main/java/bzh/breizhhardware/cipautils/grave/ToggleDeathMsgCommand.java` (+32 -0) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/Waystone.java` (+1 -1) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneGUI.java` (+10 -9) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneListener.java` (+18 -17) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneManager.java` (+8 -4) 📝 `src/main/java/bzh/breizhhardware/cipautils/waystone/WaystoneRecipe.java` (+3 -2) 📝 `src/main/resources/plugin.yml` (+7 -8) </details> ### 📄 Description _No description provided_ --- <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:13 +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#30
No description provided.