From 5606c7431c111838a19582a24eff9f94f8f1dc51 Mon Sep 17 00:00:00 2001 From: kosugi_kun Date: Wed, 8 Sep 2021 13:10:59 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B9=E3=83=A9=E3=83=83=E3=82=B7=E3=83=A5?= =?UTF-8?q?=E3=82=B3=E3=83=9E=E3=83=B3=E3=83=89=E3=81=AB=E6=AD=A3=E5=BC=8F?= =?UTF-8?q?=E5=AF=BE=E5=BF=9C=20=E8=AA=AD=E3=81=BF=E4=B8=8A=E3=81=92?= =?UTF-8?q?=E7=94=A8=E3=81=AE=E3=83=86=E3=82=AD=E3=82=B9=E3=83=88=E3=83=81?= =?UTF-8?q?=E3=83=A3=E3=83=B3=E3=83=8D=E3=83=AB=E3=82=92=E8=A8=AD=E5=AE=9A?= =?UTF-8?q?=E3=81=97=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88?= =?UTF-8?q?=E3=81=AFjoin=E3=82=B3=E3=83=9E=E3=83=B3=E3=83=89=E3=82=92?= =?UTF-8?q?=E5=AE=9F=E8=A1=8C=E3=81=97=E3=81=9F=E3=83=81=E3=83=A3=E3=83=B3?= =?UTF-8?q?=E3=83=8D=E3=83=AB=E3=82=92=E8=AA=AD=E3=81=BF=E4=B8=8A=E3=81=92?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/---.md | 4 +- .../bcae6d7f-dd17-487e-ab3f-743f9b393d89.xml | 717 +++++++++------- .idea/jarRepositories.xml | 5 + pom.xml | 13 +- .../jagrosh/jdautilities/command/Command.java | 790 ------------------ .../command/CommandClientBuilder.java | 426 ---------- .../command/impl/CommandClientImpl.java | 662 --------------- .../dev/cosgy/TextToSpeak/TextToSpeak.java | 40 +- .../TextToSpeak/commands/AdminCommand.java | 4 +- .../TextToSpeak/commands/OwnerCommand.java | 4 +- .../commands/admin/GuildSettings.java | 15 + .../TextToSpeak/commands/admin/JLReadCmd.java | 14 + .../commands/admin/SetReadNameCmd.java | 14 + .../TextToSpeak/commands/admin/SettcCmd.java | 62 ++ .../commands/dictionary/AddWordCmd.java | 32 +- .../commands/dictionary/DlWordCmd.java | 37 +- .../commands/dictionary/WordListCmd.java | 38 +- .../TextToSpeak/commands/general/ByeCmd.java | 14 +- .../TextToSpeak/commands/general/JoinCmd.java | 47 +- .../commands/general/SetIntonationCmd.java | 41 +- .../commands/general/SetSpeedCmd.java | 42 +- .../commands/general/SetVoiceCmd.java | 34 +- .../commands/general/SetVoiceQualityA.java | 52 +- .../commands/general/SetVoiceQualityFm.java | 45 +- .../commands/general/SettingsCmd.java | 20 +- .../commands/owner/ShutdownCmd.java | 19 + .../listeners/MessageListener.java | 11 +- .../slashCommands/CommandManager.java | 74 -- .../slashCommands/SlashCommand.java | 66 -- .../slashCommands/dictionary/AddWordCmd.java | 64 -- .../slashCommands/dictionary/DlWordCmd.java | 64 -- .../slashCommands/dictionary/WordListCmd.java | 96 --- .../slashCommands/general/JoinCmd.java | 59 -- .../general/SetIntonationCmd.java | 72 -- .../slashCommands/general/SetSpeedCmd.java | 65 -- .../slashCommands/general/SetVoiceCmd.java | 62 -- .../general/SetVoiceQualityA.java | 69 -- .../general/SetVoiceQualityFm.java | 68 -- .../slashCommands/general/SettingsCmd.java | 51 -- .../ByeCmd.java => utils/ReadChannel.java} | 30 +- 40 files changed, 946 insertions(+), 3096 deletions(-) delete mode 100644 src/main/java/com/jagrosh/jdautilities/command/Command.java delete mode 100644 src/main/java/com/jagrosh/jdautilities/command/CommandClientBuilder.java delete mode 100644 src/main/java/com/jagrosh/jdautilities/command/impl/CommandClientImpl.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/CommandManager.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/SlashCommand.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/dictionary/AddWordCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/dictionary/DlWordCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/dictionary/WordListCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/JoinCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/SetIntonationCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/SetSpeedCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/SetVoiceCmd.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/SetVoiceQualityA.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/SetVoiceQualityFm.java delete mode 100644 src/main/java/dev/cosgy/TextToSpeak/slashCommands/general/SettingsCmd.java rename src/main/java/dev/cosgy/TextToSpeak/{slashCommands/general/ByeCmd.java => utils/ReadChannel.java} (51%) diff --git a/.github/ISSUE_TEMPLATE/---.md b/.github/ISSUE_TEMPLATE/---.md index 977f4c6..cabf517 100644 --- a/.github/ISSUE_TEMPLATE/---.md +++ b/.github/ISSUE_TEMPLATE/---.md @@ -1,7 +1,5 @@ --- -name: その他 -about: その他のIssueを立てたい場合はこちら -title: '' +name: その他 about: その他のIssueを立てたい場合はこちら title: '' labels: '' assignees: '' diff --git a/.idea/dataSources/bcae6d7f-dd17-487e-ab3f-743f9b393d89.xml b/.idea/dataSources/bcae6d7f-dd17-487e-ab3f-743f9b393d89.xml index b7d4a63..e1d755d 100644 --- a/.idea/dataSources/bcae6d7f-dd17-487e-ab3f-743f9b393d89.xml +++ b/.idea/dataSources/bcae6d7f-dd17-487e-ab3f-743f9b393d89.xml @@ -1,9 +1,7 @@ - - 3.34.0 - + 1 @@ -369,962 +367,1037 @@ - + +
+
+ 1 +
+ + 1 +
+ R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + R - + 1 - + R - + R - + R - + 1 - + 2 - + R - + 1 - + 2 - + 3 - + R - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + R - + R - + R - + R - + R - + R - + 1 - + R - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + R - + R - + R - + R - + R - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + 1 - + R - + R - + 1 - + 2 - + R - + 1 - + 2 - + 3 - + R - + 1 - + 2 - + R - + 1 - + R - + R - + 1 - + R - + 1 - + 2 - + R - + R - + 1 - + R - + 1 - + 2 - + R - + R - + R - + 1 - + 2 - + R - + 1 - + R - + R - + R - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + R - + 1 - + 2 - + R - + 1 - + 2 - + 3 - + R - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + 2 - + 3 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + 3 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + R - + R - + 1 - + R - + 1 - + R - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + R - + R - + 1 - + 2 - + R - + R - + 1 - + R - + 1 - + R - + 1 - + R - + R - + 1 - + R - + R - + 1 - + 2 - + 3 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + R - + R - + 1 - + R - + 1 - + 2 - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + R - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + 2 - + R - + R - + 1 - + 2 - + 3 - + R - + 1 - + 2 - + 3 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + R - + 1 - + R - + R - + 1 - + 2 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 - + R - + 1 + + 1 + integer|0s + + + 2 + text|0s + + + 3 + text|0s + + + 1 + integer|0s + 1 + + + 2 + TEXT|0s + + + 3 + real|0s + + + 4 + real|0s + + + 5 + real|0s + + + 6 + real|0s + + + id + 1 + + + 1 + text|0s + + + 2 + text|0s + + + 3 + text|0s + + + 4 + int|0s + + + 5 + text|0s + + + 1 + + + 2 +
\ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml index 73a9829..681dc30 100644 --- a/.idea/jarRepositories.xml +++ b/.idea/jarRepositories.xml @@ -36,5 +36,10 @@