diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f66d4c..7b7bfbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ 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). +and this project kind of adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +### [1.3.4] +- Updated Italian translations (Thanks to [Jump-333](https://github.com/Jump-333)!) ### [1.3.3] - Fixed commands not registering when running `/reload`. diff --git a/common/src/main/java/dev/mrsnowy/teleport_commands/Constants.java b/common/src/main/java/dev/mrsnowy/teleport_commands/Constants.java index 5b07e1f..0be1bf0 100644 --- a/common/src/main/java/dev/mrsnowy/teleport_commands/Constants.java +++ b/common/src/main/java/dev/mrsnowy/teleport_commands/Constants.java @@ -6,7 +6,7 @@ import org.slf4j.LoggerFactory; public class Constants { public static final String MOD_ID = "teleport_commands"; public static final String MOD_NAME = "Teleport Commands"; - public static final String VERSION = "1.3.3"; + public static final String VERSION = "1.3.4"; public static final Logger LOGGER = LoggerFactory.getLogger(MOD_NAME); } diff --git a/common/src/main/resources/assets/teleport_commands/lang/translations.md b/common/src/main/resources/assets/teleport_commands/lang/translations.md index ed08145..e06942f 100644 --- a/common/src/main/resources/assets/teleport_commands/lang/translations.md +++ b/common/src/main/resources/assets/teleport_commands/lang/translations.md @@ -12,19 +12,19 @@ Things to know: 2. Go [here](https://minecraft.wiki/w/Language) and pick the in-game locale code for the language you want to translate. (for example: `en_us`) 3. Copy `en_us.json` and paste it in a new file called `[in-game locale code here].json` (in the same directory!) 4. Translate the values in the file (`"commands.teleport_commands.XX.XX": "Translate this!",`) -5. Submit a pull request with your translation :D! ([Guide here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request#creating-the-pull-request)) +5. Submit a pull request with your translation on my repository :D! ([Guide here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request#creating-the-pull-request)) #### Want to improve an existing translation? 1. Make a fork of the mod ([Guide here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo#forking-a-repository)) 2. Modify the existing translation in the mod -3. Submit a pull request with your changes :D! ([Guide here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request#creating-the-pull-request)) +3. Submit a pull request with your changes on my repository :D! ([Guide here](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request#creating-the-pull-request)) #### Credits - English (en_us): [Mr. Snowy](https://github.com/MrSn0wy) - Dutch (nl_nl): [Mr. Snowy](https://github.com/MrSn0wy) - Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637) -- Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu) +- Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu), [Jump-333](https://github.com/Jump-333) - Russian (ru_ru): [rfin0](https://github.com/rfin0) - Traditional Chinese - Taiwan (zw_tw): [hugoalh](https://github.com/hugoalh), [Dicecan](https://github.com/Dicecan) - Traditional Chinese - Hong Kong (zh_hk): [Dicecan](https://github.com/Dicecan) diff --git a/flake.nix b/flake.nix index 3900ed0..ea84758 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Flake for developing snowstorm!"; + description = "Flake for developing TeleportCommands!"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; diff --git a/gradle.properties b/gradle.properties index 2ba43c3..ff7372d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ # Every field you add must be added to the root build.gradle expandProps map. # Project -version=1.3.3 +version=1.3.4 group=dev.mrsnowy.teleport_commands java_version=21 diff --git a/justfile b/justfile index f7e92ce..fc07239 100644 --- a/justfile +++ b/justfile @@ -1,3 +1,3 @@ ide: - idea-ultimate ./ + nohup idea-ultimate ./ >/dev/null 2>&1 &