summaryrefslogtreecommitdiff
path: root/src/lookup.cc
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2018-01-271-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2017-01-051-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2016Alexis Hildebrandt2016-01-021-1/+1
| | | | [ci skip]
* Fix sorting for option --auto-match.thdox2015-02-221-1/+1
| | | | | | See http://en.cppreference.com/w/cpp/algorithm/max_element and http://www.cplusplus.com/reference/algorithm/max_element/ The sorting for max requires < (and not >).
* Bump copyright notice to 2015Alexis Hildebrandt2014-12-271-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 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Converted the Ledger build system to use CMakeJohn Wiegley2012-05-201-5/+5
|
* #if 0'd out some unused codeJohn Wiegley2012-04-251-0/+2
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Cleanup whitespaceJohn Wiegley2011-08-181-1/+1
|
* Lookup probable accounts in reverse historical orderJohn Wiegley2011-07-191-4/+6
| | | | Fixes #510
* Untabified all source filesJohn Wiegley2010-06-111-92/+92
|
* Commented out the date limiter in the lookup codeJohn Wiegley2010-03-101-0/+2
|
* Cleaned up the intelligent lookup algorithm a bitJohn Wiegley2010-03-101-87/+72
|
* Added experimental account lookup logicJohn Wiegley2010-03-081-0/+296
This is used by the "xact" command, and the CSV importer. It is very slow O(xacts*records).