Rename class name and fix CHANGELOG dates
This commit is contained in:
parent
0b4a253dcb
commit
779ba9c8b4
11
CHANGELOG
11
CHANGELOG
|
@ -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.1] - 2023-10-25
|
## [0.1.2] - 2024-10-21
|
||||||
|
|
||||||
|
### Изменено
|
||||||
|
|
||||||
|
- **Название мода**:
|
||||||
|
- Переименован мод с `Chatit` на `ChatIT` для согласованности и улучшения брендинга.
|
||||||
|
|
||||||
|
## [0.1.1] - 2024-10-21
|
||||||
|
|
||||||
### Изменено
|
### Изменено
|
||||||
|
|
||||||
|
@ -17,7 +24,7 @@
|
||||||
- **Чистый код**:
|
- **Чистый код**:
|
||||||
- Удалены все комментарии из кода для повышения читаемости и поддерживаемости.
|
- Удалены все комментарии из кода для повышения читаемости и поддерживаемости.
|
||||||
|
|
||||||
## [0.1.0] - 2023-10-25
|
## [0.1.0] - 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.1-BETA
|
mod_version=0.1.2-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
|
||||||
|
|
|
@ -13,13 +13,13 @@ import org.itqop.chatit.utils.Config;
|
||||||
import org.itqop.chatit.utils.PlayerConfigManager;
|
import org.itqop.chatit.utils.PlayerConfigManager;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
|
||||||
@Mod(Chatit.MODID)
|
@Mod(ChatIT.MODID)
|
||||||
public class Chatit {
|
public class ChatIT {
|
||||||
|
|
||||||
public static final String MODID = "chatit";
|
public static final String MODID = "chatit";
|
||||||
private static final Logger LOGGER = LogUtils.getLogger();
|
private static final Logger LOGGER = LogUtils.getLogger();
|
||||||
|
|
||||||
public Chatit() {
|
public ChatIT() {
|
||||||
MinecraftForge.EVENT_BUS.register(this);
|
MinecraftForge.EVENT_BUS.register(this);
|
||||||
MinecraftForge.EVENT_BUS.register(ChatEventHandler.class);
|
MinecraftForge.EVENT_BUS.register(ChatEventHandler.class);
|
||||||
MinecraftForge.EVENT_BUS.register(ChatitCommand.class);
|
MinecraftForge.EVENT_BUS.register(ChatitCommand.class);
|
|
@ -4,9 +4,9 @@ import net.minecraftforge.common.ForgeConfigSpec;
|
||||||
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||||
import net.minecraftforge.fml.common.Mod;
|
import net.minecraftforge.fml.common.Mod;
|
||||||
import net.minecraftforge.fml.event.config.ModConfigEvent;
|
import net.minecraftforge.fml.event.config.ModConfigEvent;
|
||||||
import org.itqop.chatit.Chatit;
|
import org.itqop.chatit.ChatIT;
|
||||||
|
|
||||||
@Mod.EventBusSubscriber(modid = Chatit.MODID, bus = Mod.EventBusSubscriber.Bus.MOD)
|
@Mod.EventBusSubscriber(modid = ChatIT.MODID, bus = Mod.EventBusSubscriber.Bus.MOD)
|
||||||
public class Config {
|
public class Config {
|
||||||
|
|
||||||
private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder();
|
private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder();
|
||||||
|
|
Loading…
Reference in New Issue