packages feed

discord-haskell 1.9.0 → 1.9.1

raw patch · 5 files changed

+18/−3 lines, 5 files

Files

README.md view
@@ -40,6 +40,19 @@ isPing = ("ping" `isPrefixOf`) . toLower . messageText ``` +```+-- ping-pong.cabal++executable haskell-bot+  main-is:             src/Main.hs+  default-language:    Haskell2010+  ghc-options:         -threaded+  build-depends:       base+                     , text+                     , unliftio+                     , discord-haskell+```+ ### Biggest TODOs  - [ ] APIv9
changelog.md view
@@ -6,7 +6,7 @@  ## master -## 1.9.0+## 1.9.1  Add [color attribute for CreateEmbed](https://github.com/aquarial/discord-haskell/issues/78) 
discord-haskell.cabal view
@@ -1,7 +1,7 @@ cabal-version:       2.0 name:                discord-haskell -- library version is also noted at src/Discord/Rest/Prelude.hs-version:             1.9.0+version:             1.9.1 description:         Functions and data types to write discord bots.                      Official discord docs <https://discord.com/developers/docs/reference>.                      .
src/Discord/Internal/Gateway.hs view
@@ -1,3 +1,5 @@+{-# LANGUAGE OverloadedStrings #-}+ -- | Provides a rather raw interface to the websocket events --   through a real-time Chan module Discord.Internal.Gateway
src/Discord/Internal/Rest/Prelude.hs view
@@ -29,7 +29,7 @@   where   -- | https://discord.com/developers/docs/reference#user-agent   -- Second place where the library version is noted-  agent = "DiscordBot (https://github.com/aquarial/discord-haskell, 1.9.0)"+  agent = "DiscordBot (https://github.com/aquarial/discord-haskell, 1.9.1)"  -- Append to an URL infixl 5 //