Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed many compiler warnings from g++ 4.4 | John Wiegley | 2009-10-25 | 1 | -16/+16 | |
| | ||||||
* | Restored --price option, added baseline test | John Wiegley | 2009-06-26 | 1 | -3/+13 | |
| | | | | | | | This option reports only in terms of the annotated price of the commodities involved, otherwise it reports the amounts themselves. It can be used in conjunction with other reports, as it applies to the displayed amounts, not the actual amounts being calculated. | |||||
* | The --download option is now fully restored | John Wiegley | 2009-06-26 | 1 | -5/+5 | |
| | ||||||
* | More refactoring for --download | John Wiegley | 2009-06-24 | 1 | -1/+0 | |
| | ||||||
* | Restored --download, although not done yet | John Wiegley | 2009-06-24 | 1 | -5/+0 | |
| | | | | | | The problem at this point is that it's recording prices in the price database multiple times; it should only need to download a price for each commodity once per day. | |||||
* | Added a --no-color option, to disable --color | John Wiegley | 2009-06-22 | 1 | -0/+1 | |
| | ||||||
* | Restored option --period-sort | John Wiegley | 2009-06-21 | 1 | -1/+1 | |
| | | | | This option is just an alias for --sort-xacts. | |||||
* | Restored --percent option, added baseline test | John Wiegley | 2009-06-21 | 1 | -2/+11 | |
| | ||||||
* | Fixes to the 'xact' command (used to be 'entry') | John Wiegley | 2009-06-19 | 1 | -1/+6 | |
| | ||||||
* | Commented out an internal-only option | John Wiegley | 2009-06-18 | 1 | -0/+4 | |
| | ||||||
* | The -X option now accepts price settings | John Wiegley | 2009-06-18 | 1 | -27/+14 | |
| | | | | | | | For example, if you had 100 AU (onces of gold) and wanted to report it in dollars, but at a price of $997 per ounce, you could now easily say: ledger bal -X '$,AU=$997' | |||||
* | When --end is used, set a "terminus" date | John Wiegley | 2009-06-16 | 1 | -0/+8 | |
| | | | | | | | This means that final balance valuations (with -V or -X) will be done in terms of the date given to --end, rather than based on the current day. Fixes 647D5DB9-DBBB-47C8-80CE-F3F70E3B0253 | |||||
* | Move amount colorization deeper into the core | John Wiegley | 2009-06-16 | 1 | -3/+4 | |
| | | | | | | | | This is necessary in order to redden negative amounts correctly under all circumstances, such as component amounts of a multi-commodity balance. Fixes 727B2DF8-A2A1-4716-9C15-547F20D5F933 | |||||
* | Added new debug option --options | John Wiegley | 2009-06-02 | 1 | -14/+19 | |
| | | | | | This reports which options are in place before invoking a command, and where exactly each option value came from. | |||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 | |
| | ||||||
* | Revised the ways statistics are computed | John Wiegley | 2009-03-06 | 1 | -2/+4 | |
| | | | | | | | It is no longer done in calc_posts, but recursively on each account. This allows value expressions to ask statistical questions, like "earliest cleared posting?" (TBD) from any specific account, computed lazily. | |||||
* | Implemented --unround using value expressions | John Wiegley | 2009-03-06 | 1 | -0/+7 | |
| | ||||||
* | Removed the --totals option | John Wiegley | 2009-03-05 | 1 | -1/+0 | |
| | ||||||
* | Reduced the #include dependency tree to a minimum | John Wiegley | 2009-03-04 | 1 | -5/+18 | |
| | ||||||
* | Normalized how account totals are calculated | John Wiegley | 2009-03-03 | 1 | -18/+4 | |
| | ||||||
* | Allow special %{} formatting sequence | John Wiegley | 2009-03-03 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | Although %(amount) inserts an item's amount, it only does exactly that. There is no special consideration like stripping of lot details, or reduction to the base commodity, etc. For those things, and to make sure it was display in red if negative, the canonical form would be: %(ansify_if(justify(scrub(amount), 12, -1, true), red if amount < 0)) You can now use the special %{} form as an alternate to this: %12{amount, red if amount < 0} The two expand to the same underlying expression. | |||||
* | Made all the ANSI color names into valexpr names | John Wiegley | 2009-03-03 | 1 | -0/+67 | |
| | ||||||
* | Moved fn_false to be a non-member function | John Wiegley | 2009-03-03 | 1 | -1/+4 | |
| | ||||||
* | Added a "null" value for value expressions | John Wiegley | 2009-03-03 | 1 | -0/+9 | |
| | ||||||
* | Added a "show" report query term | John Wiegley | 2009-03-02 | 1 | -3/+20 | |
| | | | | | Everything beyond the show modifies the --display predicate, and everything before modifies the --limit predicate. | |||||
* | Changed how comments are output to be more logical | John Wiegley | 2009-03-01 | 1 | -0/+2 | |
| | ||||||
* | The generate report now implies --actual | John Wiegley | 2009-02-27 | 1 | -0/+1 | |
| | ||||||
* | Allow --head to limit the entries generate creates | John Wiegley | 2009-02-27 | 1 | -1/+3 | |
| | ||||||
* | Added --lots-actual, to not print calc'd details | John Wiegley | 2009-02-27 | 1 | -1/+1 | |
| | ||||||
* | Added generate command, --seed, and GenerateTests | John Wiegley | 2009-02-27 | 1 | -0/+16 | |
| | ||||||
* | Fixed bugs relating to sign and rounding of costs | John Wiegley | 2009-02-27 | 1 | -0/+8 | |
| | ||||||
* | Added an --unround option, to show full precision | John Wiegley | 2009-02-27 | 1 | -0/+1 | |
| | ||||||
* | Changed the "truncate" valexpr func to "truncated" | John Wiegley | 2009-02-27 | 1 | -3/+3 | |
| | ||||||
* | Changed --exchange's short option from -x to -X | John Wiegley | 2009-02-25 | 1 | -3/+3 | |
| | ||||||
* | Added a new --depth option | John Wiegley | 2009-02-25 | 1 | -0/+1 | |
| | ||||||
* | Added a new level of Python integration | John Wiegley | 2009-02-24 | 1 | -0/+17 | |
| | ||||||
* | Removed the largely useless --performance option | John Wiegley | 2009-02-24 | 1 | -3/+1 | |
| | ||||||
* | The Great Renaming, Part II | John Wiegley | 2009-02-23 | 1 | -36/+33 | |
| | | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset. | |||||
* | rounded() and quantity() act on the first value | John Wiegley | 2009-02-23 | 1 | -3/+4 | |
| | ||||||
* | Added get_at and is_seq valexpr functions | John Wiegley | 2009-02-23 | 1 | -2/+36 | |
| | | | | These are for dealing with sequences. | |||||
* | Many fixes to both --market and --exchange | John Wiegley | 2009-02-23 | 1 | -3/+7 | |
| | ||||||
* | Many fixes to --market and --exchange | John Wiegley | 2009-02-22 | 1 | -7/+3 | |
| | | | | Also, --exchange now accepted multiple, comma-separated commodities. | |||||
* | --exchange option now accepts multiple commodities | John Wiegley | 2009-02-22 | 1 | -16/+28 | |
| | | | | They must be separated by a comma, and all whitespace is ignored. | |||||
* | Added --exchange (-x) option | John Wiegley | 2009-02-22 | 1 | -16/+18 | |
| | | | | | | | This is like -V, except it lets you specify the goal commodity to report in terms of, for example: reg -x CAD | |||||
* | Fixed the way values are justified for printing | John Wiegley | 2009-02-22 | 1 | -9/+10 | |
| | ||||||
* | Changed --colors to --color, to match Git | John Wiegley | 2009-02-22 | 1 | -2/+2 | |
| | ||||||
* | Removed unused --totals option | John Wiegley | 2009-02-22 | 1 | -1/+0 | |
| | | | | This option was for outputting <total> elements in 2.x's XML output. | |||||
* | Added a new --colors option, for terminal fun | John Wiegley | 2009-02-21 | 1 | -2/+30 | |
| | | | | | | | | | The following colors are applied in the balance and register reports: GREEN To a date, if it occurs in the future BOLD If a payee name relates to an uncleared entry BLUE For account names RED For negative values | |||||
* | Added a new --raw option, for use with print | John Wiegley | 2009-02-21 | 1 | -2/+2 | |
| | ||||||
* | Removed an unused class: format_entries | John Wiegley | 2009-02-21 | 1 | -1/+2 | |
| |