Skip to content

Commit

Permalink
update to 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Boxadactle committed Aug 18, 2024
1 parent 6cfae58 commit f5ded73
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changes
- Backport to 1.20.2
- Now compiled with the correct java version
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class CoordinatesDisplay {

public static final String MOD_ID = "coordinatesdisplay";

public static final String VERSION = "10.1.0";
public static final String VERSION = "10.1.1";

public static final String VERSION_STRING = MOD_NAME + " v" + VERSION;

Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ unifiedPublishing {
modrinth {
token = modrinthToken
id = "3mW8PdUo"
version = "${rootProject.mod_version}-${project.name}"
version = "${rootProject.mod_version}-fabric"
}
}
}
Expand Down
8 changes: 7 additions & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ unifiedPublishing {
releaseType = rootProject.release_type
gameVersions = Arrays.asList(rootProject.game_versions.split(","))
gameLoaders = [ "forge" ]
relations {
it.depends {
it.curseforge = "boxlib"
it.modrinth = "boxlib"
}
}

mainPublication tasks.remapJar

Expand All @@ -81,7 +87,7 @@ unifiedPublishing {
modrinth {
token = modrinthToken
id = rootProject.project_id_modrinth
version = "${rootProject.mod_version}-${project.name}"
version = "${rootProject.mod_version}-forge"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2G
org.gradle.parallel=true

# Mod properties
mod_version = 10.1.0
mod_version = 10.1.1
maven_group = dev.boxadactle
archives_name = CoordinatesDisplay
enabled_platforms = fabric,forge
Expand All @@ -17,7 +17,7 @@ fabric_api_version = 0.91.6+1.20.2
forge_version = 48.1.0

modmenu_version=8.0.1
boxlib_version = 11.3.1
boxlib_version = 11.3.2

# publishing
game_versions = 1.20.1,1.20.2
Expand Down

0 comments on commit f5ded73

Please sign in to comment.