Commit e2f77736 authored by Clint Adams's avatar Clint Adams
Browse files

patch taffybar

parent 9cc40ff6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -809,7 +809,7 @@ system-fileio 0.3.16.3
system-filepath 0.4.14
system-posix-redirect 1.1.0.1
tabular 0.2.2.7
taffybar 1.0.1 key ignore # BROKEN: LTS 11: older dbus
taffybar 0.4.6 key
tagged 0.8.5
tagshare 0.0
tagsoup 0.14.6
@@ -987,7 +987,7 @@ yesod-static 1.6.0
yesod-test 1.6.2
yi 0.17.1 key -fvty -fpango
yi-core 0.17.1
yi-frontend-pango 0.13.7
yi-frontend-pango 0.17.1
yi-frontend-vty 0.17.1
yi-keymap-emacs 0.17.1
yi-keymap-vim 0.17.1
+35 −0
Original line number Diff line number Diff line
--- /dev/null
+++ b/taffybar.1
@@ -0,0 +1,32 @@
+.TH taffybar 1 "19 July 2013" "taffybar version 0.2.1" "User Manual"
+
+.SH NAME
+taffybar \- desktop bar extensible in Haskell
+
+.SH SYNOPSIS
+.B taffybar
+
+.SH DESCRIPTION
+Taffybar is a desktop bar written and extensible in Haskell. Consult the html
+documentation for a full description of its behaviour.
+
+.SH OPTIONS
+It doesn't take any.
+
+.SH FILES
+It can be configured in ~/.config/taffybar/taffybar.hs; consult the html
+documentation.
+
+.SH BUGS
+Bug reports, ideas and suggestions should be posted to the GitHub issue tracker
+<https://github.com/travitch/taffybar/issues>.
+
+.SH COPYRIGHT
+Copyright \(co 2012 Tristan Ravitch.
+.PP
+Taffybar is released under the terms of the BSD License.
+.SH "SEE ALSO"
+.BR xmobar (1)
+
+.SH AUTHOR
+Tristan Ravitch
+11 −0
Original line number Diff line number Diff line
--- a/taffybar.cabal
+++ b/taffybar.cabal
@@ -27,7 +27,7 @@
 library
   default-language: Haskell2010
   build-depends: base > 3 && < 5,
-                 time >= 1.4 && < 1.7,
+                 time >= 1.4 && < 1.9,
                  time-locale-compat >= 0.1 && < 0.2,
                  old-locale,
                  containers,
+11 −0
Original line number Diff line number Diff line
--- a/taffybar.cabal
+++ b/taffybar.cabal
@@ -57,7 +57,7 @@
   if flag(network-uri)
     build-depends: network-uri >= 2.6 && < 3, network >= 2.6 && < 3
   else
-    build-depends: network-uri < 2.6, network < 2.6
+    build-depends: network < 2.6
   hs-source-dirs: src
   pkgconfig-depends: gtk+-2.0
   exposed-modules: System.Taffybar,
+11 −0
Original line number Diff line number Diff line
--- a/src/System/Taffybar/Weather.hs
+++ b/src/System/Taffybar/Weather.hs
@@ -249,7 +249,7 @@
 
 -- | The NOAA URL to get data from
 baseUrl :: String
-baseUrl = "http://weather.noaa.gov/pub/data/observations/metar/decoded"
+baseUrl = "http://tgftp.nws.noaa.gov/data/observations/metar/decoded"
 
 -- | A wrapper to allow users to specify a custom weather formatter.
 -- The default interpolates variables into a string as described
Loading