summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use .Nm to refer to ledger in the man pageMartin Michlmayr2015-07-281-2/+6
| | | | Thanks to Alexis for the suggestion.
* Document --no-revaluedMartin Michlmayr2015-07-282-0/+8
|
* Add baseline test for --no-revalued optionMartin Michlmayr2015-07-281-0/+58
|
* Document --explicitMartin Michlmayr2015-07-282-3/+8
|
* Add Debian testing and sid to install instructionsMartin Michlmayr2015-07-281-3/+3
|
* Improve --explicit test caseMartin Michlmayr2015-07-281-6/+8
| | | | | | Since --explicit tells ledger to require pre-declarations to establish "known-ness" (rather than taking it from cleared transactions), make sure the transactions are cleared.
* Add missing known functions to testMartin Michlmayr2015-07-281-1/+1
|
* [travis] Run documentation checks as reportsAlexis Hildebrandt2015-07-282-2/+8
| | | | which are allowed to fail instead of strict tests.
* [tests] Remove compiler warnings for unit testsAlexis Hildebrandt2015-07-281-0/+1
| | | | | | warning: relational comparison result unused [-Wunused-comparison] BOOST_CHECK_THROW(x6 < x7, amount_error); ~~~^~~~
* [tests] Allow string continuation in documentationAlexis Hildebrandt2015-07-281-0/+1
| | | | in long documentation examples.
* [cmake] Use CMAKE_SYSTEM_NAME to test the platform.Alexis Hildebrandt2015-07-282-3/+3
| | | | | | APPLE and CMAKE_HOST_APPLE only check the host system, whereas CMAKE_SYSTEM_NAME checks the target system when cross-compiling.
* [tests] Fix Util and Math tests on Mac OS XAlexis Hildebrandt2015-07-281-0/+6
| | | | by explicitly linking the testing targets against Python
* [travis] Remove multi-os build configurationAlexis Hildebrandt2015-07-281-16/+1
|
* [travis] Switch to container-based buildAlexis Hildebrandt2015-07-281-15/+43
| | | | using plain cmake and make
* Merge pull request #416 from tdsmith/python-exec-linkAlexis Hildebrandt2015-07-281-0/+3
|\ | | | | link ledger executable to Python on OS X
| * link ledger executable to PythonTim D. Smith2015-05-091-0/+3
| | | | | | | | | | Since the ledger executable embeds the Python interpreter, it does need an explicit link to a Python framework on OS X after all.
* | fix build for boost 1.58Johann Klähn2015-07-282-2/+2
| |
* | Merge pull request #422 from jwakely/issue-417John Wiegley2015-07-275-21/+5
|\ \ | | | | | | Convert boost::optional objects to bool explicitly.
| * | Convert boost::optional objects to bool explicitly.Jonathan Wakely2015-07-275-21/+5
|/ / | | | | | | Fixes #417.
* | Merge pull request #421 from cwarden/patch-2Craig Earls2015-07-161-1/+1
|\ \ | | | | | | Fix Total Commodity Price Example
| * | Fix Total Commodity Price ExampleChristian G. Warden2015-07-151-1/+1
|/ / | | | | | | | | Replace `{$5.00}` with `{$50.00}` to be consistent with the example being presented. [ci skip]
* | Merge pull request #419 from kanru/patch-1Craig Earls2015-06-281-1/+1
|\ \ | | | | | | Fix ledger-magic-tab: Wrong number of arguments
| * | Fix ledger-magic-tab: Wrong number of argumentsKan-Ru Chen2015-06-281-1/+1
|/ / | | | | ledger-post-align-postings expects (beg end) not to be optional
* | enable access to item's position in python bindingsJohann Klähn2015-06-091-2/+12
| |
* | Merge pull request #418 from egh/fix/remove-set-markCraig Earls2015-06-041-11/+3
|\ \ | | | | | | Do not use set-mark in ledger-post-align-postings
| * | Use (interactive "r") in ledger-post-align-postingsErik Hetzner2015-05-311-11/+3
|/ / | | | | | | | | Use standard method (interactive "r") to get the current active region for use in ledger-post-align-postings.
* | Revert "boost::none_t no longer convertible from literal 0 in 1.58"John Wiegley2015-05-175-5/+21
| | | | | | | | This reverts commit 48aec0f093ff6494a3e4f7cd5166cb4a27c16814.
* | Revert "fix build for boost 1.58"John Wiegley2015-05-172-2/+2
| | | | | | | | This reverts commit 68c9d649caa2c7c7f222613efe86576c379a5a7a.
* | Merge pull request #417 from kljohann/boostJohn Wiegley2015-05-117-23/+7
|\ \ | |/ |/| build fixes for boost 1.58
| * fix build for boost 1.58Johann Klähn2015-05-102-2/+2
| |
| * boost::none_t no longer convertible from literal 0 in 1.58Johann Klähn2015-05-105-21/+5
|/ | | | Instead we use boost::none, which has been documented since boost 1.34.0.
* Add a --no-revalued optionJohn Wiegley2015-05-052-0/+5
|
* Merge pull request #415 from tdsmith/darwin-pythonJohn Wiegley2015-05-041-1/+8
|\ | | | | Don't explicitly link libpython on OS X
| * Don't explicitly link libpython on OS XTim D. Smith2015-05-041-1/+8
|/ | | | | | | | Use -undefined dynamic_lookup to allow Python symbols to be discovered when the ledger module is imported instead of at build time. Without this change, the Python interpreter crashes when ledger is imported from a python that is different from (but compatible with) the python against which the module was built.
* Merge pull request #414 from davidsklar/nextJohn Wiegley2015-04-271-4/+7
|\ | | | | Use ./.ledgerrc if ~/.ledgerrc doesn't exist
| * Use ./.ledgerrc if ~/.ledgerrc doesn't existDavid Sklar2015-04-271-4/+7
|/
* Fix description of --unrealized-lossesMartin Michlmayr2015-04-232-2/+2
|
* Merge pull request #412 from thdox/baseline-test-revalued-totalJohn Wiegley2015-04-051-1/+2
|\ | | | | Improve baseline tests
| * Add --generated to untested options list.thdox2015-03-231-0/+1
| | | | | | | | | | --generated will generate each time new entries, this cannot be reproduced safely.
| * Add --verify-memory to untested options.thdox2015-03-231-0/+1
| | | | | | | | | | This --verify-memory option is very system (Linux/Mac) dependent on how the memory is allocated. This cannot be reproduce with same results.
| * Add --revalued-total to "to be tested" options.thdox2015-03-231-1/+0
| | | | | | | | | | | | I have not yet understood the meaning of --revalued-total, but as it output something, it should be tested. So add it to "to be tested" options list.
* | Merge pull request #409 from thdox/ledger-mode-docCraig Earls2015-04-051-10/+12
|\ \ | | | | | | Some documentation improvments about Ledger mode
| * | [doc] Use @option consistently.thdox2015-04-051-4/+4
| | | | | | | | | | | | [ci skip]
| * | [doc] Small typo.thdox2015-04-051-1/+1
| | | | | | | | | | | | [ci skip]
| * | [doc] Improve documentation about C-c C-c to clear a transaction.thdox2015-04-051-5/+7
| |/ | | | | | | [ci skip]
* | Merge pull request #411 from thdox/bug-1060Craig Earls2015-04-052-2/+17
|\ \ | | | | | | [emacs] Fix bug 1060.
| * | [emacs] Fix bug 1060.thdox2015-04-052-2/+17
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set as an option to kill (or not) the reconcile buffer after ledger-reconcile-finish. The default is set to *not* kill the buffer. This is justified as the facts that: 1. In old ledger mode (the one from Ledger 2.6), the default is to *not* kill the buffer. Also for the ones who will migrate from 2.6 to 3 when package will be available in their linux distribution, this will be the path of least surprise. 2. The current documentation does state that the buffer is to be killed with 'q' after 'C-c C-c'. This has been made configurable, as killing buffer may already be part of the workflow of some persons. [ci skip]
* | Merge pull request #410 from thdox/bug-1108Craig Earls2015-04-052-15/+25
|\ \ | |/ |/| Fix Bug 1108. Thanks.
| * [doc] Improve documentation about "choose account to reconcile"".thdox2015-03-231-13/+23
| | | | | | | | [ci skip]
| * [emacs] Fix bug 1108, enabling correct account context.thdox2015-03-231-2/+2
|/ | | | | | | | The old way of working was keeping spaces before and after the account. Now the space before is associated to the "status" and "separator" is enlarged to not be maxed to 2 chars [ci skip]