Skip to content

Commit

Permalink
Updated version number to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
RadBuilder committed Dec 30, 2017
1 parent 41957fd commit 8327acc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>io.github.radbuilder</groupId>
<artifactId>emojichat-parent</artifactId>
<version>1.4</version>
<version>1.5</version>
</parent>

<name>EmojiChat Plugin</name>
<artifactId>emojichat-plugin</artifactId>
<version>1.4</version>
<version>1.5</version>
<packaging>jar</packaging>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class EmojiChat extends JavaPlugin {
/**
* The ResourcePack URL.
*/
final String PACK_URL = "https://github.com/RadBuilder/EmojiChat/releases/download/v1.4/EmojiChat.ResourcePack.v1.4.zip";
final String PACK_URL = "https://github.com/RadBuilder/EmojiChat/releases/download/v1.5/EmojiChat.ResourcePack.v1.5.zip";
/**
* The SHA1 sum of the ResourcePack as a byte array.
*/
Expand Down Expand Up @@ -68,7 +68,7 @@ public void onEnable() {

metricsHandler = new MetricsHandler(this); // Creates the metrics handler for metrics gathering

PACK_SHA1 = BaseEncoding.base16().lowerCase().decode("c0143b56fb568ec4787320ea1e6af245d8a8140c"); // Allows applying a cached version of the ResourcePack if available
PACK_SHA1 = BaseEncoding.base16().lowerCase().decode("787dc51caa5b01ced40517bd3d1fcf0f0873ab4e"); // Allows applying a cached version of the ResourcePack if available

// Register the chat listener
Bukkit.getPluginManager().registerEvents(new EmojiChatListener(this), this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class EmojiChatCommand implements CommandExecutor {
@Override
public boolean onCommand(CommandSender sender, Command command, String s, String[] args) {
if (args.length < 1) {
sender.sendMessage(ChatColor.AQUA + "EmojiChat v1.4 by RadBuilder");
sender.sendMessage(ChatColor.AQUA + "EmojiChat v1.5 by RadBuilder");
sender.sendMessage(ChatColor.AQUA + "Use " + ChatColor.GREEN + "/emojichat help" + ChatColor.AQUA + " for help.");
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: EmojiChat
version: 1.4
version: 1.5
description: Adds emojis to your chat
author: RadBuilder
website: "https://github.com/RadBuilder/EmojiChat/"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>io.github.radbuilder</groupId>
<name>EmojiChat Parent</name>
<artifactId>emojichat-parent</artifactId>
<version>1.4</version>
<version>1.5</version>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion resourcepack/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"pack": {
"pack_format": 4,
"description": "EmojiChat v1.4 ResourcePack by RadBuilder"
"description": "EmojiChat v1.5 ResourcePack by RadBuilder"
}
}

0 comments on commit 8327acc

Please sign in to comment.