Small update

This commit is contained in:
Emotion 2023-07-10 15:15:32 +12:00
parent e0db854334
commit b453730576
No known key found for this signature in database
GPG key ID: D7D3E4C27A98C37B
3 changed files with 15 additions and 16 deletions

View file

@ -103,7 +103,6 @@ internal static class Breadcraft
discordClient.UseInteractivity(new InteractivityConfiguration
{
AckPaginationButtons = true,
PaginationBehaviour = PaginationBehaviour.Ignore,
PaginationDeletion = PaginationDeletion.DeleteMessage,
Timeout = TimeSpan.FromMinutes(15)

View file

@ -9,17 +9,17 @@
<StartupObject>Breadcraft.Breadcraft</StartupObject>
<Authors>EmotionChild</Authors>
<Product />
<PackageProjectUrl>https://github.com/BreadCraft-staff/Breadcraft-Support</PackageProjectUrl>
<RepositoryUrl>https://github.com/BreadCraft-staff/Breadcraft-Support</RepositoryUrl>
<PackageProjectUrl>https://toastielab.dev/Emotions-stuff/Breadcraft-Support</PackageProjectUrl>
<RepositoryUrl>https://toastielab.dev/Emotions-stuff/Breadcraft-Support</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIconUrl>https://cdn.discordapp.com/attachments/765441543100170271/905694651573489674/german_breadcraft.png</PackageIconUrl>
<Description>A Discord support ticket bot built for the Breadcraft server</Description>
<NeutralLanguage>en</NeutralLanguage>
<Version>1.3.0</Version>
<PackageVersion>1.3.0</PackageVersion>
<AssemblyVersion>3.0.0.1</AssemblyVersion>
<FileVersion>3.0.0.1</FileVersion>
<Version>1.3.1</Version>
<PackageVersion>3.0.1</PackageVersion>
<AssemblyVersion>3.0.1</AssemblyVersion>
<FileVersion>1.3.1</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
@ -27,19 +27,19 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.4.0-nightly-01249" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.4.0-nightly-01249" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.0-nightly-01249" />
<PackageReference Include="Gress" Version="2.0.1" />
<PackageReference Include="DSharpPlus" Version="4.4.1" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.4.1" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.1" />
<PackageReference Include="Gress" Version="2.1.1" />
<PackageReference Include="JsonExtensions" Version="1.2.0" />
<PackageReference Include="MiniRazor.CodeGen" Version="2.2.1" />
<PackageReference Include="MySqlConnector" Version="2.2.5" />
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.1" />
<PackageReference Include="MySqlConnector" Version="2.2.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly" Version="7.2.3" />
<PackageReference Include="Superpower" Version="3.0.0" />
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.5" />
<PackageReference Include="WebMarkupMin.Core" Version="2.9.0" />
<PackageReference Include="YamlDotNet" Version="12.0.0" />
<PackageReference Include="WebMarkupMin.Core" Version="2.14.0" />
<PackageReference Include="YamlDotNet" Version="13.1.0" />
</ItemGroup>
<ItemGroup>

View file

@ -15,7 +15,7 @@ public class StatusCommand : ApplicationCommandModule
long closedTickets = Database.GetNumberOfClosedTickets();
DiscordEmbed botInfo = new DiscordEmbedBuilder()
.WithAuthor("BreadCraft-staff/Breadcraft-Support @ GitHub", "https://github.com/BreadCraft-staff/Breadcraft-Support", "https://cdn.discordapp.com/attachments/765441543100170271/905694651573489674/german_breadcraft.png")
.WithAuthor("Emotions-stuff/Breadcraft-Support @ Toastielab", "https://toastielab.dev/Emotions-stuff/Breadcraft-Support", "https://cdn.discordapp.com/attachments/765441543100170271/905694651573489674/german_breadcraft.png")
.WithTitle("Bot information")
.WithColor(DiscordColor.Cyan)
.AddField("Version:", Breadcraft.GetVersion())