packages feed

hbro-contrib 1.1.0.0 → 1.1.1.0

raw patch · 7 files changed

+12/−13 lines, 7 filesdep ~hbro

Dependency ranges changed: hbro

Files

Hbro/Bookmarks.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE FlexibleContexts #-} -- | Designed to be imported as @qualified@. module Hbro.Bookmarks (     Entry(..),
Hbro/Download.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE FlexibleContexts #-} module Hbro.Download where  -- {{{ Imports
Hbro/History.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE FlexibleContexts #-} -- | Designed to be imported as @qualified@. module Hbro.History (     Entry(..),
Hbro/Misc.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE FlexibleContexts #-} module Hbro.Misc where  -- {{{ Imports
Hbro/StatusBar.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE FlexibleContexts #-} module Hbro.StatusBar where  -- {{{ Imports
examples/hbro.hs view
@@ -110,9 +110,8 @@     return ()  -myConfig :: FilePath -> Config K -> Config K-myConfig myUIFile = id-    . set uIFile         myUIFile+myConfig :: Config K -> Config K+myConfig = id     . set homePage       myHomePage     . set onDownload     myDownloadHook     . set onLoadFinished myLoadFinishedHook@@ -120,6 +119,4 @@  -- Main function, expected to call 'hbro' main :: IO ()-main = do-    myUIFile <- getUserConfigDir "hbro" >/> "ui.xml"-    hbro mySetup $ myConfig myUIFile+main = hbro mySetup
hbro-contrib.cabal view
@@ -1,5 +1,5 @@ Name:                hbro-contrib-Version:             1.1.0.0+Version:             1.1.1.0 Synopsis:            Third-party extensions to hbro. -- Description: Homepage:            https://github.com/k0ral/hbro-contrib/@@ -27,7 +27,7 @@         filepath,         glib,         gtk >= 0.12.3,-        hbro >= 1.0.0.0,+        hbro >= 1.1.1.0,         monad-control,         mtl,         network,@@ -48,4 +48,11 @@         Hbro.Misc,         Hbro.Settings,         Hbro.StatusBar+    Extensions:+        ConstraintKinds,+        FlexibleContexts,+        FunctionalDependencies,+        GeneralizedNewtypeDeriving,+        MultiParamTypeClasses,+        RankNTypes     Ghc-options: -Wall