9.6.0 release

This commit is contained in:
mfnalex 2021-04-14 20:16:27 +02:00
parent d035f540bc
commit 04eaebc552
5 changed files with 636 additions and 608 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## 9.5.2
- PlayerData is stored as NBT data instead of using separate files in 1.14.4 and later
## 9.5.1
- Fixed version in plugin.yml

View File

@ -10,7 +10,7 @@ https://www.spigotmc.org/resources/1-13-chestsort.59773/
If you want to use ChestSort as dependency for your own plugin, you can use our public maven repository. More information can be found in the [API documentation](https://github.com/JEFF-Media-GbR/Spigot-ChestSort/blob/master/HOW_TO_USE_API.md).
## Building .jar file
To build the .jar file, you will need maven. Also, the CrackShot library is in no public repository, so please create a directory called `lib` and put the latest CrackShot.jar file [(available here)](https://www.spigotmc.org/resources/crackshot-guns.48301/) inside it. Now you can do `mvn install`
~~To build the .jar file, you will need maven. Also, the CrackShot library is in no public repository, so please create a directory called `lib` and put the latest CrackShot.jar file [(available here)](https://www.spigotmc.org/resources/crackshot-guns.48301/) inside it.~~ (Not required as of ChestSort 9.6.0+)
## API
If you want to use ChestSort's advanced sorting features for your own plugin, you can use the ChestSort API. It provides methods to sort any given inventory, following the rules you have specified in your ChestSort's plugin.yml and the corresponding category files.

31
pom.xml
View File

@ -9,7 +9,7 @@
<name>ChestSort</name>
<url>https://www.chestsort.de</url>
<description>Automatically sorts your chests!</description>
<version>9.5.1</version>
<version>9.6.0</version>
<packaging>jar</packaging>
<properties>
@ -44,8 +44,12 @@
<configuration>
<relocations>
<relocation>
<pattern>de.jeff_media.PluginUpdateChecker</pattern>
<shadedPattern>de.jeff_media.ChestSort</shadedPattern>
<pattern>de.jeff_media.jefflib</pattern>
<shadedPattern>de.jeff_media.ChestSort.jefflib</shadedPattern>
</relocation>
<relocation>
<pattern>de.jeff_media.updatechecker</pattern>
<shadedPattern>de.jeff_media.ChestSort.updatechecker</shadedPattern>
</relocation>
<relocation>
<pattern>org.bstats</pattern>
@ -126,10 +130,16 @@
<version>2.10.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.jeff_media</groupId>
<artifactId>JeffLib</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.1-R0.1-SNAPSHOT</version>
<version>1.16.5-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -145,11 +155,10 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.shampaggon.crackshot</groupId>
<artifactId>CSUtility</artifactId>
<version>0.98.9</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/CrackShot.jar</systemPath>
<groupId>de.jeff_media.thirdparty</groupId>
<artifactId>CrackShot</artifactId>
<version>0.98.11</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>at.pcgamingfreaks</groupId>
@ -165,8 +174,8 @@
</dependency>
<dependency>
<groupId>de.jeff_media</groupId>
<artifactId>PluginUpdateChecker</artifactId>
<version>1.3.1</version>
<artifactId>SpigotUpdateChecker</artifactId>
<version>1.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
main: de.jeff_media.ChestSort.ChestSortPlugin
name: ChestSort
version: 9.5.1
version: 9.6.0
api-version: "1.13"
description: Allows automatic chest sorting
author: mfnalex