Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSVK12 committed Dec 29, 2023
1 parent c5d2ceb commit f4c6986
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,15 @@ dependencies {
implementation project(path: ":catalyst:energy",configuration: "namedElements")
implementation project(path: ":catalyst:fluids",configuration: "namedElements")
implementation project(path: ":catalyst:multiblocks",configuration: "namedElements")
implementation project(path: ":catalyst:effects",configuration: "namedElements")

modImplementation "DragonFly:dragonfly:1.0.4-7.1"
modImplementation "DragonFly:dragonfly:1.2.0-7.1"
modImplementation "BTWaila:btwaila:1.0.6-7.1"

implementation "org.slf4j:slf4j-api:1.8.0-beta4"
implementation "org.apache.logging.log4j:log4j-slf4j18-impl:2.16.0"

implementation 'com.google.guava:guava:30.0-jre'
implementation 'com.google.guava:guava:33.0.0-jre'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'

var log4jVersion = "2.20.0"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ bta_version=7.1-pre1a
loader_version=0.14.19-babric.3-bta

# HalpLibe
halplibe_version=3.0.4
halplibe_version=3.1.0

# Mod
mod_version=0.2.2
mod_version=0.2.3
mod_group=sunsetsatellite
mod_name=signalindustries
2 changes: 2 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ include(":catalyst")
include(":catalyst:energy")
include(":catalyst:fluids")
include(":catalyst:multiblocks")
include(":catalyst:effects")
include(":catalyst:all")

project(":catalyst").projectDir = file("${rootProject.projectDir}/../catalyst")
project(":catalyst:energy").projectDir = file("${project(":catalyst").projectDir}/energy")
project(":catalyst:fluids").projectDir = file("${project(":catalyst").projectDir}//fluids")
project(":catalyst:multiblocks").projectDir = file("${project(":catalyst").projectDir}/multiblocks")
project(":catalyst:effects").projectDir = file("${project(":catalyst").projectDir}/effects")
project(":catalyst:all").projectDir = file("${project(":catalyst").projectDir}/all")
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ public void renderOverlay(GuiIngame guiIngame, FontRenderer fontRenderer, ItemEn
Color c = new Color().setARGB(mode.getColor());
GL11.glColor4f((float) c.getRed() /255, (float) c.getGreen() /255, (float) c.getBlue() /255, (float) c.getAlpha() /255);
//GL11.glColor4b((byte) c.getRed(), (byte) c.getGreen(), (byte) c.getBlue(), (byte) c.getAlpha());
GL11.glBindTexture(3553, mc.renderEngine.getTexture("/gui/gui.png"));
GL11.glBindTexture(GL11.GL_TEXTURE_2D, mc.renderEngine.getTexture("/gui/gui.png"));
int x = width / 2 - 91;
int y = 0;
drawUtil.drawTexturedModalRect(x, y, 0, 0, 182, 22);
Expand Down
12 changes: 6 additions & 6 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "signalindustries",
"version": "0.2.0",
"version": "${version}",
"name": "Signal Industries",
"icon": "icon128.png",
"description": "Technomagical mod with cool gadgets and machines.",
Expand Down Expand Up @@ -45,11 +45,11 @@
],
"depends": {
"fabricloader": ">=0.13.3",
"catalyst-core": ">=1.0.0",
"catalyst-fluids": ">=1.0.0",
"catalyst-core": ">=1.1.1",
"catalyst-fluids": ">=1.0.1",
"catalyst-multiblocks": ">=1.0.0",
"catalyst-energy": ">=1.0.0",
"halplibe": ">=3.0.1",
"dragonfly": ">=1.0.0-7.1"
"catalyst-energy": ">=1.0.1",
"halplibe": ">=3.1.0",
"dragonfly": ">=1.2.0-7.1"
}
}

0 comments on commit f4c6986

Please sign in to comment.