Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump bstats-bukkit from 1.5 to 1.7 #45

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
# Artifact name
name: TeamSpeakIP
# Directory containing files to upload
path: target/TeamSpeak5.7.1.jar
path: target/TeamSpeak5.7.2.jar
2 changes: 1 addition & 1 deletion plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: TeamSpeakIP
author: T0biii
version: 5.7.1
version: 5.7.2
website: http://dev.bukkit.org/bukkit-plugins/teamspeak-ip/
description: Shows you the Teamspeak3IP
prefix: TeamSpeakIP
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.t0biii.ts</groupId>
<artifactId>TeamSpeak</artifactId>
<version>5.7.1</version>
<version>5.7.2</version>
<name>TeamSpeakIP</name>
<description>TeamSpeak IP</description>
<url>http://dev.T0biii.de</url>
Expand Down Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.5</version>
<version>1.7</version>
<scope>compile</scope>
</dependency>
<!--Json-Simple API -->
Expand All @@ -78,7 +78,7 @@
<build>

<!--Datei Namen -->
<finalName>TeamSpeak5.7.1</finalName>
<finalName>TeamSpeak5.7.2</finalName>
<!-- -->

<sourceDirectory>${basedir}/src</sourceDirectory>
Expand Down
5 changes: 3 additions & 2 deletions src/de/t0biii/ts/TeamSpeak.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,16 @@ public void onEnable(){
* Metrics start
*/
if (getConfig().getBoolean("options.Metrics")){
Metrics metrics = new Metrics(this);
int bstatsID = 203;
Metrics metrics = new Metrics(this, bstatsID);
startBstat(metrics);
}

/*
* Updater
*/
updater = new Updater(this, uid, getFile(), UpdateType.NO_DOWNLOAD, true);

/*
* Start Auto Chache
*/
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: TeamSpeakIP
author: T0biii
version: 5.7.1
version: 5.7.2
website: http://dev.bukkit.org/bukkit-plugins/teamspeak-ip/
description: Shows you the Teamspeak3IP
prefix: TeamSpeakIP
Expand Down