Skip to content

Commit

Permalink
Update to 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Protonull committed May 11, 2024
1 parent 2320826 commit d50dbbf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CivVoxelMap

This is a 'fork' of [VoxelMap](https://modrinth.com/mod/voxelmap-updated) for 1.20.1 that's [CivMC](https://civmc.net)
This is a 'fork' of [VoxelMap](https://modrinth.com/mod/voxelmap-updated) for 1.20.4 that's [CivMC](https://civmc.net)
legal.

## Changes
Expand Down Expand Up @@ -28,5 +28,5 @@ legal.

## Requirements

- Fabric Loader: `0.15.7` (or newer)
- [Fabric API](https://modrinth.com/mod/fabric-api): `0.92.0+1.20.1` (or newer)
- Fabric Loader: `0.15.11` (or newer)
- [Fabric API](https://modrinth.com/mod/fabric-api): `0.96.11+1.20.4` (or newer)
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ dependencies {
modImplementation("net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}")
modApi("net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}")

// https://modrinth.com/mod/voxelmap-updated/version/1.20.1-1.12.13
modImplementation(include("maven.modrinth:voxelmap-updated:uDfYW2uw"))
// https://modrinth.com/mod/voxelmap-updated/version/1.20.4-1.12.17
modImplementation(include("maven.modrinth:voxelmap-updated:VYowiAJp"))

// https://modrinth.com/mod/modmenu/version/7.2.2
modCompileOnly("maven.modrinth:modmenu:lEkperf6")
// https://modrinth.com/mod/modmenu/version/9.0.0
modCompileOnly("maven.modrinth:modmenu:sjtVVlsA")
}

repositories {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ org.gradle.jvmargs=-Xmx4096M

archives_base_name=civvoxelmap
maven_group=uk.protonull.civvoxelmap
mod_version=0.0.1
mod_version=0.0.2
mod_name=CivVoxelMap
mod_description=Makes VoxelMap legal for CivMC!
copyright_licence=LGPLv3
mod_home_url=https://github.com/Protonull/CivVoxelMap
mod_source_url=https://github.com/Protonull/CivVoxelMap
mod_issues_url=https://github.com/Protonull/CivVoxelMap/issues

minecraft_version=1.20.1
minecraft_version=1.20.4

# https://parchmentmc.org/docs/getting-started
parchment_version=2023.09.03
parchment_version=2024.04.14

# https://fabricmc.net/versions.html
fabric_loader_version=0.15.7
fabric_api_version=0.92.0+1.20.1
fabric_loader_version=0.15.11
fabric_api_version=0.96.11+1.20.4
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void render(
final int mouseY,
final float delta
) {
renderBackground(drawContext);
renderBackground(drawContext, mouseX, mouseY, delta);
drawContext.drawCenteredString(this.font, this.title, this.width / 2, 20, 0xFFFFFF);
super.render(drawContext, mouseX, mouseY, delta);
}
Expand Down

0 comments on commit d50dbbf

Please sign in to comment.