diff --git a/changelog.txt b/changelog.txt index f397d43..96419f5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,24 @@ === v7.0 === -* Coming soon ++ Added effect/style settings folder that lets you disable effects/style and edit style properties ++ Added setting to disable particles while in combat ++ Added effect/style name customization through config files ++ Added a setting 'dust-size' to change the size of dust particles in 1.13+ ++ Added command '/pp fixed teleport ' that requires the permission playerparticles.fixed.teleport ++ Added named colors to the color data autocomplete ++ Added an API, accessible through the dev.esophose.playerparticles.api.PlayerParticlesAPI class ++ Added PlaceholderAPI support ++ Added permission playerparticles.override for /ppo +* Config and lang files will no longer reset every update +* The style 'normal' is no longer granted permission by default +* /ppo now uses your permissions instead of the player you are targeting +* Changed how * permissions are handled, negative permissions should work now +* Fixed the 'swords' style so you have to be holding a sword/trident +* Fixed several styles ignoring the disabled worlds setting +* Fixed an issue where 'random' data would not parse properly in preset_groups.yml +* Fixed an issue where preset groups would not display in the GUI even if the player has permission for them +* Cleaned up duplicated command parsing +* Refactored and cleaned up code +* Changed the package names === v6.6 === + Added support for Minecraft 1.15 + Added 1.15 effects: 'dripping_honey', 'falling_honey', 'falling_nectar', and 'landing_honey' diff --git a/src/main/java/dev/esophose/playerparticles/PlayerParticles.java b/src/main/java/dev/esophose/playerparticles/PlayerParticles.java index 9d00e38..2c9878a 100644 --- a/src/main/java/dev/esophose/playerparticles/PlayerParticles.java +++ b/src/main/java/dev/esophose/playerparticles/PlayerParticles.java @@ -1,41 +1,9 @@ /* - * TODO: v7.0 + * TODO: v7.1 * + Add ability to create/manage fixed effects from the GUI * * Convert fixed effect ids into names */ - /* - * + Added effect/style settings folder that lets you disable effects/style and edit style properties - * + Added setting to disable particles while in combat - * * /ppo now uses your permissions instead of the player you are targetting - * + Added effect/style name customization through config files - * * Fixed the 'swords' style so you have to be holding a sword/trident - * * Fixed several styles ignoring the disabled worlds setting - * + Added a setting 'dust-size' to change the size of dust particles in 1.13+ - * * Cleaned up duplicated command parsing - * + Added command '/pp fixed teleport ' that requires the permission playerparticles.fixed.teleport - * + Added named colors to the color data autocomplete - * + Added an API, accessible through the dev.esophose.playerparticles.api.PlayerParticlesAPI class - * * Refactored the DataManager to only handle saving/loading data - * * Refactored and cleaned up code to remove static abuse - * * Changed the package names - * + Config and lang files will no longer reset every update - * + Added PlaceholderAPI support - * * The style 'normal' is no longer granted permission by default - * * Fixed an issue where 'random' data would not parse properly in preset_groups.yml - * * Fixed an issue where preset groups would not display in the GUI even if the player has permission for them - * + Added permission playerparticles.override for /ppo - * * Changed how * permissions are handled, negative permissions should work now - */ - - /* - * UPDATED LOCALE MESSAGES: - * Renamed command-error-no-effects to command-error-missing-effects-or-styles - * Changed message for command-error-missing-effects-or-styles - * Added message gui-no-permission - * Added messages for fixed particles under the section #23.5 - */ - package dev.esophose.playerparticles; import dev.esophose.playerparticles.gui.hook.PlayerChatHook;