Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMicky-FR committed Aug 22, 2022
1 parent 2f76281 commit 62409fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Language grade](https://img.shields.io/lgtm/grade/java/g/MrMicky-FR/WorldEditSelectionVisualizer.svg?label=code%20quality&logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/MrMicky-FR/WorldEditSelectionVisualizer/context:java)
[![Discord](https://img.shields.io/discord/390919659874156560.svg?colorB=5865f2&label=Discord&logo=discord&logoColor=white)](https://discord.gg/q9UwaBT)

WorldEditSelectionVisualizer (WESV) is essentially the famous [WorldEditCUI](http://www.minecraftforum.net/topic/2171206-172-worldeditcui/) mod in the form of a bukkit plugin, which means that players don't need to install anything on their client.
WorldEditSelectionVisualizer (WESV) is essentially the famous [WorldEditCUI](http://www.minecraftforum.net/topic/2171206-172-worldeditcui/) mod in the form of a Bukkit plugin, which means that players don't need to install anything on their client.

## Features

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
allprojects {
group = 'fr.mrmicky'
version = '2.1.1'
version = '2.1.2'
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,7 @@ private WesvMetrics(WorldEditSelectionVisualizer plugin) {
}

public static void register(WorldEditSelectionVisualizer plugin) {
try {
// bStats uses Gson, but Gson is not shaded with Spigot < 1.8
Class.forName("com.google.gson.Gson");

new WesvMetrics(plugin);
} catch (ClassNotFoundException e) {
// disable metrics
}
new WesvMetrics(plugin);
}

private void addBooleanChart(String name, BooleanSupplier value) {
Expand Down

0 comments on commit 62409fb

Please sign in to comment.