Skip to content

Commit a222a7d

Browse files
committed
Release 1.1.0
1 parent 8ab2769 commit a222a7d

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ out
1010
*.iws
1111
*.iml
1212
.idea
13+
classes
1314
build
1415
.gradle
1516
run

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ buildscript {
99
}
1010
apply plugin: "net.minecraftforge.gradle.forge"
1111

12-
ext.modVersion = "1.0.0"
13-
version = "${modVersion}-1.12"
12+
ext.modVersion = "1.1.0"
13+
version = "${modVersion}-1.12.x"
1414
group = "com.pau101.auginter"
1515
archivesBaseName = "auginter"
1616

1717
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
1818

1919
minecraft {
20-
version = "1.12-14.21.1.2420"
20+
version = "1.12.2-14.23.0.2491"
2121
runDir = "run"
22-
mappings = "snapshot_20170722"
22+
mappings = "snapshot_20180107"
2323
makeObfSourceJar = false
2424
}
2525

src/main/java/com/pau101/auginter/AugmentedInteractions.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
modid = AugmentedInteractions.ID,
1515
name = AugmentedInteractions.NAME,
1616
version = AugmentedInteractions.VERSION,
17-
guiFactory = "com.pau101.auginter.client.gui.AugInterGuiFactory"
17+
guiFactory = "com.pau101.auginter.client.gui.AugInterGuiFactory",
18+
acceptedMinecraftVersions = "[1.12]"
1819
)
1920
public final class AugmentedInteractions {
2021
public static final String ID = "auginter";
2122

2223
public static final String NAME = "Augmented Interactions";
2324

24-
public static final String VERSION = "1.0.0";
25+
public static final String VERSION = "1.1.0";
2526

2627
@SidedProxy(
2728
clientSide = "com.pau101.auginter.client.ClientProxy",
File renamed without changes.

src/main/resources/pack.mcmeta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
33
"description": "The default look of Augmented Interactions",
4-
"pack_format": 2
4+
"pack_format": 3
55
}
66
}

0 commit comments

Comments
 (0)