@@ -6,7 +6,7 @@ Lightweight and easy-to-use inventory API for Bukkit plugins.
66
77## Features
88* Very small (less than 400 lines of code with the JavaDoc) and no dependencies
9- * Works with all Bukkit versions from 1.7.10 to 1.17.
9+ * Works with all Bukkit versions from 1.7.10 to 1.19
1010* Supports custom inventories (size, title and type)
1111* Easy to use
1212* Option to prevent a player from closing the inventory
@@ -21,7 +21,7 @@ Lightweight and easy-to-use inventory API for Bukkit plugins.
2121 <plugin >
2222 <groupId >org.apache.maven.plugins</groupId >
2323 <artifactId >maven-shade-plugin</artifactId >
24- <version >3.2.4 </version >
24+ <version >3.3.0< </version >
2525 <executions >
2626 <execution >
2727 <phase >package</phase >
@@ -62,7 +62,7 @@ Lightweight and easy-to-use inventory API for Bukkit plugins.
6262### Gradle
6363``` groovy
6464plugins {
65- id 'com.github.johnrengelman.shadow' version '6 .1.0 '
65+ id 'com.github.johnrengelman.shadow' version '7 .1.2 '
6666}
6767
6868repositories {
@@ -81,7 +81,7 @@ shadowJar {
8181
8282### Manual
8383
84- Just copy ` FastInv.java ` and ` FastInvManager.java ` in your plugin.
84+ Simply copy ` FastInv.java ` and ` FastInvManager.java ` in your plugin.
8585You can also add ` ItemBuilder.java ` if you need.
8686
8787## Usage
@@ -159,7 +159,7 @@ new ExampleInventory().open(player);
159159```
160160
161161### Creating a 'compact' inventory
162- If you prefer you can create a 'compact' inventory that doesn't require an entire class, but this is not recommended.
162+ If you prefer, you can create a 'compact' inventory that doesn't require an entire class, but this is not recommended.
163163
164164``` java
165165FastInv inv = new FastInv (InventoryType . DISPENSER , " Example compact inventory" );
0 commit comments