From d7a28d3bdb513b286df2993d59662f92d1f2eaaa Mon Sep 17 00:00:00 2001 From: starkoka Date: Wed, 9 Nov 2022 08:15:03 +0900 Subject: [PATCH 1/6] =?UTF-8?q?=E8=AA=A4=E5=AD=97=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E3=81=A8=E3=80=81=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E6=83=85=E5=A0=B1=E3=81=AE=E8=87=AA=E5=8B=95=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/general.js | 15 ++++++++------- commands/studyCommands.js | 4 ++-- package.json | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/commands/general.js b/commands/general.js index ea316cbb..a47756dd 100644 --- a/commands/general.js +++ b/commands/general.js @@ -1,4 +1,5 @@ const { SlashCommandBuilder, EmbedBuilder } = require('discord.js') +const version = require('../package.json') module.exports = [ @@ -13,7 +14,7 @@ module.exports = .setTitle('ヘルプ') .setAuthor({ name: "木更津22s統合管理BOT", - iconURL: 'https://pbs.twimg.com/media/FcoDQ9zaIAUL08j?format=png&name=small', + iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', url: 'https://github.com/NITKC22s/bot-main' }) .setDescription('現在実装されているコマンド一覧です') @@ -35,7 +36,7 @@ module.exports = .setTitle('NITKC統合管理BOT概要') .setAuthor({ name: "木更津22s統合管理BOT", - iconURL: 'https://pbs.twimg.com/media/FcoDQ9zaIAUL08j?format=png&name=small', + iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', url: 'https://github.com/NITKC22s/bot-main' }) .setDescription('このbotの概要を紹介します') @@ -43,15 +44,15 @@ module.exports = [ { name: 'バージョン情報', - value: 'v3.0.0 ', + value: 'v' + version.version, }, { name: '開発者', - value: '開発は、このサーバーの管理者3人([kokastar](https://github.com/starkoka)、[NXVZBGB FBEN](https://github.com/NXVZBGBFBEN)、[naotiki](https://github.com/naotiki))で行っています', + value: '開発は、このサーバーの管理者4人([kokastar](https://github.com/starkoka)、[NXVZBGBFBEN](https://github.com/NXVZBGBFBEN)、[naotiki](https://github.com/naotiki)、[KouRo](https://github.com/Kou-Ro))で行っています', }, { name: '搭載機能', - value: '[Genshin-timer Discord BOT v2.0.0](https://github.com/starkoka/Genshin-Timer)\n時間割通知/閲覧機能', + value: '[Genshin-timer Discord BOT v2.0.0](https://github.com/starkoka/Genshin-Timer)\n時間割通知/閲覧機能\n自習室機能\nチャンネル作成機能\n', }, { name: 'ソースコード', @@ -59,7 +60,7 @@ module.exports = }, { name: '実行環境', - value: 'node.js v18.9.0\ndiscord.js v14.3.0', + value: 'node.js v19.0.0\ndiscord.js v14.3.0', }, ] ) @@ -68,4 +69,4 @@ module.exports = await interaction.reply({ embeds: [embed] }); }, }, - ] + ] \ No newline at end of file diff --git a/commands/studyCommands.js b/commands/studyCommands.js index 3e160764..b016b7ac 100644 --- a/commands/studyCommands.js +++ b/commands/studyCommands.js @@ -126,11 +126,11 @@ module.exports = .addFields( { name:"対象ボイスチャット", - value:"現在は「みんなの自習室」「一人の自習室」の2つが対象となっています。" + value:"現在は「みんなの教室」「一人の自習室」の2つが対象となっています。" }, { name:"データ確認方法", - value:"/studydate コマンドを使用してください。なお、一度も記録をしてない場合はデータがないので、対象のボイスチャッチに一度参加してから実行してみてください。" + value:"/studydate コマンドを使用してください。なお、一度も記録をしてない場合はデータがないので、対象のボイスチャットに一度参加してから実行してみてください。" }, { name:"ランク", diff --git a/package.json b/package.json index abd7957d..c1133f68 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ }, "name": "nitkc-main", "description": "", - "version": "1.1.1", + "version": "3.0.0", "main": "botmain.js", "scripts": { "dev": "cross-env NODE_ENV=development node .", From 09202e90cf1a05cb68a4d8a37bf3ffd0aa476a22 Mon Sep 17 00:00:00 2001 From: starkoka Date: Wed, 9 Nov 2022 08:22:37 +0900 Subject: [PATCH 2/6] =?UTF-8?q?=E8=AA=A4=E5=AD=97=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E3=81=A8=E6=83=85=E5=A0=B1=E6=9B=B4=E6=96=B0=E3=80=81=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E6=83=85=E5=A0=B1=E3=81=AE?= =?UTF-8?q?=E8=87=AA=E5=8B=95=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/general.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/general.js b/commands/general.js index 6cace7b8..dc2d1630 100644 --- a/commands/general.js +++ b/commands/general.js @@ -1,4 +1,5 @@ const { SlashCommandBuilder, EmbedBuilder } = require('discord.js') +const version = require('../package.json') module.exports = [ @@ -43,7 +44,7 @@ module.exports = [ { name: 'バージョン情報', - value: 'v3.0.0 ', + value: 'v' + version.version, }, { name: '開発者', @@ -55,7 +56,7 @@ module.exports = }, { name: 'ソースコード', - value: '一部のソースコードはオープンソースとなっています。以下のリンクより参照してください。\n・[Genshin-timer](https://github.com/starkoka/Genshin-Timer)', + value: 'このBOTはオープンソースとなっています。以下のリンクより見ることが可能です。\n・[木更津22s統合管理bot](https://github.com/NITKC22s/bot-main)\n・[Genshin-timer](https://github.com/starkoka/Genshin-Timer)', }, { name: '実行環境', From 99b74e5b2c50a5429b233f8f531ba24098ff8810 Mon Sep 17 00:00:00 2001 From: starkoka Date: Wed, 9 Nov 2022 08:32:57 +0900 Subject: [PATCH 3/6] =?UTF-8?q?nodejs=E3=81=AE=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=82=82=E8=87=AA=E5=8B=95=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/general.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/general.js b/commands/general.js index dc2d1630..b90140a2 100644 --- a/commands/general.js +++ b/commands/general.js @@ -1,5 +1,5 @@ -const { SlashCommandBuilder, EmbedBuilder } = require('discord.js') -const version = require('../package.json') +const { SlashCommandBuilder, EmbedBuilder , version } = require('discord.js') +const packageVer = require('../package.json') module.exports = [ @@ -44,7 +44,7 @@ module.exports = [ { name: 'バージョン情報', - value: 'v' + version.version, + value: 'v' + packageVer.version, }, { name: '開発者', @@ -60,7 +60,7 @@ module.exports = }, { name: '実行環境', - value: 'node.js v18.9.0\ndiscord.js v14.3.0', + value: 'node.js v18.9.0\ndiscord.js v' + version, }, ] ) From 7e9eec2d49ee3b60acbb90e56946882fc14009ca Mon Sep 17 00:00:00 2001 From: starkoka Date: Thu, 10 Nov 2022 13:40:09 +0900 Subject: [PATCH 4/6] =?UTF-8?q?studydate=E3=81=AE=E6=9C=88=E3=81=AB?= =?UTF-8?q?=E9=96=A2=E3=81=99=E3=82=8B=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/studyCommands.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/studyCommands.js b/commands/studyCommands.js index 1d53876d..f891c40c 100644 --- a/commands/studyCommands.js +++ b/commands/studyCommands.js @@ -76,7 +76,7 @@ module.exports = dt.setDate(dt.getDate()+1) for(let i=0;i<7;i++){ dt.setDate(dt.getDate()-1); - month[i] = dt.getMonth(); + month[i] = dt.getMonth()+1; date[i] = dt.getDate(); } @@ -127,15 +127,15 @@ module.exports = .addFields( { name:"対象ボイスチャット", - value:"現在は「みんなの自習室」「一人の自習室」の2つが対象となっています。" + value:"現在は「みんなの教室」「一人の自習室」の2つが対象となっています。" }, { name:"データ確認方法", - value:"/studydate コマンドを使用してください。なお、一度も記録をしてない場合はデータがないので、対象のボイスチャッチに一度参加してから実行してみてください。" + value:"/studydate コマンドを使用してください。なお、一度も記録をしてない場合はデータがないので、対象のボイスチャットに一度参加してから実行してみてください。" }, { name:"ランク", - value:"直近7日間の勉強時間に応じて、ランクが設定されます。ランクは以下のように設定されています。\n\n赤:48時間以上\n橙:42時間以上\n黄:35時間以上\n青:24時間以上\n水:14時間以上\n緑:7時間以上\n茶:3時間以上\n灰:3時間未満" + value:"直近7日間の勉強時間に応じて、ランクが設定されます。ランクは以下のように設定されています。\n\n赤:48時間以上\n橙:42時間以上\n黄:35時間以上\n青:24時間以上\n水:14時間以上\n緑:7時間以上\n茶:3時間以上\n灰:3時間未満\n\n小数点以下切り捨てで表示しているため、必ずしも合計が一致するとは限りません。" } From f6daa405a4ec997faa1ccf21e2604f884b430f2a Mon Sep 17 00:00:00 2001 From: starkoka Date: Thu, 10 Nov 2022 13:42:06 +0900 Subject: [PATCH 5/6] =?UTF-8?q?=E8=A1=A8=E8=A8=98=E3=82=92=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/general.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/general.js b/commands/general.js index ea316cbb..e15f2b9f 100644 --- a/commands/general.js +++ b/commands/general.js @@ -43,7 +43,7 @@ module.exports = [ { name: 'バージョン情報', - value: 'v3.0.0 ', + value: 'v3.0.1 ', }, { name: '開発者', diff --git a/package.json b/package.json index abd7957d..c4992c34 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ }, "name": "nitkc-main", "description": "", - "version": "1.1.1", + "version": "3.0.1", "main": "botmain.js", "scripts": { "dev": "cross-env NODE_ENV=development node .", From a806ad6fd97f1db4006aacda3a9bb163ca2200e2 Mon Sep 17 00:00:00 2001 From: starkoka Date: Thu, 10 Nov 2022 13:59:50 +0900 Subject: [PATCH 6/6] update icon --- commands/general.js | 4 ++-- commands/studyCommands.js | 6 +++--- timetable/timetableUtils.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/commands/general.js b/commands/general.js index b90140a2..baea8bb4 100644 --- a/commands/general.js +++ b/commands/general.js @@ -14,7 +14,7 @@ module.exports = .setTitle('ヘルプ') .setAuthor({ name: "木更津22s統合管理BOT", - iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', + iconURL: 'https://media.discordapp.net/attachments/1004598980929404960/1039920326903087104/nitkc22io-1.png', url: 'https://github.com/NITKC22s/bot-main' }) .setDescription('現在実装されているコマンド一覧です') @@ -36,7 +36,7 @@ module.exports = .setTitle('NITKC統合管理BOT概要') .setAuthor({ name: "木更津22s統合管理BOT", - iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', + iconURL: 'https://media.discordapp.net/attachments/1004598980929404960/1039920326903087104/nitkc22io-1.png', url: 'https://github.com/NITKC22s/bot-main' }) .setDescription('このbotの概要を紹介します') diff --git a/commands/studyCommands.js b/commands/studyCommands.js index df2389fc..61288327 100644 --- a/commands/studyCommands.js +++ b/commands/studyCommands.js @@ -26,7 +26,7 @@ module.exports = .setTitle('データが存在しません') .setAuthor({ name: "木更津22s統合管理bot", - iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', + iconURL: 'https://media.discordapp.net/attachments/1004598980929404960/1039920326903087104/nitkc22io-1.png', url: 'https://github.com/NITKC22s/bot-main' }) .setDescription('データが存在しないか、破損しています。VCに参加してからもう一度試してください。それでもエラーが起きる場合は、管理者に連絡してください。') @@ -85,7 +85,7 @@ module.exports = .setTitle(user.name + 'の自習室データ') .setAuthor({ name: "木更津22s統合管理bot", - iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', + iconURL: 'https://media.discordapp.net/attachments/1004598980929404960/1039920326903087104/nitkc22io-1.png', url: 'https://github.com/NITKC22s/bot-main' }) .setThumbnail(user.icon) @@ -120,7 +120,7 @@ module.exports = .setTitle('自習室機能') .setAuthor({ name: "木更津22s統合管理bot", - iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', + iconURL: 'https://media.discordapp.net/attachments/1004598980929404960/1039920326903087104/nitkc22io-1.png', url: 'https://github.com/NITKC22s/bot-main' }) .setDescription('ボイスチャットに接続している時間を勉強している時間とみなし、勉強時間を記録してくれるツールです。') diff --git a/timetable/timetableUtils.js b/timetable/timetableUtils.js index 5ab5a0b0..14ae2699 100644 --- a/timetable/timetableUtils.js +++ b/timetable/timetableUtils.js @@ -3,7 +3,7 @@ const { EmbedBuilder } =require('discord.js') const tmp = new EmbedBuilder().setAuthor({ name: "木更津22s統合管理BOT", - iconURL: 'https://cdn.discordapp.com/attachments/994146493567078451/1039390600014860289/Untitled.png', + iconURL: 'https://media.discordapp.net/attachments/1004598980929404960/1039920326903087104/nitkc22io-1.png', url: 'https://github.com/NITKC22s/bot-main' }).setFooter({ text: 'Developed by NITKC22s server Admin' }); const dayOfWeeks = ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"]