Skip to content

Commit fb9b41d

Browse files
authored
Merge pull request #1 from FurnyGo/1.18-1.19
1.18-1.19
2 parents 3e37cc0 + 2ad2cb0 commit fb9b41d

14 files changed

+14
-16
lines changed

build.gradle

-5
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ dependencies {
2626

2727
// Fabric API. This is technically optional, but you probably want it anyway.
2828
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
29-
30-
// Uncomment the following line to enable the deprecated Fabric API modules.
31-
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
32-
33-
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
3429
}
3530

3631
processResources {
11.5 KB
Binary file not shown.
Binary file not shown.
11.4 KB
Binary file not shown.
7.36 KB
Binary file not shown.
8.49 KB
Binary file not shown.

build/libs/inventory-plus-1.1.0.jar

12.9 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v1 named intermediary
2+
METHOD furnygo/invplus/mixin/ClientPlayerInteractionManagerMixin ()V syncSelectedSlot method_2911
3+
METHOD furnygo/invplus/mixin/ClientPlayerInteractionManagerMixin (IIILnet/minecraft/screen/slot/SlotActionType;Lnet/minecraft/entity/player/PlayerEntity;)V clickSlot method_2906

build/resources/main/fabric.mod.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": 1,
33
"id": "invplus",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55

66
"name": "Inventory Plus",
77
"description": "Inventory Tweaks from MeteorClient",
@@ -29,7 +29,7 @@
2929
"depends": {
3030
"fabricloader": ">=0.14.6",
3131
"fabric": "*",
32-
"minecraft": "~1.19",
32+
"minecraft": ["1.18.x", "1.19.x"],
3333
"java": ">=17"
3434
}
3535
}

build/resources/main/invplus.mixins.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"mixins": [
77
],
88
"client": [
9-
"PlayerArmorSlotMixin",
10-
"ClientPlayerInteractionManagerMixin"
9+
"ClientPlayerInteractionManagerMixin",
10+
"PlayerArmorSlotMixin"
1111
],
1212
"injectors": {
1313
"defaultRequire": 1
Binary file not shown.

gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx1G
33

44
# Fabric Properties
55
# check these on https://fabricmc.net/develop
6-
minecraft_version=1.19
7-
yarn_mappings=1.19+build.1
6+
minecraft_version=1.18.2
7+
yarn_mappings=1.18.2+build.3
88
loader_version=0.14.6
99

1010
# Mod Properties
11-
mod_version = 1.0.0
11+
mod_version = 1.1.0
1212
maven_group = furnygo
1313
archives_base_name = inventory-plus
1414

1515
# Dependencies
16-
fabric_version=0.55.1+1.19
16+
fabric_version=0.53.0+1.18.2

src/main/resources/fabric.mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"depends": {
3030
"fabricloader": ">=0.14.6",
3131
"fabric": "*",
32-
"minecraft": "~1.19",
32+
"minecraft": ["1.18.x", "1.19.x"],
3333
"java": ">=17"
3434
}
3535
}

src/main/resources/invplus.mixins.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"mixins": [
77
],
88
"client": [
9-
"PlayerArmorSlotMixin",
10-
"ClientPlayerInteractionManagerMixin"
9+
"ClientPlayerInteractionManagerMixin",
10+
"PlayerArmorSlotMixin"
1111
],
1212
"injectors": {
1313
"defaultRequire": 1

0 commit comments

Comments
 (0)