update cabal docs and other fields
This commit is contained in:
parent
b15ff17186
commit
36d97a2e50
@ -5,23 +5,25 @@
|
|||||||
name: hledger-lib
|
name: hledger-lib
|
||||||
version: 0.26.98
|
version: 0.26.98
|
||||||
stability: stable
|
stability: stable
|
||||||
category: Finance, Console
|
category: Finance
|
||||||
synopsis: Core data types, parsers and utilities for the hledger accounting tool.
|
synopsis: Core data types, parsers and functionality for the hledger accounting tools
|
||||||
description: hledger is a library and set of user tools for working
|
description:
|
||||||
with financial data (or anything that can be tracked in a
|
This is a reusable library containing hledger's core functionality.
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
any other commodity, using double-entry accounting and a simple,
|
||||||
command-line, curses and web interfaces, and aims to be a
|
editable file format. It is inspired by and largely compatible
|
||||||
reliable, practical tool for daily use.
|
with ledger(1). hledger provides command-line, curses and web
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
license: GPL
|
license: GPL
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Simon Michael <simon@joyful.com>
|
author: Simon Michael <simon@joyful.com>
|
||||||
maintainer: Simon Michael <simon@joyful.com>
|
maintainer: Simon Michael <simon@joyful.com>
|
||||||
homepage: http://hledger.org
|
homepage: http://hledger.org
|
||||||
bug-reports: http://hledger.org/bugs
|
bug-reports: http://bugs.hledger.org
|
||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.1
|
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
|
||||||
|
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
CHANGES
|
CHANGES
|
||||||
|
|||||||
@ -12,14 +12,15 @@ name : hledger-lib
|
|||||||
version : '0.26.98'
|
version : '0.26.98'
|
||||||
stability : stable
|
stability : stable
|
||||||
category : Finance, Console
|
category : Finance, Console
|
||||||
synopsis : Core data types, parsers and utilities for the hledger accounting tool.
|
synopsis : Core data types, parsers and functionality for the hledger accounting tools
|
||||||
description : |
|
description : |
|
||||||
hledger is a library and set of user tools for working
|
This is a reusable library containing hledger's core functionality.
|
||||||
with financial data (or anything that can be tracked in a
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
any other commodity, using double-entry accounting and a simple,
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
editable file format. It is inspired by and largely compatible
|
||||||
command-line, curses and web interfaces, and aims to be a
|
with ledger(1). hledger provides command-line, curses and web
|
||||||
reliable, practical tool for daily use.
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
|
|
||||||
license : GPL
|
license : GPL
|
||||||
author : Simon Michael <simon@joyful.com>
|
author : Simon Michael <simon@joyful.com>
|
||||||
|
|||||||
@ -20,8 +20,8 @@ hledger is inspired by and largely compatible with ledger(1).
|
|||||||
hledger-ui is hledger's curses-style interface.
|
hledger-ui is hledger's curses-style interface.
|
||||||
It reads a hledger journal file (~/.hledger.journal, $LEDGER_FILE, or -f FILE) and
|
It reads a hledger journal file (~/.hledger.journal, $LEDGER_FILE, or -f FILE) and
|
||||||
provides a simple full-screen console interface for viewing account
|
provides a simple full-screen console interface for viewing account
|
||||||
balances and transactions. It is simpler and more efficient for
|
balances and transactions. It is simpler and more convenient for
|
||||||
browsing than the hledger CLI, but lighter and faster than
|
browsing than the command-line interface, but lighter and faster than
|
||||||
hledger-web.
|
hledger-web.
|
||||||
|
|
||||||
The journal file is `~/.hledger.journal`, `$LEDGER_FILE`, or another file specified with -f.
|
The journal file is `~/.hledger.journal`, `$LEDGER_FILE`, or another file specified with -f.
|
||||||
|
|||||||
@ -4,23 +4,28 @@
|
|||||||
|
|
||||||
name: hledger-ui
|
name: hledger-ui
|
||||||
version: 0.26.98
|
version: 0.26.98
|
||||||
|
stability: beta
|
||||||
category: Finance, Console
|
category: Finance, Console
|
||||||
synopsis: A curses-style text user interface for the hledger accounting tool.
|
synopsis: Curses-style user interface for the hledger accounting tool
|
||||||
description: hledger is a library and set of user tools for working
|
description:
|
||||||
with financial data (or anything that can be tracked in a
|
This is hledger's curses-style interface.
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
It is simpler and more convenient for browsing data than the command-line interface,
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
but lighter and faster than hledger-web.
|
||||||
command-line, curses and web interfaces, and aims to be a
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
reliable, practical tool for daily use.
|
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
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
license: GPL
|
license: GPL
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Simon Michael <simon@joyful.com>
|
author: Simon Michael <simon@joyful.com>
|
||||||
maintainer: Simon Michael <simon@joyful.com>
|
maintainer: Simon Michael <simon@joyful.com>
|
||||||
homepage: http://hledger.org
|
homepage: http://hledger.org
|
||||||
bug-reports: http://bugs.hledger.org
|
bug-reports: http://bugs.hledger.org
|
||||||
stability: beta
|
|
||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
|
||||||
|
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
CHANGES
|
CHANGES
|
||||||
|
|||||||
@ -12,14 +12,17 @@ name : hledger-ui
|
|||||||
version : '0.26.98'
|
version : '0.26.98'
|
||||||
stability : beta
|
stability : beta
|
||||||
category : Finance, Console
|
category : Finance, Console
|
||||||
synopsis : A curses-style text user interface for the hledger accounting tool.
|
synopsis : Curses-style user interface for the hledger accounting tool
|
||||||
description : |
|
description : |
|
||||||
hledger is a library and set of user tools for working
|
This is hledger's curses-style interface.
|
||||||
with financial data (or anything that can be tracked in a
|
It is simpler and more convenient for browsing data than the command-line interface,
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
but lighter and faster than hledger-web.
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
command-line, curses and web interfaces, and aims to be a
|
any other commodity, using double-entry accounting and a simple,
|
||||||
reliable, practical tool for daily use.
|
editable file format. It is inspired by and largely compatible
|
||||||
|
with ledger(1). hledger provides command-line, curses and web
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
|
|
||||||
license : GPL
|
license : GPL
|
||||||
author : Simon Michael <simon@joyful.com>
|
author : Simon Michael <simon@joyful.com>
|
||||||
|
|||||||
@ -6,22 +6,26 @@ name: hledger-web
|
|||||||
version: 0.26.98
|
version: 0.26.98
|
||||||
stability: stable
|
stability: stable
|
||||||
category: Finance
|
category: Finance
|
||||||
synopsis: A web interface for the hledger accounting tool
|
synopsis: Web interface for the hledger accounting tool
|
||||||
description: hledger is a library and set of user tools for working
|
description:
|
||||||
with financial data (or anything that can be tracked in a
|
This is hledger's web interface.
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
It provides a more user-friendly and collaborative UI than the
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
command-line or curses-style interfaces.
|
||||||
command-line, curses and web interfaces, and aims to be a
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
reliable, practical tool for daily use.
|
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
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
license: GPL
|
license: GPL
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Simon Michael <simon@joyful.com>
|
author: Simon Michael <simon@joyful.com>
|
||||||
maintainer: Simon Michael <simon@joyful.com>
|
maintainer: Simon Michael <simon@joyful.com>
|
||||||
homepage: http://hledger.org
|
homepage: http://hledger.org
|
||||||
bug-reports: http://hledger.org/bugs
|
bug-reports: http://bugs.hledger.org
|
||||||
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.1
|
|
||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
|
||||||
|
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
CHANGES
|
CHANGES
|
||||||
|
|||||||
@ -12,14 +12,17 @@ name : hledger-web
|
|||||||
version : '0.26.98'
|
version : '0.26.98'
|
||||||
stability : stable
|
stability : stable
|
||||||
category : Finance
|
category : Finance
|
||||||
synopsis : A web interface for the hledger accounting tool
|
synopsis : Web interface for the hledger accounting tool
|
||||||
description : |
|
description : |
|
||||||
hledger is a library and set of user tools for working
|
This is hledger's web interface.
|
||||||
with financial data (or anything that can be tracked in a
|
It provides a more user-friendly and collaborative UI than the
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
command-line or curses-style interfaces.
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
command-line, curses and web interfaces, and aims to be a
|
any other commodity, using double-entry accounting and a simple,
|
||||||
reliable, practical tool for daily use.
|
editable file format. It is inspired by and largely compatible
|
||||||
|
with ledger(1). hledger provides command-line, curses and web
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
|
|
||||||
license : GPL
|
license : GPL
|
||||||
author : Simon Michael <simon@joyful.com>
|
author : Simon Michael <simon@joyful.com>
|
||||||
|
|||||||
@ -6,21 +6,26 @@ name: hledger
|
|||||||
version: 0.26.98
|
version: 0.26.98
|
||||||
stability: stable
|
stability: stable
|
||||||
category: Finance, Console
|
category: Finance, Console
|
||||||
synopsis: The main command-line interface for the hledger accounting tool.
|
synopsis: Command-line interface for the hledger accounting tool
|
||||||
description: hledger is a library and set of user tools for working
|
description:
|
||||||
with financial data (or anything that can be tracked in a
|
This is hledger’s command-line interface.
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
Its basic function is to read a plain text file describing
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
financial transactions and produce useful reports.
|
||||||
command-line, curses and web interfaces, and aims to be a
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
reliable, practical tool for daily use.
|
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
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
license: GPL
|
license: GPL
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Simon Michael <simon@joyful.com>
|
author: Simon Michael <simon@joyful.com>
|
||||||
maintainer: Simon Michael <simon@joyful.com>
|
maintainer: Simon Michael <simon@joyful.com>
|
||||||
homepage: http://hledger.org
|
homepage: http://hledger.org
|
||||||
bug-reports: http://hledger.org/bugs
|
bug-reports: http://bugs.hledger.org
|
||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.2
|
||||||
|
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
CHANGES
|
CHANGES
|
||||||
|
|||||||
@ -12,14 +12,17 @@ name : hledger
|
|||||||
version : '0.26.98'
|
version : '0.26.98'
|
||||||
stability : stable
|
stability : stable
|
||||||
category : Finance, Console
|
category : Finance, Console
|
||||||
synopsis : The main command-line interface for the hledger accounting tool.
|
synopsis : Command-line interface for the hledger accounting tool
|
||||||
description : |
|
description : |
|
||||||
hledger is a library and set of user tools for working
|
This is hledger’s command-line interface.
|
||||||
with financial data (or anything that can be tracked in a
|
Its basic function is to read a plain text file describing
|
||||||
double-entry accounting ledger.) It is a haskell port and
|
financial transactions and produce useful reports.
|
||||||
friendly fork of John Wiegley's Ledger. hledger provides
|
hledger is a cross-platform program for tracking money, time, or
|
||||||
command-line, curses and web interfaces, and aims to be a
|
any other commodity, using double-entry accounting and a simple,
|
||||||
reliable, practical tool for daily use.
|
editable file format. It is inspired by and largely compatible
|
||||||
|
with ledger(1). hledger provides command-line, curses and web
|
||||||
|
interfaces, and aims to be a reliable, practical tool for daily
|
||||||
|
use.
|
||||||
|
|
||||||
license : GPL
|
license : GPL
|
||||||
author : Simon Michael <simon@joyful.com>
|
author : Simon Michael <simon@joyful.com>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user