Skip to content
This repository was archived by the owner on Mar 1, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2 # use CircleCI 2.0
jobs: # a collection of steps
build: # runs not using Workflows must have a `build` job as entry point
working_directory: ~/cratesplus # directory where steps will run
docker: # run the steps with Docker
- image: circleci/openjdk:8-jdk-browsers # ...with this image as the primary container; this is where all `steps` will run
steps: # a collection of executable commands
- checkout # check out source code to working directory
- run: mvn dependency:go-offline # gets the project dependencies
- run: mvn clean package install
- store_artifacts:
path: target
34 changes: 34 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
**4.5.3** *(Nov 15 2020)* - [Download](https://www.spigotmc.org/resources/5018/download?version=367260)
- Feature: Support for Bukkit/Spigot 1.16.4. Other versions should work from 1.8 to 1.16, but only 1.8 and 1.16.4 were specifically tested.
- Bug: Fixed an issue in some versions of Spigot where interacting with chests would throw an exception.
- Bug: Fixed the sign UI not working in most cases.
- Note: This version now requires Java 8, although this should impact next to nobody.

**4.5.2** *(Jun 1 2019)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-13-1.5018/download?version=276471)
- Feature: Support for Bukkit/Spigot 1.14 - 1.14.2.

**4.5.1** *(Sep 17 2018)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-13-1.5018/download?version=240597)
- Bug: Fixed an issue that caused opening crates to not work on some 1.13.1 builds. This was due to the display name no longer returning its color codes, I am not yet sure if this is intended but this build does fix it in the meantime.

**4.5** *(Sep 16 2018)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-12-2.5018/download?version=240554)
- Feature: Support for Bukkit/Spigot 1.13.
- Removal: Removed support for winning `Item ID`, use `Item Type` instead.
- Removal: Removed support for Enchantment ID's, use Enchantment names instead.

**4.4.5** *(Feb 14 2018)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-12-2.5018/download?version=208286)
- Bug: Updated the URL for Spigot update checks as the old one is now disabled.

**4.4.4** *(Sep 25 2017)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-12-2.5018/download?version=186440)
- Feature: Support for Bukkit/Spigot 1.12.2.

**4.4.3** *(Aug 3 2017)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-12-1.5018/download?version=176069)
- Feature: Support for Bukkit/Spigot 1.12.1.

**4.4.2** *(Jul 18 2017)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-12.5018/download?version=172748)
- Bug: Fixed an error if you had more than 54 items to preview. This will include pagination in a future update.
- Bug: Added a null check to prevent an NPE if you didn't define winnings.
- Bug: Now forcing item types to be uppercase for commands just like items.

**4.4.1** *(Jun 9 2017)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-12.5018/download?version=164332)
- Feature: Support for Bukkit/Spigot 1.12.

**4.4** *(Apr 17 2017)* - [Download](https://www.spigotmc.org/resources/cratesplus-free-crates-plugin-1-7-1-11-2.5018/download?version=155087)
- Feature: You can now set the lore of a key in the config file. (Warning: changing the lore WILL break existing keys given to players)
- Feature: Added support for storing all meta data when using the built in GUI for managing winnings. This includes enchantments, potions, books, player heads etc.
Expand Down
13 changes: 9 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>plus.crates</groupId>
<artifactId>CratesPlus</artifactId>
<description>A free and great crates plugin for Minecraft</description>
<version>4.4</version>
<version>4.5.3</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -30,8 +30,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.11-R0.1-SNAPSHOT</version>
<version>1.14.2-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.gmail.filoghost</groupId>
Expand All @@ -74,6 +74,11 @@
<scope>system</scope>
<systemPath>${basedir}/lib/IndividualHolograms.jar</systemPath>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>

</project>
Loading