Skip to content

Commit

Permalink
Merge pull request #2 from Oranamous/main
Browse files Browse the repository at this point in the history
Update to 1.19.4
  • Loading branch information
DartCat25 committed Jul 10, 2023
2 parents 508968f + 3ea9dd4 commit acc38a0
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Sodium Shader Support (1.19.3)
## Sodium Shader Support (1.19.4)
Sodium, as good render optimization mod, changes vanilla block shaders to its own but it didn't provide changing these shaders throught resource packs.

This mod provides changes of sodium shader by resource pack.
Expand Down
9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,21 @@ repositories {
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
}

dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

modImplementation "me.jellysquid.mods:sodium-fabric:${project.sodium_version}"
modImplementation "maven.modrinth:sodium:${project.sodium_version}"

modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
}
Expand Down
21 changes: 9 additions & 12 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G
org.gradle.parallel=true

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.19.3
yarn_mappings=1.19.3+build.1
loader_version=0.14.11

# check these on https://fabricmc.net/develop
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.9
loader_version=0.14.21
# Mod Properties
mod_version = 0.1.0
maven_group = me.dartcat25.mods
archives_base_name = sodium-shader-support

mod_version=0.1.0
maven_group=me.dartcat25.mods
archives_base_name=sodium-shader-support
# Dependencies
fabric_version=0.68.1+1.19.3
sodium_version=0.4.8
fabric_version=0.85.0+1.20.1
sodium_version=mc1.20-0.4.10
13 changes: 5 additions & 8 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@
"schemaVersion": 1,
"id": "sodiumss",
"version": "${version}",

"name": "Sodium Shader Support",
"description": "Allowing to edit sodium shaders with resourcepacks.",
"authors": [
"DartCat25"
"DartCat25",
"Oranamous"
],
"contact": {
"sources": "https://github.com/FabricMC/fabric-example-mod"
},

"license": "CC0-1.0",
"icon": "assets/sodiumss/icon.png",

"environment": "client",
"entrypoints": {
"client": [
Expand All @@ -24,11 +22,10 @@
"mixins": [
"sodiumss.mixins.json"
],

"depends": {
"fabricloader": ">=0.14.11",
"minecraft": "~1.19.3",
"fabricloader": ">=0.14.21",
"minecraft": "~1.20.1",
"java": ">=17",
"sodium": ">=0.4.4"
"sodium": ">=0.4.10"
}
}

0 comments on commit acc38a0

Please sign in to comment.