From acd7010e5a60deefc44ab628ed6cccdcee355287 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 10 Sep 2019 18:14:16 -0700 Subject: [PATCH] ;doc: "curses-style interface" -> "terminal interface" [ci skip] --- CONTRIBUTING.md | 2 +- README.md | 2 +- doc/ANNOUNCE | 2 +- hledger-api/package.yaml | 2 +- hledger-lib/hledger-lib.cabal | 4 ++-- hledger-lib/package.yaml | 2 +- hledger-ui/hledger-ui.cabal | 8 ++++---- hledger-ui/hledger-ui.m4.md | 6 +++--- hledger-ui/package.yaml | 6 +++--- hledger-web/hledger-web.cabal | 6 +++--- hledger-web/package.yaml | 4 ++-- hledger/hledger.cabal | 4 ++-- hledger/hledger.m4.md | 2 +- hledger/package.yaml | 2 +- 14 files changed, 26 insertions(+), 26 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8357dcf46..7e75f8cba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -446,7 +446,7 @@ and [hledger-lib:Hledger.Utils](https://github.com/simonmichael/hledger/blob/mas [code](https://github.com/simonmichael/hledger/tree/master/hledger-ui), [manual](http://hledger.org/manual.html#hledger-ui) -A curses-style text interface. +A terminal interface. #### hledger-web diff --git a/README.md b/README.md index cadcd92b6..f1b0554fa 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ hledger is a computer program for easily tracking money, time, or other commodities, on unix, mac and windows (and web-capable mobile devices, to some extent). -It is first a command-line tool, but there are also curses-style and +It is first a command-line tool, but there are also terminal and web interfaces, and a Haskell library (http://hackage.haskell.org/package/hledger-lib) for building your own programs and scripts (hledger is written in Haskell). hledger was diff --git a/doc/ANNOUNCE b/doc/ANNOUNCE index 2ab284e50..0818ee58a 100644 --- a/doc/ANNOUNCE +++ b/doc/ANNOUNCE @@ -4,7 +4,7 @@ Henning Thielemann, Dmitry Astapov, Ben Creasy, zieone, Boyd Kelly, Gabriel Ebner, Hans-Peter Deifel, and Andreas Pauley. hledger is a robust, cross-platform, multicurrency, plain text -accounting tool, with command-line, console and web UIs. It is one of +accounting tool, with command-line, terminal and web UIs. It is one of the leading implementations of plain text accounting, and is a modern and largely compatible reimplementation of Ledger. Use it for tracking money, time, stocks, cryptocurrencies or any other commodity, diff --git a/hledger-api/package.yaml b/hledger-api/package.yaml index 1c8899265..ee83dd9a3 100644 --- a/hledger-api/package.yaml +++ b/hledger-api/package.yaml @@ -8,7 +8,7 @@ description: | hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance diff --git a/hledger-lib/hledger-lib.cabal b/hledger-lib/hledger-lib.cabal index f490404a6..d47c9ffea 100644 --- a/hledger-lib/hledger-lib.cabal +++ b/hledger-lib/hledger-lib.cabal @@ -4,7 +4,7 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: c4535c00ecf88919b278f19cdd8f72caf2212d43fb3dc6ee21299451ee977ea0 +-- hash: 030f9139cc46202b3d02732e01d84b4d4e41b54e564e92c5ec2678b8e4a09931 name: hledger-lib version: 1.15.2 @@ -14,7 +14,7 @@ description: This is a reusable library containing hledger's core functionali hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance diff --git a/hledger-lib/package.yaml b/hledger-lib/package.yaml index 1af910ef9..e58010ec5 100644 --- a/hledger-lib/package.yaml +++ b/hledger-lib/package.yaml @@ -7,7 +7,7 @@ description: | hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance diff --git a/hledger-ui/hledger-ui.cabal b/hledger-ui/hledger-ui.cabal index b47bae373..810a3a8ed 100644 --- a/hledger-ui/hledger-ui.cabal +++ b/hledger-ui/hledger-ui.cabal @@ -4,19 +4,19 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: b157e8031b886cdba4226a4710189f672b05418f5bb4889477f6b3b6369c6f4d +-- hash: ca03d666e614851f8555b154bc16d987c21f3f6805920c7d4e6f0abada02f63e name: hledger-ui version: 1.15 -synopsis: Curses-style user interface for the hledger accounting tool -description: This is hledger's curses-style interface. +synopsis: Terminal user interface for the hledger accounting tool +description: This is hledger's terminal interface. It is simpler and more convenient for browsing data than the command-line interface, but lighter and faster than hledger-web. . hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance, Console diff --git a/hledger-ui/hledger-ui.m4.md b/hledger-ui/hledger-ui.m4.md index bda0307b0..fb7deb135 100644 --- a/hledger-ui/hledger-ui.m4.md +++ b/hledger-ui/hledger-ui.m4.md @@ -9,7 +9,7 @@ _docversionlinks_({{hledger-ui}}) _man_({{ # NAME -hledger-ui - curses-style interface for the hledger accounting tool +hledger-ui - terminal interface for the hledger accounting tool # SYNOPSIS @@ -39,7 +39,7 @@ _web_({{ }}) -hledger-ui is hledger's curses-style interface, providing an efficient full-window text UI +hledger-ui is hledger's terminal interface, providing an efficient full-window text UI for viewing accounts and transactions, and some limited data entry capability. It is easier than hledger's command-line interface, and sometimes quicker and more convenient than the web interface. @@ -151,7 +151,7 @@ Disabling balance assertions temporarily can be useful for troubleshooting. This allows some basic data entry. `A` is like `a`, but runs the [hledger-iadd](http://hackage.haskell.org/package/hledger-iadd) tool, -which provides a curses-style interface. +which provides a terminal interface. This key will be available if `hledger-iadd` is installed in $PATH. `E` runs $HLEDGER_UI_EDITOR, or $EDITOR, or a default (`emacsclient -a "" -nw`) on the journal file. diff --git a/hledger-ui/package.yaml b/hledger-ui/package.yaml index 52f9ee3f9..e7c6e3e6a 100644 --- a/hledger-ui/package.yaml +++ b/hledger-ui/package.yaml @@ -1,15 +1,15 @@ name : hledger-ui version : 1.15 -synopsis : Curses-style user interface for the hledger accounting tool +synopsis : Terminal user interface for the hledger accounting tool description : | - This is hledger's curses-style interface. + This is hledger's terminal interface. It is simpler and more convenient for browsing data than the command-line interface, but lighter and faster than hledger-web. hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category : Finance, Console diff --git a/hledger-web/hledger-web.cabal b/hledger-web/hledger-web.cabal index 0510b750f..47b9cc69b 100644 --- a/hledger-web/hledger-web.cabal +++ b/hledger-web/hledger-web.cabal @@ -4,19 +4,19 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: 0edf95448e05cc75fb3c049d3ecc20264e8869497966ac5eb8783ee803dbce35 +-- hash: 1b0acc5e6bd4e330e088554e594bdead5ca89869d2472fd5ca2adeaa36a6dab8 name: hledger-web version: 1.15 synopsis: Web interface for the hledger accounting tool description: This is hledger's web interface. It provides a more user-friendly and collaborative UI than the - command-line or curses-style interfaces. + command-line or terminal interfaces. . hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance diff --git a/hledger-web/package.yaml b/hledger-web/package.yaml index 8cfc6f733..032073076 100644 --- a/hledger-web/package.yaml +++ b/hledger-web/package.yaml @@ -4,12 +4,12 @@ synopsis: Web interface for the hledger accounting tool description: | This is hledger's web interface. It provides a more user-friendly and collaborative UI than the - command-line or curses-style interfaces. + command-line or terminal interfaces. hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance diff --git a/hledger/hledger.cabal b/hledger/hledger.cabal index 17afdad50..4cfcd5a4f 100644 --- a/hledger/hledger.cabal +++ b/hledger/hledger.cabal @@ -4,7 +4,7 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: f7a17b233540faa8cabd06b8cdac862fff8b1c1dfcaa46d74467bff5a0f1853b +-- hash: ce50d0ba9ba3843d1efb8d01a465fbb11fcca82d5d5ed98d23136dac22655b29 name: hledger version: 1.15.2 @@ -16,7 +16,7 @@ description: This is hledger's command-line interface. hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance, Console diff --git a/hledger/hledger.m4.md b/hledger/hledger.m4.md index de70aa48e..25f8192f5 100644 --- a/hledger/hledger.m4.md +++ b/hledger/hledger.m4.md @@ -34,7 +34,7 @@ Tested on unix, mac, windows, hledger aims to be a reliable, practical tool for daily use. }}) -This is hledger’s command-line interface (there are also curses and web +This is hledger’s command-line interface (there are also terminal and web interfaces). Its basic function is to read a plain text file describing financial transactions (in accounting terms, a general journal) and print useful reports on standard output, or export them as CSV. hledger diff --git a/hledger/package.yaml b/hledger/package.yaml index df6bc10aa..1e05299db 100644 --- a/hledger/package.yaml +++ b/hledger/package.yaml @@ -9,7 +9,7 @@ description: | hledger is a cross-platform program for tracking money, time, or any other commodity, using double-entry accounting and a simple, editable file format. It is inspired by and largely compatible - with ledger(1). hledger provides command-line, curses and web + with ledger(1). hledger provides command-line, terminal and web interfaces, and aims to be a reliable, practical tool for daily use. category: Finance, Console