diff --git a/README.md b/README.md index f02bcae..96d3de5 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,9 @@
Join Discord Server Version -jitpack - +jitpack +Downloads +
Leave a :star: if you like this API :octocat: @@ -21,8 +22,8 @@ Leave a :star: if you like this API :octocat: # Installation - Download packet events https://www.spigotmc.org/resources/80279/ -- Download HologramAPI-[version]**.jar** file from the [latest release](https://github.com/max1mde/HologramAPI/releases) -- Upload the HologramAPI-[version]**.jar** and packet events file on your server (_yourserver/**plugins**_ folder) +- Download HologramLib-[version]**.jar** file from the [latest release](https://github.com/max1mde/HologramLib/releases) +- Upload the HologramLib-[version]**.jar** and packet events file on your server (_yourserver/**plugins**_ folder) - Add the plugin as a dependency to your plugin and use it **Gradle installation** @@ -32,7 +33,7 @@ repositories { } dependencies { - compileOnly 'com.github.max1mde:HologramAPI:1.4.7' + compileOnly 'com.github.max1mde:HologramLib:1.4.8' } ``` **Maven installation** @@ -44,8 +45,8 @@ dependencies { com.github.max1mde - HologramAPI - 1.4.7 + HologramLib + 1.4.8 provided ``` @@ -53,7 +54,7 @@ Add this to your plugin `plugin.yml` ```yml depend: - - HologramAPI + - HologramLib ``` # Example/Showcase Plugin @@ -67,7 +68,7 @@ private HologramManager hologramManager; @Override public void onEnable() { - hologramManager = HologramAPI.getManager().orElse(null); + hologramManager = HologramLib.getManager().orElse(null); if (hologramManager == null) { getLogger().severe("Failed to initialize HologramLib manager."); return; @@ -76,7 +77,7 @@ public void onEnable() { ``` > [!IMPORTANT] -> If you are shading the library use `HologramAPI.getManager()` instead! +> If you are shading the library use `HologramLib.getManager()` instead! ### Hologram Rendering Modes ```java