Hello community, here is the log from the commit of package xmobar for openSUSE:Factory checked in at 2017-06-22 10:39:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xmobar (Old) and /work/SRC/openSUSE:Factory/.xmobar.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xmobar" Thu Jun 22 10:39:57 2017 rev:6 rq:504127 version:0.24.5 Changes: -------- --- /work/SRC/openSUSE:Factory/xmobar/xmobar.changes 2017-06-04 01:56:31.124260143 +0200 +++ /work/SRC/openSUSE:Factory/.xmobar.new/xmobar.changes 2017-06-22 10:39:59.177063241 +0200 @@ -1,0 +2,5 @@ +Wed May 31 14:01:11 UTC 2017 - [email protected] + +- Update to version 0.24.5. + +------------------------------------------------------------------- Old: ---- xmobar-0.24.4.tar.gz New: ---- xmobar-0.24.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xmobar.spec ++++++ --- /var/tmp/diff_new_pack.HX5FY1/_old 2017-06-22 10:39:59.792976405 +0200 +++ /var/tmp/diff_new_pack.HX5FY1/_new 2017-06-22 10:39:59.796975841 +0200 @@ -17,7 +17,7 @@ Name: xmobar -Version: 0.24.4 +Version: 0.24.5 Release: 0 Summary: A Minimalistic Text Based Status Bar License: BSD-3-Clause ++++++ xmobar-0.24.4.tar.gz -> xmobar-0.24.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmobar-0.24.4/news.md new/xmobar-0.24.5/news.md --- old/xmobar-0.24.4/news.md 2017-05-03 00:05:01.000000000 +0200 +++ new/xmobar-0.24.5/news.md 2017-05-27 19:02:46.000000000 +0200 @@ -1,12 +1,20 @@ % xmobar - Release notes +## Version 0.24.5 (May, 2017) + +_Bug fixes_ + + - Fix for vertical bars ([issue #303]) + +[issue #303]: https://github.com/jaor/xmobar/issues/303 + ## Version 0.24.4 (April, 2017) _Infrastructure_ - Whe have now an active [Travis CI setup]. -[Travi CI setup]: https://travis-ci.org/jaor/xmobar +[Travis CI setup]: https://travis-ci.org/jaor/xmobar _Bug fixes_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmobar-0.24.4/readme.md new/xmobar-0.24.5/readme.md --- old/xmobar-0.24.4/readme.md 2017-05-03 00:05:01.000000000 +0200 +++ new/xmobar-0.24.5/readme.md 2017-05-27 19:02:46.000000000 +0200 @@ -1,5 +1,3 @@ -% xmobar - a minimalistic status bar - [](https://travis-ci.org/jaor/xmobar) # About @@ -12,7 +10,7 @@ features, like dynamic color management, icons, output templates, and extensibility through plugins. -This page documents xmobar 0.24.4 (see [release notes]). +This page documents xmobar 0.24.5 (see [release notes]). [This screenshot] shows xmobar running under [sawfish], with antialiased fonts. And [this one] is my desktop with [xmonad] and two @@ -753,7 +751,7 @@ `visibility`, `skyCondition`, `tempC`, `tempF`, `dewPointC`, `dewPointF`, `rh`, `pressure` - Default template: `<station>: <tempC>C, rh <rh>% (<hour>)` -- Retrieves weather information from http://weather.noaa.gov. +- Retrieves weather information from http://tgftp.nws.noaa.gov. ### `Network Interface Args RefreshRate` @@ -1604,7 +1602,7 @@ This software is released under a BSD-style license. See [LICENSE] for more details. -Copyright © 2010-2016 Jose Antonio Ortega Ruiz +Copyright © 2010-2017 Jose Antonio Ortega Ruiz Copyright © 2007-2010 Andrea Rossato diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmobar-0.24.4/src/Main.hs new/xmobar-0.24.5/src/Main.hs --- old/xmobar-0.24.4/src/Main.hs 2017-05-03 00:05:01.000000000 +0200 +++ new/xmobar-0.24.5/src/Main.hs 2017-05-27 19:02:46.000000000 +0200 @@ -186,7 +186,7 @@ info :: String info = "xmobar " ++ showVersion version ++ "\n (C) 2007 - 2010 Andrea Rossato " - ++ "\n (C) 2010 - 2014 Jose A Ortega Ruiz\n " + ++ "\n (C) 2010 - 2017 Jose A Ortega Ruiz\n " ++ mail ++ "\n" ++ license mail :: String diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmobar-0.24.4/src/Plugins/Monitors/Common.hs new/xmobar-0.24.5/src/Plugins/Monitors/Common.hs --- old/xmobar-0.24.4/src/Plugins/Monitors/Common.hs 2017-05-03 00:05:01.000000000 +0200 +++ new/xmobar-0.24.5/src/Plugins/Monitors/Common.hs 2017-05-27 19:02:46.000000000 +0200 @@ -510,7 +510,7 @@ showLogBar f v = logScaling f v >>= showPercentBar v showLogVBar :: Float -> Float -> Monitor String -showLogVBar f v = logScaling f v >>= showPercentBar v +showLogVBar f v = logScaling f v >>= showVerticalBar v showLogIconPattern :: Maybe IconPattern -> Float -> Float -> Monitor String showLogIconPattern str f v = logScaling f v >>= showIconPattern str diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmobar-0.24.4/xmobar.cabal new/xmobar-0.24.5/xmobar.cabal --- old/xmobar-0.24.4/xmobar.cabal 2017-05-03 00:05:01.000000000 +0200 +++ new/xmobar-0.24.5/xmobar.cabal 2017-05-27 19:02:46.000000000 +0200 @@ -1,5 +1,5 @@ name: xmobar -version: 0.24.4 +version: 0.24.5 homepage: http://xmobar.org synopsis: A Minimalistic Text Based Status Bar description: Xmobar is a minimalistic text based status bar.
