summaryrefslogtreecommitdiff
path: root/src/timelog.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fix compiler warningsAlexis Hildebrandt2023-02-201-1/+1
| | | | minimizing use of deprecated API where possible.
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* Timelog: Not able to check-in to multiple accounts at a timeNaga Kiran2018-06-251-1/+1
| | | | | | | | | | | Checking-in to multiple accounts at a time throws the following error "When multiple check-ins are active, checking out requires an account" Issue is that the acount name was sent as 3rd parameter to time_xact_t constructor whereas it is supposed to be sent as 4th parameter Corrected the argument position of account name in constructor call to time_xact_t
* [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]
* 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
|
* Fixed bug with --day-break optionJohn Wiegley2013-02-051-4/+2
|
* Added "last_checkout_cleared" valexpr variableJohn Wiegley2012-05-071-1/+1
|
* Added option --day-breakJohn Wiegley2012-03-171-33/+68
|
* Access to checkin/checkout of timelog entriesJohn Wiegley2012-03-131-0/+7
|
* Use unique_ptr instead of std::auto_ptrJohn Wiegley2012-03-051-1/+1
|
* Refactored the notion of "the current parsing context"John Wiegley2012-03-011-8/+7
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Apply timelog time to the check-in dayJohn Wiegley2012-02-281-1/+1
| | | | Fixes #546
* Support Boost 1.46 and Boost.Filesystem v3John Wiegley2011-02-281-5/+6
|
* Add support for typed metadataJohn Wiegley2010-06-121-4/+5
| | | | | | | | | | The metadata construct 'Key: Value' is now just a special case for 'Key:: "Value"'. Another after a :: in metadata setting is parsed as a full value expression and typed as such. For example: ; Key:: $400 + $500 ledger -l 'tag("Key") < $1000'
* Untabified all source filesJohn Wiegley2010-06-111-18/+18
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Added some missing calls to add_postJohn Wiegley2009-11-111-0/+1
|
* Timeclock events now record their file positionJohn Wiegley2009-11-111-35/+25
|
* Timeclock entries can now have notesJohn Wiegley2009-11-111-6/+17
| | | | | | | | | | Example of a tagged entry: i 2009/11/01 12:00:00 Account Payee ; :Foo: o 2009/11/01 13:00:00 Two spaces or a tab must separate account from payee, and payee from note.
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Reduced the #include dependency tree to a minimumJohn Wiegley2009-03-041-0/+4
|
* Changed many assert() calls to VERIFY()John Wiegley2009-03-041-1/+1
|
* Marked all strings needing internationalizationJohn Wiegley2009-02-251-7/+7
| | | | | | | | | | | | | | | | 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 IIJohn Wiegley2009-02-231-27/+27
| | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset.
* When clocking out, call total_seconds()John Wiegley2009-02-201-1/+1
|
* Largely removed all of Ledger's use of global variables, for the REPL's sake.John Wiegley2009-02-041-1/+1
|
* Added braces to avoid a compiler warning.John Wiegley2009-02-031-2/+4
|
* Refactored the textual parser, to allow easy extensions in Python.John Wiegley2009-01-291-5/+8
|
* Refactored the timelog code into its own file.John Wiegley2009-01-291-0/+145