-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
266 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
- only limit fabric.mod.json Minecraft requirement for versions of Minecraft that are too old | ||
- remove old mixinsquared import | ||
- add support for 1.21.2 | ||
- update kotlin and klf to 2.0.21 | ||
- do not require yacl anymore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
import dev.kikugie.stonecutter.StonecutterSettings | ||
|
||
rootProject.name = "telekinesis" | ||
|
||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
maven("https://maven.fabricmc.net/") | ||
maven("https://server.bbkr.space/artifactory/libs-release/") | ||
maven("https://maven.kikugie.dev/releases") | ||
maven("https://maven.kikugie.dev/snapshots") | ||
} | ||
} | ||
|
||
plugins { | ||
id("dev.kikugie.stonecutter") version "0.4" | ||
id("dev.kikugie.stonecutter") version "0.5-beta.3" | ||
} | ||
|
||
buildscript { | ||
repositories { mavenCentral() } | ||
dependencies { | ||
classpath("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0-RC") | ||
classpath("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3") | ||
} | ||
} | ||
|
||
extensions.configure<StonecutterSettings> { | ||
stonecutter { | ||
kotlinController = true | ||
centralScript = "build.gradle.kts" | ||
shared { | ||
versions("1.20.1", "1.20.4", "1.20.6", "1.21") | ||
versions("1.20.1", "1.20.4", "1.20.6", "1.21", "1.21.2") | ||
vcsVersion = "1.21" | ||
} | ||
create(rootProject) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
src/main/java/dev/nyon/telekinesis/mixins/ChestBoatMixin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
src/main/java/dev/nyon/telekinesis/mixins/MinecartTNTMixin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.