termonad 4.0.0.1 → 4.0.1.0
raw patch · 3 files changed
+19/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Termonad.Config.Colour: lensBackgroundColour :: forall c_a2dZt. Lens' (ColourConfig c_a2dZt) (Option c_a2dZt)
+ Termonad.Config.Colour: lensBackgroundColour :: forall c_a2dZP. Lens' (ColourConfig c_a2dZP) (Option c_a2dZP)
- Termonad.Config.Colour: lensCursorBgColour :: forall c_a2dZt. Lens' (ColourConfig c_a2dZt) (Option c_a2dZt)
+ Termonad.Config.Colour: lensCursorBgColour :: forall c_a2dZP. Lens' (ColourConfig c_a2dZP) (Option c_a2dZP)
- Termonad.Config.Colour: lensCursorFgColour :: forall c_a2dZt. Lens' (ColourConfig c_a2dZt) (Option c_a2dZt)
+ Termonad.Config.Colour: lensCursorFgColour :: forall c_a2dZP. Lens' (ColourConfig c_a2dZP) (Option c_a2dZP)
- Termonad.Config.Colour: lensForegroundColour :: forall c_a2dZt. Lens' (ColourConfig c_a2dZt) (Option c_a2dZt)
+ Termonad.Config.Colour: lensForegroundColour :: forall c_a2dZP. Lens' (ColourConfig c_a2dZP) (Option c_a2dZP)
- Termonad.Config.Colour: lensPalette :: forall c_a2dZt. Lens' (ColourConfig c_a2dZt) (Palette c_a2dZt)
+ Termonad.Config.Colour: lensPalette :: forall c_a2dZP. Lens' (ColourConfig c_a2dZP) (Palette c_a2dZP)
Files
- CHANGELOG.md +7/−0
- src/Termonad/Term.hs +1/−0
- termonad.cabal +11/−2
CHANGELOG.md view
@@ -1,3 +1,10 @@+## 4.0.1.0++* Add Preferences link to context menu. This is a convenient way to open the+ Preferences if you don't have the menu shown by default.+ [#171](https://github.com/cdepillabout/termonad/pull/171) Thanks+ [@maridonkers](https://github.com/maridonkers)!+ ## 4.0.0.1 * Update Termonad to be able to be built with the latest versions of the
src/Termonad/Term.hs view
@@ -479,6 +479,7 @@ menuModel <- menuNew menuAppend menuModel (Just "Copy") (Just "app.copy") menuAppend menuModel (Just "Paste") (Just "app.paste")+ menuAppend menuModel (Just "Preferences") (Just "app.preferences") menu <- menuNewFromModel menuModel menuAttachToWidget menu vteTerm Nothing menuPopupAtPointer menu Nothing
termonad.cabal view
@@ -1,7 +1,16 @@ name: termonad-version: 4.0.0.1+version: 4.0.1.0 synopsis: Terminal emulator configurable in Haskell-description: Please see <https://github.com/cdepillabout/termonad#readme README.md>.+description:+ Termonad is a terminal emulator configurable in Haskell. It is extremely+ customizable and provides hooks to modify the default behavior. It can be+ thought of as the \"XMonad\" of terminal emulators. Termonad was featured on+ an <https://www.youtube.com/watch?v=TLNr_gBv5HY episode> of+ <https://www.youtube.com/channel/UCVls1GmFKf6WlTraIb_IaJg DistroTube>. This+ video gives a short overview of Termonad.+ .+ Please see <https://github.com/cdepillabout/termonad#readme README.md> for+ more information. homepage: https://github.com/cdepillabout/termonad license: BSD3 license-file: LICENSE