ghcitui 0.4.0.0 → 0.4.1.0
raw patch · 5 files changed
+25/−15 lines, 5 filesdep +fsnotifydep ~text
Dependencies added: fsnotify
Dependency ranges changed: text
Files
- CHANGELOG.md +7/−0
- MANUAL.rst +6/−6
- app/Main.hs +1/−1
- gen/MANUAL.txt +6/−6
- ghcitui.cabal +5/−2
CHANGELOG.md view
@@ -1,5 +1,12 @@ # Revision history for ghcitui +## 0.4.1.0 -- 2024-11-16++### Bug fixes++- Fixed dependency error with `fsnotify` failing to build due to+ `text` show conflict.+ ## 0.4.0.0 -- 2024-11-15 ### New features
MANUAL.rst view
@@ -9,20 +9,20 @@ .. code-block:: Usage: ghcitui [--version] [--debug-console] [-v] [--daemon-log LOGFILE]- [-c|--cmd CMD] [-C|--workdir DIR] [TARGET]+ [-c|--cmd CMD] [-C|--workdir DIR] [TARGET] - ghcitui: A TUI interface for GHCi+ ghcitui: A TUI interface for GHCi. Press '?' while running for full help. Available options: -h,--help Show this help text --version Print the version number and exit --debug-console Display the debug console -v Set verbosity for output logs. Pass multiple times- (e.g -vvv) to increase the logging. Use --daemon-log- to specify where the logs go.+ (e.g -vvv) to increase the logging. Use --daemon-log+ to specify where the logs go. --daemon-log LOGFILE File path for debugging daemon logs. Used with -v.- Setting this to 'stdout' or 'stderr' sends logs to- each, respectively. Defaults to /tmp/ghcitui.log.+ Setting this to 'stdout' or 'stderr' sends logs to+ each, respectively. Defaults to 'stderr' -c,--cmd CMD Command to start the internal interpreter -C,--workdir DIR Set working dir
app/Main.hs view
@@ -98,6 +98,6 @@ programName = "ghcitui" programDescription = Opt.progDesc ( programName <> ": A TUI interface for GHCi."- <> "Press '?' while running for full help."+ <> " Press '?' while running for full help." ) parserInfo = Opt.info (Opt.helper <*> parseOpts) (Opt.fullDesc <> programDescription)
gen/MANUAL.txt view
@@ -1,19 +1,19 @@ CLI SYNOPSIS Usage: ghcitui [--version] [--debug-console] [-v] [--daemon-log LOGFILE]- [-c|--cmd CMD] [-C|--workdir DIR] [TARGET]+ [-c|--cmd CMD] [-C|--workdir DIR] [TARGET] - ghcitui: A TUI interface for GHCi+ ghcitui: A TUI interface for GHCi. Press '?' while running for full help. Available options: -h,--help Show this help text --version Print the version number and exit --debug-console Display the debug console -v Set verbosity for output logs. Pass multiple times- (e.g -vvv) to increase the logging. Use --daemon-log- to specify where the logs go.+ (e.g -vvv) to increase the logging. Use --daemon-log+ to specify where the logs go. --daemon-log LOGFILE File path for debugging daemon logs. Used with -v.- Setting this to 'stdout' or 'stderr' sends logs to- each, respectively. Defaults to /tmp/ghcitui.log.+ Setting this to 'stdout' or 'stderr' sends logs to+ each, respectively. Defaults to 'stderr' -c,--cmd CMD Command to start the internal interpreter -C,--workdir DIR Set working dir
ghcitui.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: ghcitui-version: 0.4.0.0+version: 0.4.1.0 synopsis: A Terminal User Interface (TUI) for GHCi description:@@ -79,7 +79,10 @@ , regex-base ^>= 0.94.0.2 , regex-tdfa >= 1.3.2 && < 1.4 , string-interpolate >= 0.3.2.1 && < 0.4- , text >= 2.0 && < 2.2+ -- Pinned to less than 2.1.2, because it breaks+ -- with FSNotify.+ , text >= 2.0 && < 2.3+ , fsnotify ^>= 0.4.1.0 , transformers ^>= 0.6.1.0 -- Needed to limit string-interpolate compat. , utf8-string >= 1.0.2 && < 1.1