Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Redid the way command-line arguments are processed. Before, Ledger used - and | John Wiegley | 2009-01-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | -- to mean special things after the command verb was seen. But now, what used to be specified as this: ledger -n reg cash -payable -- shell Is now specified as this: ledger reg -n cash not payable @shell It could also be specified as: ledger -n reg \(cash and not payable\) and @shell | |||||
* | Removed an extra call to session.read_init(). | John Wiegley | 2009-01-22 | 1 | -2/+0 | |
| | ||||||
* | Changed the order in which options are processed, to provide for the correct | John Wiegley | 2009-01-21 | 1 | -18/+43 | |
| | | | | | | | | | | | overrides. 1. Global defaults 2. Environment variable settings 3. Initialization file 4. Command-line arguments Whatever is later in the list overrides what is earlier. | |||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 | |
| | ||||||
* | Move handling of all commands to the value expression subsystem, rather than | John Wiegley | 2008-09-18 | 1 | -189/+11 | |
| | | | | handling them explicitly in main.cc. | |||||
* | Restored the 'print' command. | John Wiegley | 2008-09-17 | 1 | -1/+4 | |
| | ||||||
* | Restored --format, --date-format (-y), and --input-date-format options. | John Wiegley | 2008-09-14 | 1 | -1/+4 | |
| | ||||||
* | Removed more dead code and todo comments, and made it possible to stream | John Wiegley | 2008-08-17 | 1 | -2/+2 | |
| | | | | compiled value expressions. | |||||
* | Added back a lot of hacktastic logic from 2.6.1 that made the "bal" command | John Wiegley | 2008-08-14 | 1 | -4/+73 | |
| | | | | | somewhat smart about how it interpreted certain options. Beware, code, for your days are not long-lived. | |||||
* | The balance output now includes the final total. | John Wiegley | 2008-08-13 | 1 | -16/+14 | |
| | ||||||
* | The -f flag now works again. | John Wiegley | 2008-08-13 | 1 | -1/+1 | |
| | ||||||
* | Regular expressions supplied after 'reg' or 'bal' are working again. | John Wiegley | 2008-08-10 | 1 | -10/+6 | |
| | ||||||
* | Fixed a memory leak that would show up if --verify --verbose was running and | John Wiegley | 2008-08-10 | 1 | -3/+2 | |
| | | | | an error or exception occurred. | |||||
* | Moved around most of the files so that source code is in src/, documentation | John Wiegley | 2008-08-05 | 1 | -0/+593 | |
is in doc/, etc. |