Skip to content

Commit 149c859

Browse files
committed
1.7.10-1.0.2
1 parent 4ef6ee3 commit 149c859

4 files changed

Lines changed: 29 additions & 25 deletions

File tree

Changelog.txt

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1+
1.7.10-1.0.2
2+
3+
> Update to Minecraft 1.7.10.
4+
> Update to Clashsoft Lib 1.7.10-2.4.2.
5+
* Fixed UpdateChecker not working
6+
17
1.7.2-1.0.1
28

3-
! Update to Clashsoft Lib 1.7.2-2.1.2
4-
* Fixed second tab page not showing up
5-
* Bugfixes
9+
> Update to Clashsoft Lib 1.7.2-2.1.2.
10+
* Fixed second tab page not showing up.
11+
* Bugfixes.
612

713
1.7.2-1.0.0
814

9-
+ Added the ability to add slots
10-
+ Added the ability to move slots
11-
+ Added the ability to add buttons
12-
+ Added the ability to move special parts of the inventory screens
13-
+ Added IInventoryObjects
14-
+ Added IInventoryHandlers
15-
* Made the inventory rendering dynamic
15+
+ Added the ability to add slots.
16+
+ Added the ability to move slots.
17+
+ Added the ability to add buttons.
18+
+ Added the ability to move special parts of the inventory screens.
19+
+ Added IInventoryObjects.
20+
+ Added IInventoryHandlers.
21+
* Made the inventory rendering dynamic.

build.gradle

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript
2121
}
2222

2323
apply plugin: 'forge'
24-
version = "1.7.2-1.0.1"
24+
version = "1.7.10-1.0.2"
2525
group = "clashsoft.playerinventoryapi"
2626
archivesBaseName = "PlayerInventoryAPI"
2727

@@ -42,13 +42,11 @@ minecraft
4242
}
4343
}
4444

45-
task update(dependsOn:['eclipse', 'setupDevWorkspace'])
46-
47-
task deobfJar(type:Jar, dependsOn:'classes')
48-
deobfJar
45+
task devJar(type:Jar, dependsOn:'classes')
46+
devJar
4947
{
5048
classifier = 'deobf'
51-
archiveName = "${archivesBaseName}-${version}-deobf.jar"
49+
archiveName = "${archivesBaseName}-${version}-dev.jar"
5250
from ('build/classes/main')
5351
{
5452
include('clashsoft/playerinventoryapi/**')
@@ -59,8 +57,8 @@ deobfJar
5957
}
6058
}
6159

62-
task sourceJar(type:Jar, dependsOn:'classes')
63-
sourceJar
60+
task srcJar(type:Jar, dependsOn:'classes')
61+
srcJar
6462
{
6563
classifier = 'sources'
6664
archiveName = "${archivesBaseName}-${version}-src.jar"
@@ -74,7 +72,7 @@ sourceJar
7472
}
7573
}
7674

77-
task buildApi(dependsOn:['build', 'sourceJar', 'deobfJar'])
75+
task buildApi(dependsOn:['build', 'srcJar', 'devJar'])
7876

7977
processResources
8078
{

src/main/java/clashsoft/playerinventoryapi/PlayerInventoryAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class PlayerInventoryAPI extends ClashsoftMod
2323
public static final String MODID = "piapi";
2424
public static final String NAME = "Player Inventory API";
2525
public static final String ACRONYM = "piapi";
26-
public static final String VERSION = CSUpdate.CURRENT_VERSION + "-1.0.1";
26+
public static final String VERSION = "1.7.10-1.0.2";
2727

2828
@Instance(MODID)
2929
public static PlayerInventoryAPI instance;

version.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
version=1.7.2-1.0.1
2-
url=https://github.com/Clashsoft/Player-Inventory-API/releases/download/1.7.2-1.0.1/Player.Inventory.API.1.7.2-1.0.1.jar
1+
version=1.7.10-1.0.2
2+
url=https://github.com/Clashsoft/Player-Inventory-API/releases/download/1.7.10-1.0.2/PlayerInventoryAPI-1.7.10-1.0.2.jar
33

4-
! Update to Clashsoft Lib 1.7.2-2.1.2
5-
* Fixed second tab page not showing up
6-
* Bugfixes
4+
! Update to Minecraft 1.7.10.
5+
! Update to Clashsoft Lib 1.7.10-2.4.2.
6+
* Fixed UpdateChecker not working

0 commit comments

Comments
 (0)