Skip to content

Commit 69541a1

Browse files
committed
Add README label and fix statistics
1 parent a376d9d commit 69541a1

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# SchemUploader
22
![LogoArt](https://i.gyazo.com/b5b852f4e74c7d76377c7d5fb37ba17f.png)
3+
[![License: MIT](https://img.shields.io/github/license/Kamesuta/BungeePteroPower?label=License)](LICENSE)
4+
[![Spigotmc Version](https://img.shields.io/spiget/version/115170?logo=spigotmc&label=Spigotmc%20Version)](https://www.spigotmc.org/resources/schemuploader-transfers-your-schematic-data-across-servers-with-discord.115170/)
5+
[![Spigotmc Downloads](https://img.shields.io/spiget/downloads/115170?logo=spigotmc&label=Spigotmc%20Downloads)](https://www.spigotmc.org/resources/schemuploader-transfers-your-schematic-data-across-servers-with-discord.115170/)
6+
[![bStats Servers](https://img.shields.io/bstats/servers/21061?label=bStats%20Servers)](https://bstats.org/plugin/bukkit/SchemUploader/21061)
37

48
Allows you to upload/download WorldEdit schem files to/from Discord.
59

@@ -9,7 +13,7 @@ Allows you to upload/download WorldEdit schem files to/from Discord.
913
`/schem_upload <schem_name> [message]`
1014
- Download
1115
`/schem_download <schem_name> <schem_file_URL> [-f]`
12-
![Video](https://i.gyazo.com/683abfa22a46fe11bd3136d0d64da91f.gif)
16+
![Video](https://i.gyazo.com/98c1e6c2565a580b6b3d1017228fb513.gif)
1317

1418
### How to get schem file URL
1519
Right-click on the attached file and click "Copy link"

README_ja.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# SchemUploader
22
![LogoArt](https://i.gyazo.com/b5b852f4e74c7d76377c7d5fb37ba17f.png)
3+
[![License: MIT](https://img.shields.io/github/license/Kamesuta/BungeePteroPower?label=License)](LICENSE)
4+
[![Spigotmc Version](https://img.shields.io/spiget/version/115170?logo=spigotmc&label=Spigotmc%20Version)](https://www.spigotmc.org/resources/schemuploader-transfers-your-schematic-data-across-servers-with-discord.115170/)
5+
[![Spigotmc Downloads](https://img.shields.io/spiget/downloads/115170?logo=spigotmc&label=Spigotmc%20Downloads)](https://www.spigotmc.org/resources/schemuploader-transfers-your-schematic-data-across-servers-with-discord.115170/)
6+
[![bStats Servers](https://img.shields.io/bstats/servers/21061?label=bStats%20Servers)](https://bstats.org/plugin/bukkit/SchemUploader/21061)
37

48
WorldEditのschemファイルをDiscordにアップロード/ダウンロードできるようにします。
59

@@ -9,7 +13,7 @@ WorldEditのschemファイルをDiscordにアップロード/ダウンロード
913
`/schem_upload <schem名> [メッセージ]`
1014
- ダウンロード
1115
`/schem_download <schem名> <schemファイルのURL> [-f]`
12-
![Video](https://i.gyazo.com/683abfa22a46fe11bd3136d0d64da91f.gif)
16+
![Video](https://i.gyazo.com/98c1e6c2565a580b6b3d1017228fb513.gif)
1317

1418
### schemファイルのURL取得方法
1519
添付ファイルを右クリックし、「リンクをコピー」をクリックします

pom.xml

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.kamesuta</groupId>
88
<artifactId>SchemUploader</artifactId>
9-
<version>1.7-SNAPSHOT</version>
9+
<version>1.8-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SchemUploader</name>
@@ -31,6 +31,14 @@
3131
<groupId>org.apache.maven.plugins</groupId>
3232
<artifactId>maven-shade-plugin</artifactId>
3333
<version>3.2.4</version>
34+
<configuration>
35+
<relocations>
36+
<relocation>
37+
<pattern>org.bstats</pattern>
38+
<shadedPattern>com.kamesuta.schemuploader.lib.bstats</shadedPattern>
39+
</relocation>
40+
</relocations>
41+
</configuration>
3442
<executions>
3543
<execution>
3644
<phase>package</phase>

src/main/java/com/kamesuta/schemuploader/SchemUploader.java

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public void onEnable() {
7676

7777
// Statistics
7878
statistics = new Statistics();
79+
statistics.register();
7980
}
8081

8182
@Override

0 commit comments

Comments
 (0)