From 1fb87020f218ef197c37a59f3cde1d6db971761b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Gabriel?= Date: Tue, 18 Jun 2024 03:12:03 -0300 Subject: [PATCH] Fixes #46 copyright note code header --- src/APIs/CatApi.cs | 6 +++++- src/APIs/ChatGPT.cs | 6 +++++- src/APIs/HttpService.cs | 6 +++++- src/APIs/NasaApi.cs | 13 +++++++------ src/APIs/NasaApiApod.cs | 6 +++++- src/APIs/NasaApiApodResponse.cs | 6 +++++- src/Commands/CommandBasic.cs | 6 +++++- src/Commands/CommandBirthday.cs | 6 +++++- src/Commands/CommandInfo.cs | 6 +++++- src/Commands/CommandKwiGpt.cs | 6 +++++- src/Commands/CommandNasa.cs | 6 +++++- src/Commands/CommandNotice.cs | 6 +++++- src/Commands/CommandThemeTramontina.cs | 6 +++++- src/Commands/Prefix/PrefixBasic.cs | 6 +++++- src/Commands/Prefix/PrefixBirthday.cs | 6 +++++- src/Commands/Prefix/PrefixCommandManager.cs | 6 +++++- src/Commands/Prefix/PrefixInfo.cs | 6 +++++- src/Commands/Prefix/PrefixKwiGpt.cs | 6 +++++- src/Commands/Prefix/PrefixNasa.cs | 6 +++++- src/Commands/Prefix/PrefixNotice.cs | 6 +++++- src/Commands/Prefix/PrefixThemeTramontina.cs | 8 +++++--- src/Commands/Slash/SlashBasic.cs | 6 +++++- src/Commands/Slash/SlashBirthday.cs | 6 +++++- src/Commands/Slash/SlashInfo.cs | 6 +++++- src/Commands/Slash/SlashKwiGpt.cs | 6 +++++- src/Commands/Slash/SlashNasa.cs | 6 +++++- src/Commands/Slash/SlashNotice.cs | 6 +++++- src/Commands/Slash/SlashThemeTramontina.cs | 6 +++++- src/Data/Colors.cs | 6 +++++- src/Data/Emojis.cs | 6 +++++- src/Data/KWiJisho.cs | 6 +++++- src/Data/Servers.cs | 6 +++++- src/Data/Users.cs | 6 +++++- src/Entities/Channel.cs | 6 +++++- src/Entities/ChannelTramontina.cs | 6 +++++- src/Entities/Color.cs | 6 +++++- src/Entities/ConfigJson.cs | 6 +++++- src/Entities/Emoji.cs | 6 +++++- src/Entities/EmojiCatMeme.cs | 6 +++++- src/Entities/EmojiCatParty.cs | 6 +++++- src/Entities/Server.cs | 6 +++++- src/Entities/User.cs | 6 +++++- src/Events/ButtonInteraction.cs | 6 +++++- src/Events/GoodbyeWelcome.cs | 6 +++++- src/Events/KWiJishoBotStart.cs | 6 +++++- src/Events/MessageReceived.cs | 6 +++++- src/KWiJishoBot.cs | 6 +++++- src/KWiJishoBotRegister.cs | 6 +++++- src/Models/Birthday.cs | 6 +++++- src/Models/Nasa.cs | 7 +++++-- src/Properties/AssemblyInfo.cs | 5 ----- src/Scheduling/BirthdayJob.cs | 7 +++++-- src/Scheduling/NoticeJob.cs | 8 +++----- src/Scheduling/Scheduler.cs | 6 +++++- src/Utils/CommandCooldown.cs | 6 +++++- src/Utils/DiscordCustomEmbed.cs | 6 +++++- src/Utils/DiscordFormat.cs | 6 +++++- src/Utils/KWiJishoLog.cs | 6 +++++- src/Utils/KWiJishoLogs.cs | 6 +++++- src/Utils/KWiJishoPermission.cs | 6 +++++- src/Utils/UtilCollections.cs | 6 +++++- 61 files changed, 300 insertions(+), 78 deletions(-) diff --git a/src/APIs/CatApi.cs b/src/APIs/CatApi.cs index f521fe7..fdac88e 100644 --- a/src/APIs/CatApi.cs +++ b/src/APIs/CatApi.cs @@ -1,4 +1,8 @@ -using System; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using System; using System.Net.Http; namespace KWiJisho.APIs diff --git a/src/APIs/ChatGPT.cs b/src/APIs/ChatGPT.cs index 7e5dd79..b700525 100644 --- a/src/APIs/ChatGPT.cs +++ b/src/APIs/ChatGPT.cs @@ -1,4 +1,8 @@ -using KWiJisho.Config; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Config; using OpenAI_API; using OpenAI_API.Chat; using System.Threading.Tasks; diff --git a/src/APIs/HttpService.cs b/src/APIs/HttpService.cs index 412849e..31735eb 100644 --- a/src/APIs/HttpService.cs +++ b/src/APIs/HttpService.cs @@ -1,4 +1,8 @@ -using Newtonsoft.Json; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using Newtonsoft.Json; using System.Net.Http; using System.Threading.Tasks; using System; diff --git a/src/APIs/NasaApi.cs b/src/APIs/NasaApi.cs index 3b7670a..435915b 100644 --- a/src/APIs/NasaApi.cs +++ b/src/APIs/NasaApi.cs @@ -1,11 +1,12 @@ -using Newtonsoft.Json; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using Monambike.Core.Services; using System; -using System.Net.Http; -using static KWiJisho.APIs.NasaApi.Apod; -using System.Threading.Tasks; using System.Net; -using static System.Runtime.InteropServices.JavaScript.JSType; -using Monambike.Core.Services; +using System.Threading.Tasks; +using static KWiJisho.APIs.NasaApi.Apod; namespace KWiJisho.APIs { diff --git a/src/APIs/NasaApiApod.cs b/src/APIs/NasaApiApod.cs index 89fa270..bdca081 100644 --- a/src/APIs/NasaApiApod.cs +++ b/src/APIs/NasaApiApod.cs @@ -1,4 +1,8 @@ -using KWiJisho.Config; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Config; using System.Threading.Tasks; namespace KWiJisho.APIs diff --git a/src/APIs/NasaApiApodResponse.cs b/src/APIs/NasaApiApodResponse.cs index 7348907..c8bdb6b 100644 --- a/src/APIs/NasaApiApodResponse.cs +++ b/src/APIs/NasaApiApodResponse.cs @@ -1,4 +1,8 @@ -using Newtonsoft.Json; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using Newtonsoft.Json; using System; namespace KWiJisho.APIs diff --git a/src/Commands/CommandBasic.cs b/src/Commands/CommandBasic.cs index 5b4ffbc..cd8cab8 100644 --- a/src/Commands/CommandBasic.cs +++ b/src/Commands/CommandBasic.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.Data; using KWiJisho.Utils; using System.Threading.Tasks; diff --git a/src/Commands/CommandBirthday.cs b/src/Commands/CommandBirthday.cs index 20bfceb..bad3129 100644 --- a/src/Commands/CommandBirthday.cs +++ b/src/Commands/CommandBirthday.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.Config; using KWiJisho.Utils; using System; diff --git a/src/Commands/CommandInfo.cs b/src/Commands/CommandInfo.cs index 40c823b..bee20e2 100644 --- a/src/Commands/CommandInfo.cs +++ b/src/Commands/CommandInfo.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.Entities; using KWiJisho.Commands.Prefix; using KWiJisho.Config; diff --git a/src/Commands/CommandKwiGpt.cs b/src/Commands/CommandKwiGpt.cs index 8af7e1f..7ce2fb0 100644 --- a/src/Commands/CommandKwiGpt.cs +++ b/src/Commands/CommandKwiGpt.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.APIs; using KWiJisho.Config; using System.Threading.Tasks; diff --git a/src/Commands/CommandNasa.cs b/src/Commands/CommandNasa.cs index 53f8fec..5712a04 100644 --- a/src/Commands/CommandNasa.cs +++ b/src/Commands/CommandNasa.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.APIs; using System.Threading.Tasks; diff --git a/src/Commands/CommandNotice.cs b/src/Commands/CommandNotice.cs index 3dbcafb..9c67b8c 100644 --- a/src/Commands/CommandNotice.cs +++ b/src/Commands/CommandNotice.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.Entities; using KWiJisho.Data; using KWiJisho.Entities; diff --git a/src/Commands/CommandThemeTramontina.cs b/src/Commands/CommandThemeTramontina.cs index 284a9f5..71dc5e9 100644 --- a/src/Commands/CommandThemeTramontina.cs +++ b/src/Commands/CommandThemeTramontina.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.Entities; using KWiJisho.Entities; using KWiJisho.Utils; diff --git a/src/Commands/Prefix/PrefixBasic.cs b/src/Commands/Prefix/PrefixBasic.cs index 1a5a73b..9c9a34e 100644 --- a/src/Commands/Prefix/PrefixBasic.cs +++ b/src/Commands/Prefix/PrefixBasic.cs @@ -1,4 +1,8 @@ -using DSharpPlus.CommandsNext; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; using System.Threading.Tasks; diff --git a/src/Commands/Prefix/PrefixBirthday.cs b/src/Commands/Prefix/PrefixBirthday.cs index 1fa4514..433d0dd 100644 --- a/src/Commands/Prefix/PrefixBirthday.cs +++ b/src/Commands/Prefix/PrefixBirthday.cs @@ -1,4 +1,8 @@ -using DSharpPlus.CommandsNext; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; using System.Threading.Tasks; diff --git a/src/Commands/Prefix/PrefixCommandManager.cs b/src/Commands/Prefix/PrefixCommandManager.cs index 71fc06b..2bf0b04 100644 --- a/src/Commands/Prefix/PrefixCommandManager.cs +++ b/src/Commands/Prefix/PrefixCommandManager.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using KWiJisho.Utils; using System; using System.Collections.Generic; diff --git a/src/Commands/Prefix/PrefixInfo.cs b/src/Commands/Prefix/PrefixInfo.cs index 51ce267..c9fb994 100644 --- a/src/Commands/Prefix/PrefixInfo.cs +++ b/src/Commands/Prefix/PrefixInfo.cs @@ -1,4 +1,8 @@ -using DSharpPlus.CommandsNext; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; using System.Threading.Tasks; diff --git a/src/Commands/Prefix/PrefixKwiGpt.cs b/src/Commands/Prefix/PrefixKwiGpt.cs index e25ec23..4fc0f52 100644 --- a/src/Commands/Prefix/PrefixKwiGpt.cs +++ b/src/Commands/Prefix/PrefixKwiGpt.cs @@ -1,4 +1,8 @@ -using DSharpPlus.CommandsNext; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; using KWiJisho.Commands; using System.Threading.Tasks; diff --git a/src/Commands/Prefix/PrefixNasa.cs b/src/Commands/Prefix/PrefixNasa.cs index e00b007..e137600 100644 --- a/src/Commands/Prefix/PrefixNasa.cs +++ b/src/Commands/Prefix/PrefixNasa.cs @@ -1,4 +1,8 @@ -using DSharpPlus.CommandsNext; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; using KWiJisho.Utils; using System.Threading.Tasks; diff --git a/src/Commands/Prefix/PrefixNotice.cs b/src/Commands/Prefix/PrefixNotice.cs index cb7cf2a..c77d2be 100644 --- a/src/Commands/Prefix/PrefixNotice.cs +++ b/src/Commands/Prefix/PrefixNotice.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; using KWiJisho.Config; diff --git a/src/Commands/Prefix/PrefixThemeTramontina.cs b/src/Commands/Prefix/PrefixThemeTramontina.cs index 0f94b1f..bf1f8b6 100644 --- a/src/Commands/Prefix/PrefixThemeTramontina.cs +++ b/src/Commands/Prefix/PrefixThemeTramontina.cs @@ -1,8 +1,10 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.CommandsNext; using DSharpPlus.CommandsNext.Attributes; -using DSharpPlus.Entities; -using KWiJisho.Entities; using System.Threading.Tasks; namespace KWiJisho.Commands.Prefix diff --git a/src/Commands/Slash/SlashBasic.cs b/src/Commands/Slash/SlashBasic.cs index b206e61..130cebd 100644 --- a/src/Commands/Slash/SlashBasic.cs +++ b/src/Commands/Slash/SlashBasic.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.SlashCommands; using System.Threading.Tasks; diff --git a/src/Commands/Slash/SlashBirthday.cs b/src/Commands/Slash/SlashBirthday.cs index 9ebd800..4092af7 100644 --- a/src/Commands/Slash/SlashBirthday.cs +++ b/src/Commands/Slash/SlashBirthday.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.SlashCommands; using System.Threading.Tasks; diff --git a/src/Commands/Slash/SlashInfo.cs b/src/Commands/Slash/SlashInfo.cs index e609a22..aafcd8e 100644 --- a/src/Commands/Slash/SlashInfo.cs +++ b/src/Commands/Slash/SlashInfo.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.SlashCommands; using System.Threading.Tasks; diff --git a/src/Commands/Slash/SlashKwiGpt.cs b/src/Commands/Slash/SlashKwiGpt.cs index 1589dc7..dd41bbe 100644 --- a/src/Commands/Slash/SlashKwiGpt.cs +++ b/src/Commands/Slash/SlashKwiGpt.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.SlashCommands; using System.Threading.Tasks; diff --git a/src/Commands/Slash/SlashNasa.cs b/src/Commands/Slash/SlashNasa.cs index 774ee37..eb4f2cc 100644 --- a/src/Commands/Slash/SlashNasa.cs +++ b/src/Commands/Slash/SlashNasa.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.SlashCommands; using System.Threading.Tasks; diff --git a/src/Commands/Slash/SlashNotice.cs b/src/Commands/Slash/SlashNotice.cs index 051ed63..8ebfeb1 100644 --- a/src/Commands/Slash/SlashNotice.cs +++ b/src/Commands/Slash/SlashNotice.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.Entities; using DSharpPlus.SlashCommands; using DSharpPlus.SlashCommands.Attributes; diff --git a/src/Commands/Slash/SlashThemeTramontina.cs b/src/Commands/Slash/SlashThemeTramontina.cs index a171fc1..fffc06e 100644 --- a/src/Commands/Slash/SlashThemeTramontina.cs +++ b/src/Commands/Slash/SlashThemeTramontina.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.SlashCommands; using DSharpPlus.SlashCommands.Attributes; using System.Threading.Tasks; diff --git a/src/Data/Colors.cs b/src/Data/Colors.cs index bf38db4..51b56e8 100644 --- a/src/Data/Colors.cs +++ b/src/Data/Colors.cs @@ -1,4 +1,8 @@ -using KWiJisho.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Entities; namespace KWiJisho.Data { diff --git a/src/Data/Emojis.cs b/src/Data/Emojis.cs index 3d0769b..3f7d0be 100644 --- a/src/Data/Emojis.cs +++ b/src/Data/Emojis.cs @@ -1,4 +1,8 @@ -using KWiJisho.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Entities; using System.Collections.Generic; namespace KWiJisho.Data diff --git a/src/Data/KWiJisho.cs b/src/Data/KWiJisho.cs index 2ef6d8e..de112d0 100644 --- a/src/Data/KWiJisho.cs +++ b/src/Data/KWiJisho.cs @@ -1,4 +1,8 @@ -using System; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using System; using System.Reflection; namespace KWiJisho.Data diff --git a/src/Data/Servers.cs b/src/Data/Servers.cs index 6954af0..d30bb9d 100644 --- a/src/Data/Servers.cs +++ b/src/Data/Servers.cs @@ -1,4 +1,8 @@ -using KWiJisho.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Entities; namespace KWiJisho.Data { diff --git a/src/Data/Users.cs b/src/Data/Users.cs index d3dc072..a01ba3b 100644 --- a/src/Data/Users.cs +++ b/src/Data/Users.cs @@ -1,4 +1,8 @@ -using KWiJisho.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Entities; using System; using System.Collections.Generic; diff --git a/src/Entities/Channel.cs b/src/Entities/Channel.cs index 24b87fb..070d579 100644 --- a/src/Entities/Channel.cs +++ b/src/Entities/Channel.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; namespace KWiJisho.Entities { diff --git a/src/Entities/ChannelTramontina.cs b/src/Entities/ChannelTramontina.cs index 6d46746..25a0a2c 100644 --- a/src/Entities/ChannelTramontina.cs +++ b/src/Entities/ChannelTramontina.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using System.Collections.Generic; using static KWiJisho.Commands.CommandThemeTramontina; diff --git a/src/Entities/Color.cs b/src/Entities/Color.cs index 456b51f..090ae63 100644 --- a/src/Entities/Color.cs +++ b/src/Entities/Color.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using Newtonsoft.Json; namespace KWiJisho.Entities diff --git a/src/Entities/ConfigJson.cs b/src/Entities/ConfigJson.cs index ba6075e..79dbf90 100644 --- a/src/Entities/ConfigJson.cs +++ b/src/Entities/ConfigJson.cs @@ -1,4 +1,8 @@ -using Newtonsoft.Json; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using Newtonsoft.Json; using System.IO; using System.Text; using System.Threading.Tasks; diff --git a/src/Entities/Emoji.cs b/src/Entities/Emoji.cs index 2c1a96c..5e573ed 100644 --- a/src/Entities/Emoji.cs +++ b/src/Entities/Emoji.cs @@ -1,4 +1,8 @@ -using KWiJisho.Data; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Data; namespace KWiJisho.Entities { diff --git a/src/Entities/EmojiCatMeme.cs b/src/Entities/EmojiCatMeme.cs index f1e4ec3..ce1d769 100644 --- a/src/Entities/EmojiCatMeme.cs +++ b/src/Entities/EmojiCatMeme.cs @@ -1,4 +1,8 @@ -using KWiJisho.Data; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Data; namespace KWiJisho.Entities { diff --git a/src/Entities/EmojiCatParty.cs b/src/Entities/EmojiCatParty.cs index 950d7e5..0e2a342 100644 --- a/src/Entities/EmojiCatParty.cs +++ b/src/Entities/EmojiCatParty.cs @@ -1,4 +1,8 @@ -using KWiJisho.Data; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using KWiJisho.Data; namespace KWiJisho.Entities { diff --git a/src/Entities/Server.cs b/src/Entities/Server.cs index 74a6612..881762d 100644 --- a/src/Entities/Server.cs +++ b/src/Entities/Server.cs @@ -1,4 +1,8 @@ -namespace KWiJisho.Entities +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +namespace KWiJisho.Entities { internal class Server() { diff --git a/src/Entities/User.cs b/src/Entities/User.cs index c58db51..700a025 100644 --- a/src/Entities/User.cs +++ b/src/Entities/User.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using System; namespace KWiJisho.Entities diff --git a/src/Events/ButtonInteraction.cs b/src/Events/ButtonInteraction.cs index 542f813..951878f 100644 --- a/src/Events/ButtonInteraction.cs +++ b/src/Events/ButtonInteraction.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.Entities; using DSharpPlus.EventArgs; using System; diff --git a/src/Events/GoodbyeWelcome.cs b/src/Events/GoodbyeWelcome.cs index 3109c96..9e7e207 100644 --- a/src/Events/GoodbyeWelcome.cs +++ b/src/Events/GoodbyeWelcome.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.Entities; using DSharpPlus.EventArgs; using KWiJisho.Config; diff --git a/src/Events/KWiJishoBotStart.cs b/src/Events/KWiJishoBotStart.cs index fa72fa6..d0e18bf 100644 --- a/src/Events/KWiJishoBotStart.cs +++ b/src/Events/KWiJishoBotStart.cs @@ -1,4 +1,8 @@ -using DSharpPlus.EventArgs; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.EventArgs; using System.Threading.Tasks; namespace KWiJisho.Events diff --git a/src/Events/MessageReceived.cs b/src/Events/MessageReceived.cs index fa1ffcf..9d90315 100644 --- a/src/Events/MessageReceived.cs +++ b/src/Events/MessageReceived.cs @@ -1,4 +1,8 @@ -using DSharpPlus.EventArgs; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.EventArgs; using System.Threading.Tasks; namespace KWiJisho.Events diff --git a/src/KWiJishoBot.cs b/src/KWiJishoBot.cs index 74024ae..ce62f13 100644 --- a/src/KWiJishoBot.cs +++ b/src/KWiJishoBot.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.CommandsNext; using DSharpPlus.Entities; using DSharpPlus.SlashCommands; diff --git a/src/KWiJishoBotRegister.cs b/src/KWiJishoBotRegister.cs index e9ce8a4..e30a5a5 100644 --- a/src/KWiJishoBotRegister.cs +++ b/src/KWiJishoBotRegister.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using DSharpPlus.CommandsNext.Attributes; using DSharpPlus.CommandsNext.Exceptions; using DSharpPlus.SlashCommands; diff --git a/src/Models/Birthday.cs b/src/Models/Birthday.cs index fb1d58f..e7e5225 100644 --- a/src/Models/Birthday.cs +++ b/src/Models/Birthday.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.APIs; using KWiJisho.Data; using KWiJisho.Entities; diff --git a/src/Models/Nasa.cs b/src/Models/Nasa.cs index 298605d..27c77d0 100644 --- a/src/Models/Nasa.cs +++ b/src/Models/Nasa.cs @@ -1,11 +1,14 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.APIs; using KWiJisho.Config; using KWiJisho.Utils; using System; using System.Threading.Tasks; using static KWiJisho.APIs.NasaApi.Apod; -using static KWiJisho.Models.Nasa; namespace KWiJisho.Models { diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs index 94b86bc..a982f53 100644 --- a/src/Properties/AssemblyInfo.cs +++ b/src/Properties/AssemblyInfo.cs @@ -1,13 +1,8 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// Definir ComVisible como false torna os tipos neste assembly invisíveis -// para componentes COM. Caso precise acessar um tipo neste assembly de -// COM, defina o atributo ComVisible como true nesse tipo. [assembly: ComVisible(false)] -// O GUID a seguir será destinado à ID de typelib se este projeto for exposto para COM [assembly: Guid("f8209398-1c52-4997-946e-0685773b08dd")] diff --git a/src/Scheduling/BirthdayJob.cs b/src/Scheduling/BirthdayJob.cs index e520dbc..c45dfd5 100644 --- a/src/Scheduling/BirthdayJob.cs +++ b/src/Scheduling/BirthdayJob.cs @@ -1,7 +1,10 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using KWiJisho.Commands; using KWiJisho.Data; -using KWiJisho.Models; using KWiJisho.Utils; using Quartz; using System.Threading.Tasks; diff --git a/src/Scheduling/NoticeJob.cs b/src/Scheduling/NoticeJob.cs index 07ff4ed..8cb9e9b 100644 --- a/src/Scheduling/NoticeJob.cs +++ b/src/Scheduling/NoticeJob.cs @@ -1,8 +1,6 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. namespace KWiJisho.Scheduling { diff --git a/src/Scheduling/Scheduler.cs b/src/Scheduling/Scheduler.cs index 2245a97..4f06984 100644 --- a/src/Scheduling/Scheduler.cs +++ b/src/Scheduling/Scheduler.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using Quartz; using Quartz.Impl; using System.Threading.Tasks; diff --git a/src/Utils/CommandCooldown.cs b/src/Utils/CommandCooldown.cs index 4906101..e0fad67 100644 --- a/src/Utils/CommandCooldown.cs +++ b/src/Utils/CommandCooldown.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using System; using System.Collections.Generic; using System.Linq; diff --git a/src/Utils/DiscordCustomEmbed.cs b/src/Utils/DiscordCustomEmbed.cs index dffc592..cd48fee 100644 --- a/src/Utils/DiscordCustomEmbed.cs +++ b/src/Utils/DiscordCustomEmbed.cs @@ -1,4 +1,8 @@ -using DSharpPlus.Entities; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus.Entities; using KWiJisho.Config; using System.IO; diff --git a/src/Utils/DiscordFormat.cs b/src/Utils/DiscordFormat.cs index 9aa8fd9..17e9ecc 100644 --- a/src/Utils/DiscordFormat.cs +++ b/src/Utils/DiscordFormat.cs @@ -1,4 +1,8 @@ -namespace KWiJisho.Utils +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +namespace KWiJisho.Utils { /// /// Provides utility extension methods for formatting text with Discord markdown. diff --git a/src/Utils/KWiJishoLog.cs b/src/Utils/KWiJishoLog.cs index 0d81196..b2a277c 100644 --- a/src/Utils/KWiJishoLog.cs +++ b/src/Utils/KWiJishoLog.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using KWiJisho.Data; using System; using System.IO; diff --git a/src/Utils/KWiJishoLogs.cs b/src/Utils/KWiJishoLogs.cs index 561e8e4..fc8a78e 100644 --- a/src/Utils/KWiJishoLogs.cs +++ b/src/Utils/KWiJishoLogs.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; namespace KWiJisho.Utils { diff --git a/src/Utils/KWiJishoPermission.cs b/src/Utils/KWiJishoPermission.cs index 8e21cf8..f650315 100644 --- a/src/Utils/KWiJishoPermission.cs +++ b/src/Utils/KWiJishoPermission.cs @@ -1,4 +1,8 @@ -using DSharpPlus; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using DSharpPlus; using System; namespace KWiJisho.Utils diff --git a/src/Utils/UtilCollections.cs b/src/Utils/UtilCollections.cs index f160a0b..e0a3fd8 100644 --- a/src/Utils/UtilCollections.cs +++ b/src/Utils/UtilCollections.cs @@ -1,4 +1,8 @@ -using System; +// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved. +// Contact: @monambike for more information. +// For license information, please see the LICENSE file in the root directory. + +using System; using System.Collections.Generic; namespace KWiJisho.Utils