Skip to content

Commit

Permalink
Updated to latest version of DSharpPlus packages
Browse files Browse the repository at this point in the history
  • Loading branch information
CPULL committed Apr 27, 2022
1 parent e24c32f commit e3974b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion UPBot Code/Commands/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class Version : BaseCommandModule {
[Command("Version")]
[Description("Get version information about the bot.")]
public async Task VersionCommand(CommandContext ctx) {
string authors = "**CPU**, **Duck**, **Eremiell**, **SlicEnDicE**, **J0nathan**";
string authors = "**CPU**, **Duck**, **Eremiell**, **SlicEnDicE**, **J0nathan**, **Revolution**";

await ctx.Message.RespondAsync(Utils.BuildEmbed("United Programming Bot",
"**Version**: " + Utils.GetVersion() + "\n\nContributors: " +
Expand Down
2 changes: 1 addition & 1 deletion UPBot Code/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class Utils
readonly private static Dictionary<string, StreamWriter> logs = new Dictionary<string, StreamWriter>();

public static string GetVersion() {
return vmajor + "." + vminor + "." + vbuild + " - 2022/04/25";
return vmajor + "." + vminor + "." + vbuild + " - 2022/04/27";
}

public static DiscordClient GetClient() {
Expand Down
8 changes: 4 additions & 4 deletions UPBot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.2.0-nightly-01072" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.2.0-nightly-01072" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.2.0-nightly-01072" />
<PackageReference Include="DSharpPlus" Version="4.2.0" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.2.0" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.2.0" />
<PackageReference Include="SQLite" Version="3.13.0" />
<PackageReference Include="System.Data.SQLite" Version="1.0.114.4" />
<PackageReference Include="System.Data.SQLite" Version="1.0.115.5" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.3" />
</ItemGroup>
Expand Down

0 comments on commit e3974b0

Please sign in to comment.