Skip to content

Commit 6331236

Browse files
Update
1. Updated build.gradle and gradle.properties 2. Changed gradle version from 7.3.3 to 8.12 3. Changed description to match repo and java version from 17 to 21 4. idek what I did in the Java file I just relied on IntelliJ quick action and a bit of common sense
1 parent 60823f7 commit 6331236

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
2-
id 'fabric-loom' version '0.12-SNAPSHOT'
2+
id 'fabric-loom' version '1.9-SNAPSHOT'
33
}
44

5-
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
5+
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_21
66

77
archivesBaseName = project.archives_base_name
88
version = project.mod_version

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
org.gradle.jvmargs=-Xmx2G
22

33
# Fabric (https://fabricmc.net/versions.html)
4-
minecraft_version=1.19.2
5-
yarn_mappings=1.19.2+build.4
6-
loader_version=0.14.9
4+
minecraft_version=1.21.3
5+
yarn_mappings=1.21.3+build.2
6+
loader_version=0.16.9
77

88
# Mod Properties
9-
mod_version=0.1
9+
mod_version=0.2
1010
maven_group=anticope
1111
archives_base_name=e621-addon
1212

1313
# Dependency Versions.
1414

1515
# Meteor (https://maven.meteordev.org/)
16-
meteor_version=0.5.1-SNAPSHOT
16+
meteor_version=0.5.9-SNAPSHOT
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/anticope/esixtwoone/ImageHUD.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import anticope.esixtwoone.sources.Source.Size;
2626
import anticope.esixtwoone.sources.Source.SourceType;
2727

28-
import static baritone.api.utils.Helper.mc;
28+
import static meteordevelopment.meteorclient.MeteorClient.mc;
2929
import static meteordevelopment.meteorclient.utils.Utils.WHITE;
3030

3131
public class ImageHUD extends HudElement {
@@ -36,7 +36,7 @@ public class ImageHUD extends HudElement {
3636
private int ticks = 0;
3737
private Source source;
3838

39-
private static final Identifier TEXID = new Identifier("e621", "tex");
39+
private static final Identifier TEXID = Identifier.of("e621", "tex");
4040

4141
private final SettingGroup sgGeneral = settings.getDefaultGroup();
4242

src/main/resources/fabric.mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"id": "e621-hud",
44
"version": "${version}",
55
"name": "E621 hud",
6-
"description": "An addon template for the Meteor addons.",
6+
"description": "Admire great artworks from the comfort of Meteor Client.",
77
"authors": [
88
"AntiCope"
99
],
@@ -22,7 +22,7 @@
2222
"github:sha": "@gh_hash@"
2323
},
2424
"depends": {
25-
"java": ">=17",
25+
"java": ">=21",
2626
"minecraft": ">=@mc_version@",
2727
"meteor-client": "*"
2828
}

0 commit comments

Comments
 (0)