Skip to content

Commit

Permalink
Update to Sodium 0.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
comp500 committed Jun 13, 2024
1 parent 7827802 commit bf2a33f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21-rc1
yarn_mappings=1.21-rc1+build.1
# check these on https://fabricmc.net/develop/
minecraft_version=1.21
yarn_mappings=1.21+build.1
loader_version=0.15.11
# Mod Properties
mod_version=1.0.30
maven_group=link.infra
archives_base_name=indium
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.100.0+1.21
sodium_version=0.5.8
sodium_minecraft_version=1.20.5
# check this on https://fabricmc.net/develop/
fabric_version=0.100.1+1.21
sodium_version=0.5.9
sodium_minecraft_version=1.21
# Publishing metadata
curseforge_id=459496
source_url=https://github.com/comp500/Indium/
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private EncodingFormat() { }
VERTEX_V = VERTEX_U + 1;
VERTEX_LIGHTMAP = HEADER_STRIDE + 6;
VERTEX_NORMAL = HEADER_STRIDE + 7;
VERTEX_STRIDE = format.getVertexSizeByte();
VERTEX_STRIDE = format.getVertexSizeByte() / 4;
QUAD_STRIDE = VERTEX_STRIDE * 4;
QUAD_STRIDE_BYTES = QUAD_STRIDE * 4;
TOTAL_STRIDE = HEADER_STRIDE + QUAD_STRIDE;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"depends": {
"fabricloader": ">=0.8.0",
"minecraft": "~1.21.0",
"sodium": "0.5.8",
"sodium": "0.5.9",
"fabric-renderer-api-v1": ">=3.2.0",
"fabric-resource-loader-v0": ">=0.4.0"
}
Expand Down

0 comments on commit bf2a33f

Please sign in to comment.