A Minecraft server-side mod that adds various teleportation related commands
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

V1.3.4 - Updated Italian translations (Thanks to [Jump-333](https://github.com/Jump-333)!)

MrSnowy d0c14d0e 11b879d0

+11 -8
+4 -1
CHANGELOG.md
··· 2 2 All notable changes to this project will be documented in this file. 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 5 - and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 + and this project kind of adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 + 7 + ### [1.3.4] 8 + - Updated Italian translations (Thanks to [Jump-333](https://github.com/Jump-333)!) 6 9 7 10 ### [1.3.3] 8 11 - Fixed commands not registering when running `/reload`.
+1 -1
common/src/main/java/dev/mrsnowy/teleport_commands/Constants.java
··· 6 6 public class Constants { 7 7 public static final String MOD_ID = "teleport_commands"; 8 8 public static final String MOD_NAME = "Teleport Commands"; 9 - public static final String VERSION = "1.3.3"; 9 + public static final String VERSION = "1.3.4"; 10 10 11 11 public static final Logger LOGGER = LoggerFactory.getLogger(MOD_NAME); 12 12 }
+3 -3
common/src/main/resources/assets/teleport_commands/lang/translations.md
··· 12 12 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`) 13 13 3. Copy `en_us.json` and paste it in a new file called `[in-game locale code here].json` (in the same directory!) 14 14 4. Translate the values in the file (`"commands.teleport_commands.XX.XX": "Translate this!",`) 15 - 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)) 15 + 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)) 16 16 17 17 #### Want to improve an existing translation? 18 18 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)) 19 19 2. Modify the existing translation in the mod 20 - 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)) 20 + 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)) 21 21 22 22 23 23 #### Credits 24 24 - English (en_us): [Mr. Snowy](https://github.com/MrSn0wy) 25 25 - Dutch (nl_nl): [Mr. Snowy](https://github.com/MrSn0wy) 26 26 - Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637) 27 - - Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu) 27 + - Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu), [Jump-333](https://github.com/Jump-333) 28 28 - Russian (ru_ru): [rfin0](https://github.com/rfin0) 29 29 - Traditional Chinese - Taiwan (zw_tw): [hugoalh](https://github.com/hugoalh), [Dicecan](https://github.com/Dicecan) 30 30 - Traditional Chinese - Hong Kong (zh_hk): [Dicecan](https://github.com/Dicecan)
+1 -1
flake.nix
··· 1 1 { 2 - description = "Flake for developing snowstorm!"; 2 + description = "Flake for developing TeleportCommands!"; 3 3 4 4 inputs = { 5 5 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+1 -1
gradle.properties
··· 2 2 # Every field you add must be added to the root build.gradle expandProps map. 3 3 4 4 # Project 5 - version=1.3.3 5 + version=1.3.4 6 6 group=dev.mrsnowy.teleport_commands 7 7 java_version=21 8 8
+1 -1
justfile
··· 1 1 2 2 ide: 3 - idea-ultimate ./ 3 + nohup idea-ultimate ./ >/dev/null 2>&1 &