File tree 4 files changed +20
-3
lines changed
src/main/java/com/kamesuta/schemuploader
4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
# SchemUploader
2
2
![ 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 )
3
7
4
8
Allows you to upload/download WorldEdit schem files to/from Discord.
5
9
@@ -9,7 +13,7 @@ Allows you to upload/download WorldEdit schem files to/from Discord.
9
13
` /schem_upload <schem_name> [message] `
10
14
- Download
11
15
` /schem_download <schem_name> <schem_file_URL> [-f] `
12
- ![ Video] ( https://i.gyazo.com/683abfa22a46fe11bd3136d0d64da91f .gif )
16
+ ![ Video] ( https://i.gyazo.com/98c1e6c2565a580b6b3d1017228fb513 .gif )
13
17
14
18
### How to get schem file URL
15
19
Right-click on the attached file and click "Copy link"
Original file line number Diff line number Diff line change 1
1
# SchemUploader
2
2
![ 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 )
3
7
4
8
WorldEditのschemファイルをDiscordにアップロード/ダウンロードできるようにします。
5
9
@@ -9,7 +13,7 @@ WorldEditのschemファイルをDiscordにアップロード/ダウンロード
9
13
` /schem_upload <schem名> [メッセージ] `
10
14
- ダウンロード
11
15
` /schem_download <schem名> <schemファイルのURL> [-f] `
12
- ![ Video] ( https://i.gyazo.com/683abfa22a46fe11bd3136d0d64da91f .gif )
16
+ ![ Video] ( https://i.gyazo.com/98c1e6c2565a580b6b3d1017228fb513 .gif )
13
17
14
18
### schemファイルのURL取得方法
15
19
添付ファイルを右クリックし、「リンクをコピー」をクリックします
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.kamesuta</groupId >
8
8
<artifactId >SchemUploader</artifactId >
9
- <version >1.7 -SNAPSHOT</version >
9
+ <version >1.8 -SNAPSHOT</version >
10
10
<packaging >jar</packaging >
11
11
12
12
<name >SchemUploader</name >
31
31
<groupId >org.apache.maven.plugins</groupId >
32
32
<artifactId >maven-shade-plugin</artifactId >
33
33
<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 >
34
42
<executions >
35
43
<execution >
36
44
<phase >package</phase >
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ public void onEnable() {
76
76
77
77
// Statistics
78
78
statistics = new Statistics ();
79
+ statistics .register ();
79
80
}
80
81
81
82
@ Override
You can’t perform that action at this time.
0 commit comments