Hello community, here is the log from the commit of package ghc-brick for openSUSE:Factory checked in at 2020-10-23 15:13:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-brick (Old) and /work/SRC/openSUSE:Factory/.ghc-brick.new.3463 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-brick" Fri Oct 23 15:13:41 2020 rev:7 rq:842741 version:0.57 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-brick/ghc-brick.changes 2020-09-30 19:53:28.912735924 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-brick.new.3463/ghc-brick.changes 2020-10-23 15:13:45.830117344 +0200 @@ -1,0 +2,15 @@ +Tue Oct 6 08:56:57 UTC 2020 - psim...@suse.com + +- Update brick to version 0.57. + 0.57 + ---- + + Package changes: + * Raised lower bound on `vty` to 5.31 to get the new `strikethrough` + style. + + New features: + * Added support for the `strikethrough` style in Brick theme + customization files. + +------------------------------------------------------------------- Old: ---- brick-0.56.tar.gz New: ---- brick-0.57.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-brick.spec ++++++ --- /var/tmp/diff_new_pack.G9DrSo/_old 2020-10-23 15:13:46.402117620 +0200 +++ /var/tmp/diff_new_pack.G9DrSo/_new 2020-10-23 15:13:46.402117620 +0200 @@ -19,7 +19,7 @@ %global pkg_name brick %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.56 +Version: 0.57 Release: 0 Summary: A declarative terminal user interface library License: BSD-3-Clause ++++++ brick-0.56.tar.gz -> brick-0.57.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brick-0.56/CHANGELOG.md new/brick-0.57/CHANGELOG.md --- old/brick-0.56/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/brick-0.57/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -2,6 +2,17 @@ Brick changelog --------------- +0.57 +---- + +Package changes: + * Raised lower bound on `vty` to 5.31 to get the new `strikethrough` + style. + +New features: + * Added support for the `strikethrough` style in Brick theme + customization files. + 0.56 ---- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brick-0.56/brick.cabal new/brick-0.57/brick.cabal --- old/brick-0.56/brick.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/brick-0.57/brick.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ name: brick -version: 0.56 +version: 0.57 synopsis: A declarative terminal user interface library description: Write terminal user interfaces (TUIs) painlessly with 'brick'! You @@ -114,7 +114,7 @@ Brick.Widgets.Internal build-depends: base <= 4.14.1.0, - vty >= 5.29, + vty >= 5.31, transformers, data-clist >= 0.1, directory >= 1.2.5.0, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brick-0.56/src/Brick/Themes.hs new/brick-0.57/src/Brick/Themes.hs --- old/brick-0.56/src/Brick/Themes.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/brick-0.57/src/Brick/Themes.hs 2001-09-09 03:46:40.000000000 +0200 @@ -30,7 +30,8 @@ -- (without quotes) or a comma-delimited list of one or more of the -- following values (e.g. @"[bold,underline]"@) indicating that all -- of the specified styles be used. Valid styles are @standout@, --- @underline@, @reverseVideo@, @blink@, @dim@, @italic@, and @bold@. +-- @underline@, @reverseVideo@, @blink@, @dim@, @italic@, +-- @strikethrough@, and @bold@. -- -- The @other@ section specifies for each attribute name in the theme -- the same @fg@, @bg@, and @style@ settings as for the default @@ -251,6 +252,7 @@ allStyles = [ ("standout", standout) , ("underline", underline) + , ("strikethrough", strikethrough) , ("reversevideo", reverseVideo) , ("blink", blink) , ("dim", dim)