Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright year | Alexis Hildebrandt | 2023-02-02 | 1 | -1/+1 |
| | | | | [skip ci] | ||||
* | Update copyright statement for 2022 | Alexis Hildebrandt | 2022-07-02 | 1 | -1/+1 |
| | |||||
* | Fix compilation with Boost 1.76 | Sam James | 2021-06-14 | 1 | -0/+2 |
| | | | | | | | | We were previously relying on an indirect include within Boost headers. We're using scoped_ptr which is defined in <boost/smart_ptr/scoped_ptr.hpp>. Bug: https://bugs.gentoo.org/790176 Closes: https://github.com/ledger/ledger/issues/2030 | ||||
* | Drop support for gcc 2 and earlier | Tim Landscheidt | 2019-01-25 | 1 | -7/+7 |
| | |||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2018-01-27 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [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] | ||||
* | 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}/" | ||||
* | Bump copyright information to 2014 | Alexis Hildebrandt | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Bump copyright information to 2013 | John Wiegley | 2013-02-18 | 1 | -1/+1 |
| | |||||
* | Switch to using Boost.Format | John Wiegley | 2012-05-14 | 1 | -2/+2 |
| | |||||
* | Always call TRACE_CTOR at the end of constructors | John Wiegley | 2012-03-20 | 1 | -2/+2 |
| | |||||
* | Move expr_t's ctor/dtors into expr.cc | John Wiegley | 2012-03-09 | 1 | -0/+71 |
| | | | | Fixes #672 | ||||
* | Created merged_expr_t class for chained expressions | John Wiegley | 2012-03-07 | 1 | -0/+41 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | Minor simplifications to valexpr parser | John Wiegley | 2010-09-05 | 1 | -5/+21 |
| | | | | | The most significant change is the way CONS sequences are parsed, and that now instead of =/:=, the operators are ==/=. | ||||
* | The "source" command now accepts code from stdin | John Wiegley | 2010-06-26 | 1 | -0/+2 |
| | |||||
* | Added "source" command, for executing valexpr files | John Wiegley | 2010-06-24 | 1 | -0/+24 |
| | |||||
* | Corrected a compilation warning | John Wiegley | 2010-06-21 | 1 | -2/+3 |
| | |||||
* | Changes for building with Visual Studio 2008 | John Wiegley | 2010-06-15 | 1 | -1/+1 |
| | |||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -31/+31 |
| | |||||
* | Errors involving value objects provide more context | John Wiegley | 2010-06-10 | 1 | -0/+5 |
| | |||||
* | A string was not terminated with a NUL. | John Wiegley | 2010-05-12 | 1 | -1/+6 |
| | |||||
* | print command correctly prints amount expressions | John Wiegley | 2010-05-07 | 1 | -2/+13 |
| | |||||
* | Updated copyrights to 2003-2010 | John Wiegley | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | If -v is used, valexpr errors are more informative | John Wiegley | 2009-11-10 | 1 | -0/+23 |
| | |||||
* | Redesigned the expr_t, predicate_t, query_t classes | John Wiegley | 2009-11-09 | 1 | -121/+15 |
| | |||||
* | Render an expr if expr_t::text() has no string | John Wiegley | 2009-10-28 | 1 | -0/+10 |
| | |||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 |
| | |||||
* | Reduced the #include dependency tree to a minimum | John Wiegley | 2009-03-04 | 1 | -1/+0 |
| | |||||
* | Corrected warnings g++-4.3.3 was complaining about | John Wiegley | 2009-02-28 | 1 | -2/+4 |
| | |||||
* | Marked all strings needing internationalization | John Wiegley | 2009-02-25 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | 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". | ||||
* | Changed a debug category to be more accurate | John Wiegley | 2009-02-17 | 1 | -4/+4 |
| | |||||
* | Recompile the amount_expr before summing account totals. | John Wiegley | 2009-02-09 | 1 | -2/+8 |
| | |||||
* | Perhaps expr_t objects to remember their scope "context". | John Wiegley | 2009-02-08 | 1 | -11/+20 |
| | |||||
* | Implemented expr_context. | John Wiegley | 2009-02-07 | 1 | -0/+5 |
| | |||||
* | When copying an expr_t object, don't copy the compiled state. | John Wiegley | 2009-02-05 | 1 | -1/+1 |
| | |||||
* | Largely removed all of Ledger's use of global variables, for the REPL's sake. | John Wiegley | 2009-02-04 | 1 | -25/+18 |
| | |||||
* | Removed the binary caching code, and the XML, QIF and Gnucash parsers. | John Wiegley | 2009-02-03 | 1 | -10/+0 |
| | |||||
* | Stopped using the generic "unsigned int" in favor of more specific types. | John Wiegley | 2009-01-29 | 1 | -2/+2 |
| | |||||
* | Revised the way that parsing flags get passed around. | John Wiegley | 2009-01-29 | 1 | -2/+2 |
| | |||||
* | Added more debug code. | John Wiegley | 2009-01-23 | 1 | -1/+12 |
| | |||||
* | Errors while calculating value expressions now display meaningful error | John Wiegley | 2009-01-22 | 1 | -4/+2 |
| | | | | context. | ||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 |
| | |||||
* | Fixed the way that nested caught exceptions are rethrown, and how value | John Wiegley | 2008-09-15 | 1 | -2/+3 |
| | | | | expressions are displayed when errors are found in them. | ||||
* | Removed more dead code and todo comments, and made it possible to stream | John Wiegley | 2008-08-17 | 1 | -6/+3 |
| | | | | compiled value expressions. | ||||
* | Moved around most of the files so that source code is in src/, documentation | John Wiegley | 2008-08-05 | 1 | -0/+203 |
is in doc/, etc. |