packages feed

libnotify 0.1.0.0 → 0.1.1.0

raw patch · 11 files changed

+8/−3 lines, 11 filesbinary-added

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+0.1.1.0+=======++  * Fixed `Monoid` instance for `Mod`+ 0.1.0.0 ======= 
+ asset/HelloWorld.png view

binary file changed (absent → 6474 bytes)

+ asset/Hey.png view

binary file changed (absent → 5975 bytes)

+ asset/action.png view

binary file changed (absent → 1540 bytes)

+ asset/body.png view

binary file changed (absent → 1691 bytes)

+ asset/icon.png view

binary file changed (absent → 4636 bytes)

+ asset/noactions.png view

binary file changed (absent → 2302 bytes)

+ asset/reuse.png view

binary file changed (absent → 1042 bytes)

+ asset/summary.png view

binary file changed (absent → 1194 bytes)

libnotify.cabal view
@@ -1,5 +1,5 @@ name:               libnotify-version:            0.1.0.0+version:            0.1.1.0 synopsis:           Bindings to libnotify library description:   The package provides a high level interface to libnotify API (see "Libnotify")@@ -27,7 +27,7 @@ source-repository this   type:     git   location: https://github.com/supki/libnotify-  tag:      0.1.0.0+  tag:      0.1.1.0  library   default-language:
src/Libnotify.hs view
@@ -82,7 +82,7 @@  instance Monoid (Mod a) where   mempty = Mod mempty (\_ -> return ())-  mappend = (<>)+  mappend (Mod x fx) (Mod y fy) = Mod (x <> y) (\n -> fx n >> fy n)  -- | Set notification summary --