patat 0.8.4.0 → 0.8.4.3
raw patch · 5 files changed
+21/−7 lines, 5 files
Files
- CHANGELOG.md +12/−0
- README.md +2/−1
- lib/Patat/Main.hs +5/−4
- lib/Patat/Theme.hs +1/−1
- patat.cabal +1/−1
CHANGELOG.md view
@@ -1,5 +1,17 @@ # Changelog +- 0.8.4.3 (2020-01-21)+ * Fix Haddock syntax in some comments (contribution by Asad Saeeduddin)++- 0.8.4.2 (2020-01-18)+ * Add builds for Mac OS+ * Refactor CircleCI config & Makefile++- 0.8.4.1 (2019-10-29)+ * Bump CircleCI configuration+ * Bump release script+ * Add slide seeking to `--help` output+ - 0.8.4.0 (2019-10-09) * Add slide seeking (enter slide number + `enter`) * Fix turning tty echo off/on during presentation
README.md view
@@ -60,8 +60,9 @@ - Debian: <https://packages.debian.org/unstable/patat> - Ubuntu: <https://packages.ubuntu.com/bionic/patat> - openSUSE: <https://build.opensuse.org/package/show/openSUSE:Factory:ARM/patat>+- Fedora: <https://src.fedoraproject.org/rpms/patat> -You can also find generic linux binaries here:+You can also find generic Linux and Mac OS binaries here: <https://github.com/jaspervdj/patat/releases>. ### From source
lib/Patat/Main.hs view
@@ -86,6 +86,7 @@ , "- Go backward 10 slides: k, up" , "- First slide: 0" , "- Last slide: G"+ , "- Jump to slide N: N followed by enter" , "- Reload file: r" , "- Quit: q" ]@@ -177,13 +178,13 @@ -- on the terminal. Tries to restore the original state of the terminal as much -- as possible. interactively- -- | Reads a command from stdin (or from some other IO). This will be- -- interrupted by 'killThread' when the application finishes. :: (IO.Handle -> IO a)- -- | Application to run.+ -- ^ Reads a command from stdin (or from some other IO). This will be+ -- interrupted by 'killThread' when the application finishes. -> (Chan a -> IO ())- -- | Returns when application finishes.+ -- ^ Application to run. -> IO ()+ -- ^ Returns when application finishes. interactively reader app = bracket setup teardown $ \(_, _, _, chan) -> app chan where setup = do
lib/Patat/Theme.hs view
@@ -224,7 +224,7 @@ , name <- maybeToList (sgrToString sgr) ] where- -- | It doesn't really matter if we generate "too much" SGRs here since+ -- It doesn't really matter if we generate "too much" SGRs here since -- 'sgrToString' will only pick the ones we support. knownSgrs = [ Ansi.SetColor l i c
patat.cabal view
@@ -1,5 +1,5 @@ Name: patat-Version: 0.8.4.0+Version: 0.8.4.3 Synopsis: Terminal-based presentations using Pandoc Description: Terminal-based presentations using Pandoc. License: GPL-2