···1212 matrix:
1313 # Use these Java versions
1414 java:
1515- - 17 # Currently min for minecraft
1515+ - 21 # Currently min for minecraft
1616 runs-on: ubuntu-22.04
1717 steps:
1818 - name: checkout repository
+4-1
CHANGELOG.md
···55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7788+### [v1.1.1]
99+- Added support for 1.21
1010+- Changed Java version to `21`
1111+812913### [v1.1.0]
1014···3842- Replaced `Player_UUID` in the storage json to `UUID`
3943- Changed Death location coords in the storage json from `double` to `int`
4044- Changed Home coords in the storage json from `double` to `int`
4141--
42454346### [v1.0.5]
4447
+2-2
README.md
···2233A Minecraft server-side mod that adds various teleportation related commands, like /home /tpa and /back
4455-Here is the [Changelog](CHANGELOG.md)
55+Here is the [Changelog](https://github.com/MrSn0wy/TeleportCommands/blob/main/CHANGELOG.md)
6677#### Currently available commands:
88···3232- [ ] `/spawn <dimension>` - Teleports you to your spawnpoint in a dimension, defaults to your current dimension
33333434#### Improvements:
3535-- [ ] Create a config to add any delays and disable commands, also add commands for operators in game
3535+- [ ] Create a config to add any delays and disable commands, with commands for operators in game
3636- [ ] Add a perm system
3737- [x] Json Storage automatic updater & cleaner
3838- [x] Modify /back to check if the location is safe and automatically choose a nearby location that is safe
+5-5
gradle.properties
···44# Project
55version=1.1.0
66group=dev.mrsnowy.teleport_commands
77-java_version=17
77+java_version=21
8899# Common
1010-minecraft_version=1.20.4
1010+minecraft_version=1.21
1111mod_name=Teleport Commands
1212mod_author=Mr. Snowy
1313mod_id=teleport_commands
1414license=MIT
1515credits=Mr. Snowy
1616description=A server-side mod that adds various teleportation related commands.
1717-minecraft_version_range=[1.20.4, 1.21]
1717+minecraft_version_range=[1.21]
18181919# Fabric
2020-fabric_loader_version=0.15.7
2020+fabric_loader_version=0.15.11
2121#fabric_api=0.97.0+1.20.4
2222fabric_loom=1.6-SNAPSHOT
2323···282829293030# NeoForge
3131-neoforge_version=20.4.234
3131+neoforge_version=21.0.0-beta
3232neoforge_loader_version_range=[2,)
33333434# Gradle
+1-1
neoforge/build.gradle
···11plugins {
22 id 'multiloader-loader'
33- id 'net.neoforged.gradle.userdev' version '7.0.107'
33+ id 'net.neoforged.gradle.userdev' version '7.0.142'
44}
5566// Automatically enable neoforge AccessTransformers if the file exists