diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md
index a87a474d..316cfc2f 100644
--- a/.github/ISSUE_TEMPLATE/bug.md
+++ b/.github/ISSUE_TEMPLATE/bug.md
@@ -11,11 +11,11 @@ assignees: ''
Describe this bug with all information you have... How can it be reproduced? Do you have a crash log? What have you done
before the bug occurred? What did you expect? Do you have screenshots?
-LabyMod version: `3` `4`
+LabyMod version: `4`
Minecraft version: `1.12.2`
-Addon version: `2.4.0`
+Addon version: `2.4.1`
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0fe4d159..dac33ddb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -2,9 +2,14 @@ name: Build LabyAddon
on:
push:
- branches: [ "develop" ]
+ branches:
+ - 'develop'
+ - 'hotfix/**'
pull_request:
- branches: [ "main", "develop" ]
+ branches:
+ - 'main'
+ - 'develop'
+ - 'hotfix/**'
workflow_dispatch:
jobs:
diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml
index 8ab1575f..d24babbf 100644
--- a/.github/workflows/wiki.yml
+++ b/.github/workflows/wiki.yml
@@ -2,9 +2,14 @@ name: Build Wiki
on:
push:
- branches: [ "develop" ]
+ branches:
+ - 'develop'
+ - 'hotfix/**'
pull_request:
- branches: [ "main", "develop" ]
+ branches:
+ - 'main'
+ - 'develop'
+ - 'hotfix/**'
workflow_dispatch:
jobs:
diff --git a/build.gradle.kts b/build.gradle.kts
index 2e35f636..7ec8c46e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -5,7 +5,7 @@ plugins {
}
group = "com.rettichlp.unicacityaddon"
-version = "2.4.0"
+version = "2.4.1"
java.toolchain.languageVersion.set(JavaLanguageVersion.of(17))
@@ -17,7 +17,7 @@ labyMod {
author = "RettichLP & Dimiikou"
description = "UnicacityAddon is a LabyMod addon written for the Minecraft server Unicacity and provides specialized, nice-to-have features and utilities for everyday gameplay."
minecraftVersion = "1.12.2<*"
- version = System.getenv().getOrDefault("VERSION", "2.4.0")
+ version = System.getenv().getOrDefault("VERSION", "2.4.1")
}
minecraft {
diff --git a/core/src/main/java/com/rettichlp/unicacityaddon/base/services/UtilService.java b/core/src/main/java/com/rettichlp/unicacityaddon/base/services/UtilService.java
index af2eab36..26a88b28 100644
--- a/core/src/main/java/com/rettichlp/unicacityaddon/base/services/UtilService.java
+++ b/core/src/main/java/com/rettichlp/unicacityaddon/base/services/UtilService.java
@@ -53,7 +53,7 @@ public UtilService(UnicacityAddon unicacityAddon) {
@SuppressWarnings("SameReturnValue")
public String version() {
- return "2.4.0";
+ return "2.4.1";
}
public boolean isUnicacity() {