-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from gretmn102/dev
feat: add cooldown option to custom commands and make custom random probabilities
- Loading branch information
Showing
54 changed files
with
1,409 additions
and
642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,35 @@ | ||
strategy: min | ||
storage: none | ||
source https://api.nuget.org/v3/index.json | ||
|
||
framework: netstandard2.0, netcoreapp3.1 | ||
nuget FSharp.Core | ||
nuget DSharpPlus | ||
nuget DSharpPlus.Rest | ||
nuget FSharp.Core = 5.0.2 | ||
nuget DSharpPlus = 4.3 | ||
nuget DSharpPlus.Rest = 4.3 | ||
nuget Fuchu | ||
nuget FParsec | ||
nuget HtmlAgilityPack | ||
nuget Newtonsoft.Json | ||
nuget Newtonsoft.Json.Bson | ||
nuget YamlDotNet | ||
nuget TextCopy | ||
nuget SixLabors.ImageSharp == 1.0.4 | ||
nuget SixLabors.Fonts == 1.0.0-beta15 | ||
nuget SixLabors.ImageSharp.Drawing == 1.0.0-beta13 | ||
nuget Svg | ||
nuget MongoDB.Driver | ||
nuget ably.io | ||
nuget dotenv.net | ||
nuget Saturn == 0.14.1 | ||
nuget Giraffe == 4.1 | ||
nuget Svg = 3.2.3 | ||
nuget MongoDB.Driver = 2.13.2 | ||
nuget ably.io = 1.2.8 | ||
nuget dotenv.net = 3.1.2 | ||
|
||
git https://github.com/gretmn102/rp-discord-bot.git | ||
|
||
source https://gitlab.com/api/v4/projects/28574921/packages/nuget/index.json | ||
storage: none | ||
nuget FSharpMyExt | ||
nuget DiscordBotExtensions | ||
nuget FSharpMyExt prerelease | ||
nuget DiscordBotExtensions = 0.10.0 | ||
|
||
group Build | ||
strategy: min | ||
source https://api.nuget.org/v3/index.json | ||
framework: netstandard2.0 | ||
storage: none | ||
|
||
nuget FSharp.Core | ||
nuget Fake.Core.ReleaseNotes | ||
nuget Fake.Core.Target | ||
nuget Fake.DotNet.Cli | ||
nuget Fake.IO.FileSystem | ||
nuget Farmer | ||
nuget FSharp.Core == 5.0.2 | ||
nuget Fake.Core.ReleaseNotes == 5.20.4 | ||
nuget Fake.Core.Target == 5.20.4 | ||
nuget Fake.DotNet.Cli == 5.20.4 | ||
nuget Fake.IO.FileSystem == 5.20.4 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Api | ||
open Shared | ||
open DiscordBotExtensions | ||
|
||
module ApiProtocol = | ||
open Newtonsoft.Json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module ChatVoice.Model | ||
open Types | ||
open DiscordBotExtensions.Types | ||
|
||
type VoiceChannelId = ChannelId | ||
type Settings = Map<GuildId, Map<VoiceChannelId, ChannelId>> |
Oops, something went wrong.