-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.21.4, removed GodBridge, fixed hide score log message
- Loading branch information
Showing
11 changed files
with
89 additions
and
145 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,60 +1,60 @@ | ||
plugins { | ||
id "fabric-loom" version "1.7-SNAPSHOT" | ||
} | ||
|
||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_21 | ||
|
||
archivesBaseName = project.archives_base_name | ||
version = project.mod_version | ||
group = project.maven_group | ||
|
||
repositories { | ||
//mavenCentral() | ||
//mavenLocal() | ||
maven { url "https://maven.meteordev.org/releases"} | ||
maven { url "https://maven.meteordev.org/snapshots" } | ||
//maven { url 'https://jitpack.io' } | ||
} | ||
|
||
configurations { | ||
// configuration that holds jars to include in the jar | ||
//extraLibs | ||
} | ||
|
||
dependencies { | ||
// To change the versions see the gradle.properties file | ||
minecraft "com.mojang:minecraft:${project.minecraft_version}" | ||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" | ||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" | ||
|
||
modImplementation("meteordevelopment:meteor-client:${project.meteor_version}-SNAPSHOT") | ||
} | ||
|
||
processResources { | ||
inputs.property "version", project.version | ||
|
||
|
||
filesMatching("fabric.mod.json") { | ||
expand "version": project.version, | ||
"mc_version": project.minecraft_version, | ||
"gh_hash": (System.getenv("GITHUB_SHA") ?: "") | ||
} | ||
} | ||
|
||
jar { | ||
from("LICENSE") { | ||
rename { "${it}_${project.archivesBaseName}"} | ||
} | ||
} | ||
tasks.withType(Jar) { | ||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE | ||
} | ||
|
||
tasks.withType(JavaCompile).configureEach { | ||
it.options.encoding = "UTF-8" | ||
|
||
def targetVersion = 21 | ||
if (JavaVersion.current().isJava9Compatible()) { | ||
it.options.release = targetVersion | ||
} | ||
} | ||
plugins { | ||
id "fabric-loom" version "1.9-SNAPSHOT" | ||
} | ||
|
||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_21 | ||
|
||
archivesBaseName = project.archives_base_name | ||
version = project.mod_version | ||
group = project.maven_group | ||
|
||
repositories { | ||
//mavenCentral() | ||
//mavenLocal() | ||
maven { url "https://maven.meteordev.org/releases"} | ||
maven { url "https://maven.meteordev.org/snapshots" } | ||
//maven { url 'https://jitpack.io' } | ||
} | ||
|
||
configurations { | ||
// configuration that holds jars to include in the jar | ||
//extraLibs | ||
} | ||
|
||
dependencies { | ||
// To change the versions see the gradle.properties file | ||
minecraft "com.mojang:minecraft:${project.minecraft_version}" | ||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" | ||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" | ||
|
||
modImplementation("meteordevelopment:meteor-client:${project.minecraft_version}-SNAPSHOT") | ||
} | ||
|
||
processResources { | ||
inputs.property "version", project.version | ||
|
||
|
||
filesMatching("fabric.mod.json") { | ||
expand "version": project.version, | ||
"mc_version": project.minecraft_version, | ||
"gh_hash": (System.getenv("GITHUB_SHA") ?: "") | ||
} | ||
} | ||
|
||
jar { | ||
from("LICENSE") { | ||
rename { "${it}_${project.archivesBaseName}"} | ||
} | ||
} | ||
tasks.withType(Jar) { | ||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE | ||
} | ||
|
||
tasks.withType(JavaCompile).configureEach { | ||
it.options.encoding = "UTF-8" | ||
|
||
def targetVersion = 21 | ||
if (JavaVersion.current().isJava9Compatible()) { | ||
it.options.release = targetVersion | ||
} | ||
} |
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
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
48 changes: 0 additions & 48 deletions
48
src/main/java/cqb13/NumbyHack/modules/general/GodBridge.java
This file was deleted.
Oops, something went wrong.
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