packages feed

glirc 2.20.1 → 2.20.1.1

raw patch · 3 files changed

+13/−1 lines, 3 filesdep ~vtyPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: vty

API changes (from Hackage documentation)

- Client.State.EditBox: class HasLine c_aP40 where pos = (.) line pos text = (.) line text
+ Client.State.EditBox: class HasLine c_aP4g where pos = (.) line pos text = (.) line text
- Client.State.EditBox: line :: HasLine c_aP40 => Lens' c_aP40 Line
+ Client.State.EditBox: line :: HasLine c_aP4g => Lens' c_aP4g Line
- Client.State.EditBox: pos :: HasLine c_aP40 => Lens' c_aP40 Int
+ Client.State.EditBox: pos :: HasLine c_aP4g => Lens' c_aP4g Int
- Client.State.EditBox: text :: HasLine c_aP40 => Lens' c_aP40 String
+ Client.State.EditBox: text :: HasLine c_aP4g => Lens' c_aP4g String
- Client.State.EditBox.Content: class HasLine c_aP40 where pos = (.) line pos text = (.) line text
+ Client.State.EditBox.Content: class HasLine c_aP4g where pos = (.) line pos text = (.) line text
- Client.State.EditBox.Content: line :: HasLine c_aP40 => Lens' c_aP40 Line
+ Client.State.EditBox.Content: line :: HasLine c_aP4g => Lens' c_aP4g Line
- Client.State.EditBox.Content: pos :: HasLine c_aP40 => Lens' c_aP40 Int
+ Client.State.EditBox.Content: pos :: HasLine c_aP4g => Lens' c_aP4g Int
- Client.State.EditBox.Content: text :: HasLine c_aP40 => Lens' c_aP40 String
+ Client.State.EditBox.Content: text :: HasLine c_aP4g => Lens' c_aP4g String

Files

ChangeLog.md view
@@ -1,5 +1,8 @@ # Revision history for glirc2 +## 2.20.1.1+* Remove macro dependency on happy and alex being installed for version information+ ## 2.20.1 * Support `vty-5.11.1` 
glirc.cabal view
@@ -1,5 +1,5 @@ name:                glirc-version:             2.20.1+version:             2.20.1.1 synopsis:            Console IRC client description:         Console IRC client                      .
src/Client/Options.hs view
@@ -1,4 +1,13 @@ {-# Language CPP, TemplateHaskell, MultiWayIf #-}++#ifndef TOOL_VERSION_alex+#define TOOL_VERSION_alex "none"+#endif++#ifndef TOOL_VERSION_happy+#define TOOL_VERSION_happy "none"+#endif+ {-| Module      : Client.Options Description : Processing of command-line options