xmobar 0.47.1 → 0.47.2
raw patch · 4 files changed
+11/−5 lines, 4 filesdep ~basedep ~mtl
Dependency ranges changed: base, mtl
Files
- changelog.md +5/−1
- src/Xmobar/Plugins/EWMH.hs +1/−0
- src/Xmobar/X11/Loop.hs +2/−1
- xmobar.cabal +3/−3
changelog.md view
@@ -1,4 +1,8 @@-## Version 0.47.1 (September, 2)+## Version 0.47.2 (November, 2023)++- Compatibility with GHC 9.6++## Version 0.47.1 (September, 2023) - Allow compilation with libmpd even with GHC > 9.4, by requesting it explicitly with `with_mpd`. See #667 for further details.
src/Xmobar/Plugins/EWMH.hs view
@@ -19,6 +19,7 @@ import Control.Applicative (Applicative(..)) import Control.Monad.State+import Control.Monad import Control.Monad.Reader import Graphics.X11 hiding (Modifier, Color) import Graphics.X11.Xlib.Extras
src/Xmobar/X11/Loop.hs view
@@ -3,7 +3,7 @@ ------------------------------------------------------------------------------ -- | -- Module: Xmobar.App.X11EventLoop--- Copyright: (c) 2018, 2020, 2022 Jose Antonio Ortega Ruiz+-- Copyright: (c) 2018, 2020, 2022, 2023 Jose Antonio Ortega Ruiz -- License: BSD3-style (see LICENSE) -- -- Maintainer: jao@gnu.org@@ -22,6 +22,7 @@ import Control.Concurrent as Concurrent import Control.Concurrent.STM as STM+import Control.Monad as MR import Control.Monad.Reader as MR import Data.Bits (Bits((.|.)))
xmobar.cabal view
@@ -1,5 +1,5 @@ name: xmobar-version: 0.47.1+version: 0.47.2 homepage: https://codeberg.org/xmobar/xmobar synopsis: A Minimalistic Text Based Status Bar description: Xmobar is a minimalistic text based status bar.@@ -194,7 +194,7 @@ build-depends: aeson >= 1.4.7.1, async,- base >= 4.11.0 && < 4.18,+ base >= 4.11.0 && < 4.19, bytestring >= 0.10.8.2, cairo >= 0.13, colour >= 2.3.6,@@ -202,7 +202,7 @@ directory, extensible-exceptions == 0.1.*, filepath,- mtl >= 2.1 && < 2.3,+ mtl >= 2.1 && < 2.4, old-locale, pango >= 0.13, parsec == 3.1.*,