Skip to content

Commit

Permalink
bump 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Netherwhal committed Feb 5, 2024
1 parent 48b7d6d commit 21ceea1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ plugins {
}

group 'net.simplyvanilla'
version '0.6.1'
version '0.7.0'

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}

compileJava.options.encoding = 'UTF-8'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package net.simplyvanilla.simplychat;

import java.util.Objects;
import java.util.logging.Level;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.minimessage.MiniMessage;
import net.kyori.adventure.text.minimessage.tag.resolver.TagResolver;
Expand All @@ -20,6 +18,9 @@
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;

import java.util.Objects;
import java.util.logging.Level;

public class SimplyChatPlugin extends JavaPlugin {

private static SimplyChatPlugin instance;
Expand Down
7 changes: 6 additions & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
main: net.simplyvanilla.simplychat.SimplyChatPlugin
name: SimplyChat
description: A simple no frills/thrills chat & reply formatter with papi support.
description: A simple no frills/thrills chat & reply formatter with MiniPlaceholders support.
version: @version@
api-version: 1.19

Expand Down Expand Up @@ -34,3 +34,8 @@ commands:
ignorelist:
description: Get list of ignored players.
usage: 'Usage: /<command>'

permissions:
simplychat.bypass.cooldown:
description: whether the player can bypass chat cooldown
default: op

0 comments on commit 21ceea1

Please sign in to comment.