From e352b0bd3ef2fec0cb9b244c26c49c5fb97e75e7 Mon Sep 17 00:00:00 2001 From: Mr. Snowy <61592704+MrSn0wy@users.noreply.github.com> Date: Thu, 09 May 2024 13:39:40 +0000 Subject: [PATCH] Added a Changelog --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++-- 2 file(s) changed, 45 insertion(s)(+), 2 deletion(s)(-) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,43 @@ +# Changelog + +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.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +### [Unreleased] + +#### Added +- Added completely server-side translation system (UNLIKE MOJANG'S SYSTEM WHICH IS CLIENT SIDE) +- Added quilt support +- Added CHANGELOG.md + +#### Changed +- Improved command messages and colors +- improved performance by changing the death event to be player specific (not all entities) +- Replaced all loader specific events with Mixins + +#### Removed +- Removed Sources and Javadoc files to improve build speed +- Removed Fabric API dependency + + +### [v1.0.5] + +#### Added +- Added support for NeoForge + +#### Changed +- Changed mappings to Mojang. +- Cleaned up commands code +- Changed build files to support multiple mod loader + + +### [v1.0.2] + +#### Added +- Added project icon +- Added project description + +#### Changed +- Changed the array for tpa to only save the player's uuid (not the whole entity lmao) \ No newline at end of file diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Teleport Commands Teleport Commands Logo -A Minecraft Fabric and NeoForge server-side mod that adds various teleportation related commands, like /home /tpa and /back +A Minecraft server-side mod that adds various teleportation related commands, like /home /tpa and /back ### This mod is still in beta, if there are any problems then let me know! @@ -47,7 +47,7 @@ #### You can create a Translation file so other people can use the mod in their native language 1. Clone the repository 2. Go to `common/src/main/resources/assets/teleport_commands/lang/` -3. Go to [here](https://minecraft.wiki/w/Language) and pick the in-game locale code for the language you want to translate +3. Go [here](https://minecraft.wiki/w/Language) and pick the in-game locale code for the language you want to translate 4. Copy `en_us.toml` and paste it in a new file called `[in-game locale code here].toml` 5. Translate the file 6. Submit a pull request with your translation :D! -- tangled.sh