Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: 8.14.3
gradle-version: 9.3.1
- name: Build TASmod with Gradle
run: gradle build
- name: Upload Test Report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildandupload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: 8.14.3
gradle-version: 9.3.1
- name: Build TASmod with Gradle
run: gradle build
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: 8.14.3
gradle-version: 9.3.1
- name: Spotless Check
run: gradle spotlessCheck
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: 8.14.3
gradle-version: 9.3.1
- name: Setup workspace
run: gradle build -Prelease=true
- name: Upload assets
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ When ingame, hitting <kbd>F6</kbd> will show you options for customising your HU
Author of the original prototype: [tr7zw](https://github.com/tr7zw/MC-TASmod)
Main Mod Author: Scribble

Contributions by: famous1622, Pancake
Contributions by: cittyinthecloud, forester302, Pancake

Initial Tickratechanger: [Guichaguri](https://github.com/Guichaguri/TickrateChanger)
Tickrate 0 idea: [Cubitect](https://github.com/Cubitect/Cubitick)
Expand Down
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
id "fabric-loom" version "${loom_version}"
// legacy looming (loom plugin improvements)
id "legacy-looming" version "${loom_version}"
id "com.palantir.git-version" version "3.1.0"
id "com.diffplug.spotless" version "7.0.3"
id "com.palantir.git-version" version "4.2.0"
id "com.diffplug.spotless" version "8.1.0"
}


Expand All @@ -16,6 +16,10 @@ if(project.release=="false") {
version = project.version+hash
group = project.group

base {
archivesName = project.artifact
}

java {
// compile for java 8
sourceCompatibility = targetCompatibility = 8
Expand Down Expand Up @@ -56,7 +60,7 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

// testing dependencies
testImplementation "org.junit.jupiter:junit-jupiter:5.13.3"
testImplementation "org.junit.jupiter:junit-jupiter:5.14.1"
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
}

Expand All @@ -77,7 +81,6 @@ processResources {

// configure jar file
jar {
archivesBaseName = project.artifact

// pack embedded stuff
from {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx3G

# Fabric properties
minecraft_version=1.12.2
loader_version=0.17.2
loom_version=1.11-SNAPSHOT
loader_version=0.18.4
loom_version=1.14-SNAPSHOT

# Mod properties
mod_name=Tool-Assisted Speedrun Mod
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
5 changes: 1 addition & 4 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "${name}",
"description": "${mod_description}",
"authors": ["Scribble", "Pancake"],
"contributors": ["tr7zw", "cittyinthecloud"],
"contributors": ["tr7zw", "cittyinthecloud", "forester302"],
"contact": {
"homepage": "${mod_url}",
"sources": "${mod_sources}",
Expand Down