Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Changed the way that account balances are computed | John Wiegley | 2009-03-06 | 1 | -11/+5 | |
| | ||||||
* | Reduced the #include dependency tree to a minimum | John Wiegley | 2009-03-04 | 1 | -0/+10 | |
| | ||||||
* | Gather account details in a details_t structure | John Wiegley | 2009-03-03 | 1 | -2/+4 | |
| | ||||||
* | Normalized how account totals are calculated | John Wiegley | 2009-03-03 | 1 | -10/+10 | |
| | ||||||
* | Separator in "balance" now part of format string | John Wiegley | 2009-02-27 | 1 | -3/+32 | |
| | ||||||
* | Marked all strings needing internationalization | John Wiegley | 2009-02-25 | 1 | -13/+16 | |
| | | | | | | | | | | | | | | | | These strings are now collected automagically in the file po/ledger.pot. If you'd like to produce a translation, just run this command after building Ledger: msginit -l LOCALE -o LANG.po -i po/ledger.pot Where LOCALE is a string like de or en_GB, and LANG is a short descriptive word for your language. Then send me this .po file so I can commit it to the Ledger sources (alternatively, you could maintain the file in a fork on GitHub), and setup the build script to format and install your new message catalog during a "make install". | |||||
* | The Great Renaming, Part II | John Wiegley | 2009-02-23 | 1 | -60/+60 | |
| | | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset. | |||||
* | Many fixes to both --market and --exchange | John Wiegley | 2009-02-23 | 1 | -5/+5 | |
| | ||||||
* | Added a new --raw option, for use with print | John Wiegley | 2009-02-21 | 1 | -9/+26 | |
| | ||||||
* | Removed an unused class: format_entries | John Wiegley | 2009-02-21 | 1 | -31/+0 | |
| | ||||||
* | Added --no-total option | John Wiegley | 2009-02-20 | 1 | -5/+5 | |
| | | | | This simply omits the final total in the balance report, nothing more. | |||||
* | Rewrote the equity command, which is working again | John Wiegley | 2009-02-20 | 1 | -78/+0 | |
| | | | | | | The old implementation used an account formatter, and was very specialized. The new is done as a transaction filter, and works along with everything else, eliminating bugs special to the equity report. | |||||
* | Allow for sorting of the balance report | John Wiegley | 2009-02-19 | 1 | -46/+46 | |
| | | | | | | Sorting is repeated at each level of the hierarchy, unless --flat was specified in which case it applies to the entire applicable accounts list. | |||||
* | Added --flat option, to flatten the balance report | John Wiegley | 2009-02-17 | 1 | -2/+4 | |
| | ||||||
* | Only display a final balance total if necessary | John Wiegley | 2009-02-17 | 1 | -16/+26 | |
| | | | | | In the case where only one top-level account is being reported, there is no reason to duplicate the total balance shown. | |||||
* | Rewrote how the balance command displays accounts | John Wiegley | 2009-02-17 | 1 | -92/+73 | |
| | | | | | | | | The previous method bent over backwards to try and avoid multiple passes through the account tree, but the result was a horribly complicated mess that never ceased to dredge up obscure bugs. The new scheme is a very, very simple two-pass algorithm, with multiple subpasses during the second pass for refining the output based on the report options. | |||||
* | Removed an unused extended account xdata flag | John Wiegley | 2009-02-16 | 1 | -9/+7 | |
| | ||||||
* | Moved format_accounts::should_display out of line | John Wiegley | 2009-02-16 | 1 | -0/+9 | |
| | ||||||
* | Simplified the stats command | John Wiegley | 2009-02-16 | 1 | -9/+4 | |
| | ||||||
* | Fleshed out the "stats" command | John Wiegley | 2009-02-16 | 1 | -11/+80 | |
| | ||||||
* | Re-enabled some code, and removed a bunch of deadwood. | John Wiegley | 2009-02-12 | 1 | -34/+0 | |
| | ||||||
* | Wrote the beginnings of a new "stats" command. | John Wiegley | 2009-02-10 | 1 | -0/+31 | |
| | ||||||
* | Removed the balance_pair_t type, since it's now an unneeded abstraction. | John Wiegley | 2009-02-09 | 1 | -4/+0 | |
| | | | | | This type was a holdback from the days before the amount_expr was used everywhere to determine a transaction's value. | |||||
* | Greatly simplified the way option and command handlers are defined. | John Wiegley | 2009-02-05 | 1 | -3/+3 | |
| | ||||||
* | Create bound scopes for locating the total expr. | John Wiegley | 2009-02-05 | 1 | -2/+4 | |
| | ||||||
* | Largely removed all of Ledger's use of global variables, for the REPL's sake. | John Wiegley | 2009-02-04 | 1 | -15/+29 | |
| | ||||||
* | Created a new stream.h file for dealing with output streaming. | John Wiegley | 2009-01-30 | 1 | -7/+7 | |
| | ||||||
* | Stopped using the generic "unsigned int" in favor of more specific types. | John Wiegley | 2009-01-29 | 1 | -6/+6 | |
| | ||||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 | |
| | ||||||
* | Output newlines between entries using format strings, not hard-coded. | John Wiegley | 2009-01-14 | 1 | -2/+0 | |
| | ||||||
* | Factored common parts of entry_t and xact_t into new item_t | John Wiegley | 2008-09-19 | 1 | -1/+1 | |
| | ||||||
* | Restored the 'print' command. | John Wiegley | 2008-09-17 | 1 | -1/+11 | |
| | ||||||
* | Added back a lot of hacktastic logic from 2.6.1 that made the "bal" command | John Wiegley | 2008-08-14 | 1 | -7/+5 | |
| | | | | | 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 | -8/+4 | |
| | ||||||
* | Basic balance reports are working again! | John Wiegley | 2008-08-10 | 1 | -1/+1 | |
| | ||||||
* | Moved around most of the files so that source code is in src/, documentation | John Wiegley | 2008-08-05 | 1 | -0/+310 | |
is in doc/, etc. |