From dd248095d69c7ab26845500c5b818e814ae34ef4 Mon Sep 17 00:00:00 2001 From: itqop Date: Mon, 21 Oct 2024 19:05:06 +0300 Subject: [PATCH] chore(release): v0.1.5 ### Fixed - Local Chat Issue: - Resolved bugs affecting the functionality of the local chat. --- CHANGELOG.md | 9 ++++++++- CHANGELOG.ru.md | 9 ++++++++- gradle.properties | 2 +- .../java/org/itqop/chatit/handlers/ChatEventHandler.java | 3 +++ 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5bb84d..f99ebe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/). -## [0.1.4] - 2024-10-28 +## [0.1.5] - 2024-10-21 + +### Fixed + +- **Local Chat Issue**: + - Resolved bugs affecting the functionality of the local chat. + +## [0.1.4] - 2024-10-21 ### Added diff --git a/CHANGELOG.ru.md b/CHANGELOG.ru.md index 1823ab6..a11faf2 100644 --- a/CHANGELOG.ru.md +++ b/CHANGELOG.ru.md @@ -4,7 +4,14 @@ Формат основан на [Keep a Changelog](https://keepachangelog.com/ru/1.0.0/), и этот проект придерживается [Семантического Версионирования](https://semver.org/lang/ru/). -## [0.1.4] - 2024-10-28 +## [0.1.5] - 2024-10-21 + +### Исправлено + +- **Проблема с локальным чатом**: + - Исправлены ошибки, влияющие на работу локального чата. + +## [0.1.4] - 2024-10-21 ### Добавлено diff --git a/gradle.properties b/gradle.properties index 35ae6d4..102e4d3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ mod_name=ChatIT # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=All Rights Reserved # The mod version. See https://semver.org/ -mod_version=0.1.4-BETA +mod_version=0.1.5-BETA # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/org/itqop/chatit/handlers/ChatEventHandler.java b/src/main/java/org/itqop/chatit/handlers/ChatEventHandler.java index 9fe60bc..c9213ae 100644 --- a/src/main/java/org/itqop/chatit/handlers/ChatEventHandler.java +++ b/src/main/java/org/itqop/chatit/handlers/ChatEventHandler.java @@ -64,6 +64,9 @@ public class ChatEventHandler { MutableComponent errorComponent = createErrorMessage(Config.messageLocal); sender.sendSystemMessage(errorComponent); } + else { + sender.sendSystemMessage(chatComponent); + } } }); }