Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix amount tokenizer re: embedded minus sign. | Donald Lam | 2021-05-02 | 1 | -2/+9 |
| | | | | | An amount may have a (single) leading minus sign, but none after that. Bug #2001 (and #1809). | ||||
* | Fix typos in comments | Martin Michlmayr | 2020-05-21 | 1 | -2/+2 |
| | |||||
* | Don't attempt to invert a value if it's already zero (#1703) | John Wiegley | 2019-01-11 | 1 | -1/+3 |
| | |||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2018-01-27 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | The "format" directive for commodities now disables "style observation" | John Wiegley | 2018-01-01 | 1 | -1/+3 |
| | |||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2017-01-05 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2016 | Alexis Hildebrandt | 2016-01-02 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [ledger] Remove --cache option | Alexis Hildebrandt | 2015-02-18 | 1 | -79/+0 |
| | | | | and all boost serialisation related code. | ||||
* | Bump copyright notice to 2015 | Alexis Hildebrandt | 2014-12-27 | 1 | -1/+1 |
| | | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/" | ||||
* | Unify debugging categories | Martin Michlmayr | 2014-07-01 | 1 | -4/+4 |
| | | | | | Debugging categories follow the filename, which in this case is singular (rather than plural) "account" and "amount". | ||||
* | Bump copyright information to 2014 | Alexis Hildebrandt | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Apply --time-colon option only to time commodities | Alexis Hildebrandt | 2013-09-07 | 1 | -5/+5 |
| | | | | See #989 | ||||
* | Resolve new compiler warnings from Clang | John Wiegley | 2013-05-19 | 1 | -0/+2 |
| | |||||
* | fix ledger xml output, remove ledger json command | Johann Klähn | 2013-03-08 | 1 | -5/+3 |
| | | | | | | | | | | | | As the format used by property trees to represent valid JSON and that for valid XML is too different and given that there are more requests for valid XML output I decided to pursue a quick fix and remove the json command in favor of a working xml command. See bug #782, #909, recent discussion on mailing list. JSON support is postponed until I or someone else finds time to work on this or the python bindings are more stable. | ||||
* | Bump copyright information to 2013 | John Wiegley | 2013-02-18 | 1 | -1/+1 |
| | |||||
* | Bug 634 Added roundto function, optimized floor and ceiling | Craig Earls | 2013-01-30 | 1 | -14/+15 |
| | | | | Fixes Bug634 by adding roundto(amount, places). | ||||
* | Merge pull request #107 from afh/pull/time_colon | John Wiegley | 2013-01-29 | 1 | -2/+21 |
|\ | | | | | Add --time-colon option | ||||
| * | Add --time-colon option | Alexis Hildebrandt | 2012-11-10 | 1 | -2/+21 |
| | | | | | | | | | | | | | | | | | | The --time-colon option will display the value for a seconds based commodity as real hours and minutes. For example 8100 seconds by default will be displayed as 2.25 whereas with the --time-colon option they will be displayed as 2:15. | ||||
* | | whitespace cleanup | Johann Klähn | 2013-01-16 | 1 | -1/+1 |
|/ | |||||
* | Bug 634 and 488, Corrected behavior of floor, and added ceiling | Craig Earls | 2012-10-25 | 1 | -3/+20 |
| | | | | This is only a partial fix for 634, since rounding is not fixed. | ||||
* | Changed all ASSERTS_ON -> !NO_ASSERTS | John Wiegley | 2012-05-20 | 1 | -1/+1 |
| | |||||
* | Converted the Ledger build system to use CMake | John Wiegley | 2012-05-20 | 1 | -7/+7 |
| | |||||
* | Switched to Boost.PropertyTree for XML generation | John Wiegley | 2012-05-18 | 1 | -7/+5 |
| | |||||
* | Switch to using Boost.Format | John Wiegley | 2012-05-14 | 1 | -6/+6 |
| | |||||
* | Whitespace fix | John Wiegley | 2012-03-30 | 1 | -4/+4 |
| | |||||
* | Never price commodities using annotated commodities | John Wiegley | 2012-03-30 | 1 | -3/+3 |
| | |||||
* | Improved some error messages | John Wiegley | 2012-03-29 | 1 | -10/+8 |
| | |||||
* | Always call TRACE_CTOR at the end of constructors | John Wiegley | 2012-03-20 | 1 | -5/+5 |
| | |||||
* | Tighten up argument passing related to fn_market() | John Wiegley | 2012-03-11 | 1 | -12/+7 |
| | |||||
* | Added syntactic sugar for lot pricing: {{$500.00}} | John Wiegley | 2012-03-10 | 1 | -4/+8 |
| | |||||
* | Added amount_t::commodity_ptr() | John Wiegley | 2012-03-09 | 1 | -2/+7 |
| | |||||
* | Made amount_t::price return an optional<amount_t> | John Wiegley | 2012-03-07 | 1 | -2/+2 |
| | |||||
* | Corrected several compile and link problems | John Wiegley | 2012-03-06 | 1 | -0/+2 |
| | |||||
* | Changed the category of a few DEBUG statements | John Wiegley | 2012-03-06 | 1 | -4/+4 |
| | |||||
* | Use unique_ptr instead of std::auto_ptr | John Wiegley | 2012-03-05 | 1 | -2/+2 |
| | |||||
* | All tests are working again but one | John Wiegley | 2012-03-05 | 1 | -6/+3 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | Fixed many Clang type conversion warnings with static_cast | John Wiegley | 2012-02-17 | 1 | -4/+8 |
| | |||||
* | Fixes for variable shadowing (5/28) | John Wiegley | 2012-02-17 | 1 | -3/+3 |
| | |||||
* | Fixes for variable shadowing (4/28) | John Wiegley | 2012-02-17 | 1 | -4/+4 |
| | |||||
* | Fixes for variable shadowing (3/28) | John Wiegley | 2012-02-17 | 1 | -4/+4 |
| | |||||
* | Use GMP_* macros instead of MPFR_* | John Wiegley | 2011-11-05 | 1 | -9/+9 |
| | |||||
* | amount_t::in_place_floor should round toward zero | John Wiegley | 2011-10-11 | 1 | -11/+12 |
| | |||||
* | Cleanup whitespace | John Wiegley | 2011-08-18 | 1 | -1/+1 |
| | |||||
* | Removed unused variables | John Wiegley | 2011-08-18 | 1 | -5/+1 |
| | |||||
* | Fixes for compilation as C++0x code | John Wiegley | 2011-02-04 | 1 | -3/+2 |
| | |||||
* | Minor simplifications to valexpr parser | John Wiegley | 2010-09-05 | 1 | -2/+4 |
| | | | | | The most significant change is the way CONS sequences are parsed, and that now instead of =/:=, the operators are ==/=. | ||||
* | Added debug print for commodity.prices.find | John Wiegley | 2010-06-20 | 1 | -0/+2 |
| | |||||
* | Made amount_t::value a bit safer | John Wiegley | 2010-06-19 | 1 | -5/+6 |
| | |||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -190/+190 |
| |