Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Guard against divide by zero error in -A reg report | John Wiegley | 2010-01-21 | 1 | -1/+1 | |
| | ||||||
* | Added a trim() value expression function | John Wiegley | 2009-11-25 | 1 | -0/+1 | |
| | ||||||
* | Added options: --unrealized-gains and --unrealized-losses | Aristid Breitkreuz | 2009-11-24 | 1 | -0/+5 | |
| | | | | | | | | | | | These options allow the user to specify what accounts names should be used for these two types of accounts. They are optional, and default to: --unrealized-gains "Equity:Unrealized Gains" --unrealized-losses "Equity:Unrealized Losses" These are intended to be set in one's ~/.ledgerrc file. | |||||
* | Added an --unrealized option, for use with bal -V | John Wiegley | 2009-11-19 | 1 | -0/+3 | |
| | | | | | | When this option is on, then in balance report which show market values, any gains or losses in value will be balanced into a pair of accounts called Equity:Unrealized Gains and Equity:Unrealized Losses. | |||||
* | The new period parser is passing all tests | John Wiegley | 2009-11-18 | 1 | -13/+18 | |
| | ||||||
* | Don't bold the payee for virtual or temporary xacts | John Wiegley | 2009-11-13 | 1 | -1/+1 | |
| | ||||||
* | Reorganized a bit of the reporting code | John Wiegley | 2009-11-12 | 1 | -0/+30 | |
| | ||||||
* | Moved report normalization into report.cc | John Wiegley | 2009-11-12 | 1 | -0/+2 | |
| | ||||||
* | Renamed the pricesdb command to pricedb | John Wiegley | 2009-11-12 | 1 | -3/+3 | |
| | ||||||
* | Added new value expressions for value conversion | John Wiegley | 2009-11-11 | 1 | -0/+9 | |
| | | | | | | | | | | | | | | They are: to_boolean to_int to_datetime to_date to_amount to_balance to_string to_mask to_sequence | |||||
* | Added --date, similar to --account and --payee | John Wiegley | 2009-11-11 | 1 | -0/+2 | |
| | | | | | | | This lets you do things like store a date as the value of a tag, then run: ledger --date='has_tag("Foo") ? to_date(tag("Foo")) : date' reg | |||||
* | Added floor() value expression function | John Wiegley | 2009-11-11 | 1 | -0/+1 | |
| | ||||||
* | Added a --prepend-format option | John Wiegley | 2009-11-11 | 1 | -0/+9 | |
| | | | | | | | | This lets you, for example, debug registers that cull data from many different sources, without having to change the basic formatting string. You can locate each posting's location with this: ledger reg --prepend-format='%-25(filename + ":" + beg_line)' | |||||
* | Fixes to Python importing; removed "hello" precommand | John Wiegley | 2009-11-10 | 1 | -2/+0 | |
| | ||||||
* | account_amount() is now account().amount | John Wiegley | 2009-11-10 | 1 | -1/+0 | |
| | ||||||
* | Removed a bunch of empty comments | John Wiegley | 2009-11-08 | 1 | -9/+0 | |
| | ||||||
* | Column widths are always calculated now | John Wiegley | 2009-11-07 | 1 | -30/+6 | |
| | ||||||
* | Renamed --set-reported-account to just --account | John Wiegley | 2009-11-06 | 1 | -18/+2 | |
| | | | | | | | This fits better with the --amount and --total options, which both change the amount and total used for calculation. Same with --account: it happens after filtering, but before calculation so that balance reports look as you'd expect. | |||||
* | Added new account_total value expression | John Wiegley | 2009-11-05 | 1 | -0/+1 | |
| | | | | | This is used for accessing an account's current total within one's Ledger file. | |||||
* | Segregated symbols into 5 separate namespaces | John Wiegley | 2009-11-04 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | | The different namespaces are: Function Value expression functions, which receive a "context" Option Command-line options Precommand Commands which are invoked before reading the journal Command Commands which are invoked after reading the journal Directive Directives that occur at column 0 in a data file This greatly eases the ability for Python uses to add intercept hooks to change how the basic Ledger module functions. An example of what should be possible soon: import ledger def my_foo_handler(value): print "--foo received:", value ledger.add_handler(ledger.Option, "foo=", my_foo_handler) | |||||
* | Set default LESS options to -FRSX | John Wiegley | 2009-11-02 | 1 | -1/+1 | |
| | ||||||
* | New: --set-reported-account, --set-reported-payee | John Wiegley | 2009-11-01 | 1 | -0/+4 | |
| | ||||||
* | Add valexpr functions for lot dates, prices and tags | John Wiegley | 2009-10-31 | 1 | -0/+3 | |
| | ||||||
* | Added a --forecast-years option | John Wiegley | 2009-10-31 | 1 | -0/+2 | |
| | | | | | This sets how many years of forecasting Ledger will do before it terminates the attempt. | |||||
* | Setting --date-format in ~/.ledgerrc works again | John Wiegley | 2009-10-29 | 1 | -0/+4 | |
| | ||||||
* | If isatty is available, no colors/pager for non-ttys | John Wiegley | 2009-10-29 | 1 | -1/+16 | |
| | ||||||
* | Fixed a gcc warning | John Wiegley | 2009-10-28 | 1 | -2/+0 | |
| | ||||||
* | Make "less" the default pager, similar to Git | John Wiegley | 2009-10-28 | 1 | -1/+28 | |
| | ||||||
* | No more trailing spaces in the print report | John Wiegley | 2009-10-28 | 1 | -3/+3 | |
| | ||||||
* | -D now means --daily, not --deviation | John Wiegley | 2009-10-28 | 1 | -2/+2 | |
| | | | | | | | | | | | | Because --daily is more commonly desired, and fits the pattern of the other periodic switches: -D --daily -W --weekly -M --monthly -Y --yearly Only --quarterly doesn't have its own short option. | |||||
* | Sort by default unless --unsorted is selected | John Wiegley | 2009-10-28 | 1 | -0/+3 | |
| | ||||||
* | Added --actual-dates, for overriding --effective | John Wiegley | 2009-10-27 | 1 | -0/+3 | |
| | | | | | This is so that if someone has --effective in their .ledgerrc, they can force the use of actual dates. | |||||
* | Support a --now option, for testing purposes | John Wiegley | 2009-10-27 | 1 | -0/+10 | |
| | | | | | | This sets Ledger's notion of the "current time" to the given date. This makes it possible to have stable output from budgeting and forecasting reports, for the sake of baseline tests. | |||||
* | Fixed a display issue with the balance report | John Wiegley | 2009-10-27 | 1 | -35/+9 | |
| | ||||||
* | In budget report, color large percentages magenta | John Wiegley | 2009-10-27 | 1 | -4/+20 | |
| | ||||||
* | Added a new "cleared" report | John Wiegley | 2009-10-27 | 1 | -0/+14 | |
| | | | | | | This is a balance report with three columns: Current balance | Cleared balance | Last cleared date | |||||
* | Added a new "budget" report | John Wiegley | 2009-10-27 | 1 | -6/+24 | |
| | | | | | | This is a balance report with four columns: Amount spent | Budgeted Amount | Difference | Percentage | |||||
* | Added an "echo" command, for REPL testing | John Wiegley | 2009-10-26 | 1 | -0/+1 | |
| | ||||||
* | Rewrote the way date and time I/O is managed | John Wiegley | 2009-10-25 | 1 | -7/+7 | |
| | ||||||
* | Restored --price option, added baseline test | John Wiegley | 2009-06-26 | 1 | -2/+5 | |
| | | | | | | | 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 | -7/+5 | |
| | ||||||
* | Split commodity.h/cc into three files | John Wiegley | 2009-06-24 | 1 | -0/+1 | |
| | | | | | | commodity.h - code for commodity_t annotate.h - commodity annotations pool.h - commodity pool management | |||||
* | Restored --download, although not done yet | John Wiegley | 2009-06-24 | 1 | -3/+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/+4 | |
| | ||||||
* | Restored option --period-sort | John Wiegley | 2009-06-21 | 1 | -3/+0 | |
| | | | | This option is just an alias for --sort-xacts. | |||||
* | Restored the --truncate option, added baseline test | John Wiegley | 2009-06-21 | 1 | -8/+9 | |
| | ||||||
* | Restored --unround, added baseline test | John Wiegley | 2009-06-21 | 1 | -2/+4 | |
| | ||||||
* | Whitespace reformatting | John Wiegley | 2009-06-21 | 1 | -4/+4 | |
| | ||||||
* | Restored --percent option, added baseline test | John Wiegley | 2009-06-21 | 1 | -2/+7 | |
| | ||||||
* | The -X option now accepts price settings | John Wiegley | 2009-06-18 | 1 | -2/+0 | |
| | | | | | | | 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' |