From 2a97972f96384f1bcaac2a0655a1dc9d0f4e6ef8 Mon Sep 17 00:00:00 2001 From: Esophose Date: Sun, 4 Mar 2018 16:17:40 -0700 Subject: [PATCH] v5 Update Update changelog to v5 --- changelog.txt | 19 ++++++++++++++++ .../playerparticles/PlayerParticles.java | 22 ------------------- 2 files changed, 19 insertions(+), 22 deletions(-) diff --git a/changelog.txt b/changelog.txt index fe5ac05..a8e2401 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,24 @@ == UPDATING WILL DELETE YOUR CONFIG.YML == * Create a backup of your config.yml if you wish to import all your old settings! +=== v5 === ++ Added a GUI. Opens with /pp or /pp gui. Icons and messages are completely customizable from the config. ++ Added a way to disable the GUI, because I know somebody will ask ++ Added new style 'wings' ++ Added new style 'sphere' ++ Added new style 'hurt' ++ Added new style 'swords' ++ Added new style 'blockbreak' ++ Added new style 'blockplace' ++ Added new style 'blockedit' +- Minecraft 1.7 and 1.8 are no longer supported, there is no reason to still be on a version that old +- Servers running Java 7 are no longer supported, please upgrade to Java 8 if you haven't yet +* Fixed a bug where typing /pp data when you haven't been added to the playerData.yml/database yet threw an error +* Switched over to the Spigot Particle API +* Plugin is now built against Java 1.8.0_161 and Spigot 1.9.4-R0.1 +* Rewrote database connection system, should fix any memory leaks from before +* Reduced particle render distance from 512 to 192 (12 chunks), you won't notice a difference +* Fixed missing command 'fixed' from '/pp help' list +* Fixed missing command 'fixed' from tab completion === v4.5 === * Fix issue with the style 'halo' that caused 10 errors per second to be printed to the config. These were listed as "java.lang.NullPointerException" or "Task #### for PlayerParticles generated an exception". Thanks to everybody who helped find this error. (It's been in the plugin for over 6 months somehow) * Fix a rare issue with the update checker that would cause the plugin to fail loading if there was no internet connection or the Curse API servers were down. It will now fail without an error and a notice will be printed to the console. diff --git a/src/com/esophose/playerparticles/PlayerParticles.java b/src/com/esophose/playerparticles/PlayerParticles.java index c2371cd..4048caa 100644 --- a/src/com/esophose/playerparticles/PlayerParticles.java +++ b/src/com/esophose/playerparticles/PlayerParticles.java @@ -16,28 +16,6 @@ * + Add new style 'rings' */ -/* - * Changelog v5: - * + Added a GUI. Opens with /pp or /pp gui. Icons and messages are completely customizable from the config. - * + Added a way to disable the GUI, because I know somebody will ask - * + Added new style 'wings' - * + Added new style 'sphere' - * + Added new style 'hurt' - * + Added new style 'swords' - * + Added new style 'blockbreak' - * + Added new style 'blockplace' - * + Added new style 'blockedit' - * - Minecraft 1.7 and 1.8 are no longer supported, there is no reason to still be on a version that old - * - Servers running Java 7 are no longer supported, please upgrade to Java 8 if you haven't yet - * * Fixed a bug where typing /pp data when you haven't been added to the playerData.yml/database yet threw an error - * * Switched over to the Spigot Particle API - * * Plugin is now built against Java 1.8.0_161 and Spigot 1.9.4-R0.1 - * * Rewrote database connection system, should fix any memory leaks from before - * * Reduced particle render distance from 512 to 192 (12 chunks), you won't notice a difference - * * Fixed missing command 'fixed' from '/pp help' list - * * Fixed missing command 'fixed' from tab completion - */ - package com.esophose.playerparticles; import java.io.File;