chore(release): v0.1.5
### Fixed - Local Chat Issue: - Resolved bugs affecting the functionality of the local chat.
This commit is contained in:
parent
5de9139c34
commit
dd248095d6
|
@ -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/).
|
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
|
### Added
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,14 @@
|
||||||
|
|
||||||
Формат основан на [Keep a Changelog](https://keepachangelog.com/ru/1.0.0/), и этот проект придерживается [Семантического Версионирования](https://semver.org/lang/ru/).
|
Формат основан на [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
|
||||||
|
|
||||||
### Добавлено
|
### Добавлено
|
||||||
|
|
||||||
|
|
|
@ -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.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=All Rights Reserved
|
mod_license=All Rights Reserved
|
||||||
# The mod version. See https://semver.org/
|
# 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.
|
# 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.
|
# This should match the base package used for the mod sources.
|
||||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
|
|
|
@ -64,6 +64,9 @@ public class ChatEventHandler {
|
||||||
MutableComponent errorComponent = createErrorMessage(Config.messageLocal);
|
MutableComponent errorComponent = createErrorMessage(Config.messageLocal);
|
||||||
sender.sendSystemMessage(errorComponent);
|
sender.sendSystemMessage(errorComponent);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
sender.sendSystemMessage(chatComponent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue