docs: more "c++ ledger" -> "ledger"
This commit is contained in:
parent
8956770c29
commit
2d4c693288
@ -88,8 +88,8 @@ each describing a transfer of money (or any commodity) between two or more named
|
|||||||
in a simple format readable by both hledger and humans.
|
in a simple format readable by both hledger and humans.
|
||||||
|
|
||||||
hledger's journal format is a compatible subset, mostly,
|
hledger's journal format is a compatible subset, mostly,
|
||||||
of [c++ ledger's journal format](http://ledger-cli.org/3.0/doc/ledger3.html#Journal-Format),
|
of [ledger's journal format](http://ledger-cli.org/3.0/doc/ledger3.html#Journal-Format),
|
||||||
so hledger can work with [compatible](LEDGER.html) c++ ledger journal files as well.
|
so hledger can work with [compatible](FAQ.html#file-format-differences) ledger journal files as well.
|
||||||
It's safe, and encouraged, to run both hledger and ledger on the same journal file,
|
It's safe, and encouraged, to run both hledger and ledger on the same journal file,
|
||||||
eg to validate the results you're getting.
|
eg to validate the results you're getting.
|
||||||
|
|
||||||
@ -527,7 +527,7 @@ To generate time logs, ie to clock in and clock out, you could:
|
|||||||
alias ti="echo i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG"
|
alias ti="echo i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG"
|
||||||
alias to="echo o `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"
|
alias to="echo o `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"
|
||||||
|
|
||||||
- or use the old `ti` and `to` scripts in the [c++ ledger 2.x repository](https://github.com/jwiegley/ledger/tree/maint/scripts).
|
- or use the old `ti` and `to` scripts in the [ledger 2.x repository](https://github.com/jwiegley/ledger/tree/maint/scripts).
|
||||||
These rely on a "timeclock" executable which I think is just the ledger 2 executable renamed.
|
These rely on a "timeclock" executable which I think is just the ledger 2 executable renamed.
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
@ -899,7 +899,7 @@ Spaces in smart dates are optional, so eg: `-b lastmonth` is valid.
|
|||||||
hledger supports flexible "period expressions" with the `-p/--period`
|
hledger supports flexible "period expressions" with the `-p/--period`
|
||||||
option to select transactions within a period of time (eg in 2009) and/or
|
option to select transactions within a period of time (eg in 2009) and/or
|
||||||
with a reporting interval (eg weekly). hledger period expressions are
|
with a reporting interval (eg weekly). hledger period expressions are
|
||||||
similar but not identical to c++ ledger's.
|
similar but not identical to ledger's.
|
||||||
|
|
||||||
Here is a basic period expression specifying the first quarter of 2009.
|
Here is a basic period expression specifying the first quarter of 2009.
|
||||||
Note the start date is always included and the end date is always excluded:
|
Note the start date is always included and the end date is always excluded:
|
||||||
|
|||||||
8
NEWS.md
8
NEWS.md
@ -605,7 +605,7 @@ at 3464 lines of non-test code, 97 tests, 53% test coverage.
|
|||||||
[announcement](http://thread.gmane.org/gmane.comp.finance.ledger.hledger/193)
|
[announcement](http://thread.gmane.org/gmane.comp.finance.ledger.hledger/193)
|
||||||
|
|
||||||
* price history support (first cut): P directives now work,
|
* price history support (first cut): P directives now work,
|
||||||
though differently from c++ ledger. Each posting amount takes its
|
though differently from ledger. Each posting amount takes its
|
||||||
fixed unit price from the price history (or
|
fixed unit price from the price history (or
|
||||||
@) when available. This is simple and useful for things like
|
@) when available. This is simple and useful for things like
|
||||||
foreign currency expenses (but not investment tracking). Like
|
foreign currency expenses (but not investment tracking). Like
|
||||||
@ -850,7 +850,7 @@ Release stats:
|
|||||||
* don't require quickcheck
|
* don't require quickcheck
|
||||||
* priced amounts (eg "10h @ $50") and ..basis/..cost/-B flag to
|
* priced amounts (eg "10h @ $50") and ..basis/..cost/-B flag to
|
||||||
show them with cost basis
|
show them with cost basis
|
||||||
* easy ..depth option, equivalent to c++ ledger's -d 'l<=N'
|
* easy ..depth option, equivalent to ledger's -d 'l<=N'
|
||||||
* smarter y/m/d date parsing for -b and -e (any number of digits,
|
* smarter y/m/d date parsing for -b and -e (any number of digits,
|
||||||
month and day default to 1, separator can be / - or .)
|
month and day default to 1, separator can be / - or .)
|
||||||
* -n flag for balance command
|
* -n flag for balance command
|
||||||
@ -858,7 +858,7 @@ Release stats:
|
|||||||
* build a library, as well as the exe
|
* build a library, as well as the exe
|
||||||
* new home page url (http://joyful.com/hledger)
|
* new home page url (http://joyful.com/hledger)
|
||||||
* publish html and pdf versions of README
|
* publish html and pdf versions of README
|
||||||
* detect display preferences for each commodity like c++ ledger
|
* detect display preferences for each commodity like ledger
|
||||||
* support amounts with multiple currencies/commodities
|
* support amounts with multiple currencies/commodities
|
||||||
* support ..real/-R flag
|
* support ..real/-R flag
|
||||||
* support -C/..cleared flag to filter by entry status (not
|
* support -C/..cleared flag to filter by entry status (not
|
||||||
@ -891,7 +891,7 @@ interest. It can be used for generating simple balance and transaction
|
|||||||
reports from a plain-text general ledger. A home page and mail list has
|
reports from a plain-text general ledger. A home page and mail list has
|
||||||
also been created.
|
also been created.
|
||||||
|
|
||||||
Immediate plans are to add some more of the most useful features from c++
|
Immediate plans are to add some more of the most useful features from
|
||||||
ledger, so that hledger can be used for day-to-day finances, and to grow
|
ledger, so that hledger can be used for day-to-day finances, and to grow
|
||||||
the community of contributors.
|
the community of contributors.
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user