Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | default.nix: Fix testing | Michael Raitza | 2020-10-30 | 1 | -2/+5 | |
| | ||||||
* | Implement cryptographic access to files using GPGME | Michael Raitza | 2020-10-30 | 9 | -8/+401 | |
| | ||||||
* | Add .yamllint | Martin Michlmayr | 2020-10-30 | 1 | -0/+2 | |
| | ||||||
* | Fix typo in ledger3.texi | Kuang-che Wu | 2020-10-13 | 1 | -1/+1 | |
| | ||||||
* | Added Fedora build dependencies to README.md | Marin BERNARD | 2020-10-04 | 1 | -0/+10 | |
| | | | Added instructions to install build dependencies in Fedora 32. | |||||
* | Document how to specify multiple debug flags | Daraul Harris | 2020-09-25 | 1 | -2/+3 | |
| | | | | | | | Document how to pass multiple debug flags to ledger using a regular expression. Fixes #1062 | |||||
* | Add support for `$XDG_CONFIG_HOME` | Cédric Barreteau | 2020-08-28 | 4 | -18/+28 | |
| | | | | | `$XDG_CONFIG_HOME/ledger/ledgerrc` and `$HOME/.config/ledger/ledgerrc` are tried first when looking for an init file. | |||||
* | Fix whitespace/tabs | Emin Martinian | 2020-08-13 | 1 | -6/+6 | |
| | ||||||
* | Make it so that the include directive sorts when using wildcards. | Emin Martinian | 2020-08-13 | 1 | -4/+12 | |
| | | | | | | | | Before this commit, doing something like 'include data/*.dat' would produce undesired behaviour because the matches for 'data/*.dat' would not be sorted correctly. See https://github.com/ledger/ledger/issues/1659 for details. | |||||
* | docs: fix quotation mark in man page | Martin Michlmayr | 2020-08-10 | 1 | -1/+1 | |
| | ||||||
* | docs: Document new --depth in register reports | Rahix | 2020-07-21 | 2 | -2/+7 | |
| | ||||||
* | docs: Fix documentation for `depth` | Rahix | 2020-07-21 | 1 | -1/+1 | |
| | | | | `l` does not exist anymore, the account depth is available as `depth`. | |||||
* | Treat --depth like --collapse in register | Rahix | 2020-07-21 | 1 | -1/+1 | |
| | | | | | | | | | | Currently, collapsing is only done when both --depth and --collapse are present. This is very unintuitive and I have even stumbled over this myself while implenting the feature. Change --depth to behave just like --collapse in all cases (except that --depth has a parameter associated. --collapse defaults to 0 to retain its old behavior). | |||||
* | collapse_posts: Use the existing accounts instead of temps | Rahix | 2020-07-21 | 2 | -4/+12 | |
| | | | | | | The temps will not have correct depth information attached which means a display predicate involving `depth` will most likely lead to wrong results. | |||||
* | collapse_posts: Fix some postings getting lost when collapsing | Rahix | 2020-07-21 | 1 | -1/+1 | |
| | | | | | | | | | | Because the only_predicate and display_predicate are applied to the original posts, not the collapsed ones, they sometimes yield wrong results leading to entire transactions getting dropped erroneously. As this code is only relevant to depth == 0 collapsing (that is, the old behavior), only follow the displayed_count == 1 code-path when the depth is 0. | |||||
* | collapse_posts: Fix segfault when depth is too big | Rahix | 2020-07-21 | 1 | -1/+1 | |
| | | | | | | | When an account already has less depth than collapse_depth, a segfault was caused by attempting to move up the account parents until parent is NULL. Fix this by exiting early if the depth is already less than collapse_depth. | |||||
* | collapse_posts: Use --depth as the collapse_depth | Rahix | 2020-07-21 | 1 | -2/+8 | |
| | | | | Use the value from --depth as the collapse_depth for --collapse. | |||||
* | collapse_posts: Add a collapse_depth attribute | Rahix | 2020-07-21 | 2 | -6/+7 | |
| | | | | | Replace the hardcoded depth of 3 with a class attribute that can later be set from a commandline argument. | |||||
* | first try for implementing --depth for register | johannes@debussy | 2020-07-21 | 2 | -14/+32 | |
| | ||||||
* | docs: improve the example of displaying amount in another commodity | Hieu Van | 2020-07-21 | 1 | -8/+3 | |
| | | | | | The current one doesn't work; also Ledger has got a much neater command-line option to achieve the goal. | |||||
* | docs: avoid UTF-8 quotes in code | Martin Michlmayr | 2020-07-08 | 1 | -0/+2 | |
| | | | | | | | | | | The PDF manual used UTF-8 quotes like: expr has_tag(’TAG’) which isn't accepted by ledger. Fixes #1898 | |||||
* | Use PAGER when environment variable is set | Martin Michlmayr | 2020-06-18 | 2 | -10/+19 | |
| | | | | | | | The code looked for "less" if $PAGER is not set, but it didn't actually use $PAGER when it it defined. Fixes #1674 | |||||
* | Remove the-kenny from list of maintainers in default.nix | Steve Purcell | 2020-05-28 | 1 | -1/+1 | |
| | | | | | Without this fix, the Nix build is broken, which causes `ledger-mode` CI builds to fail. See https://github.com/NixOS/nixpkgs/commit/887295fd2d8c4da06acdaa185cbb3cc214d83285 | |||||
* | Fix typos in comments | Martin Michlmayr | 2020-05-21 | 10 | -11/+11 | |
| | ||||||
* | docs: fix grammar issues | Martin Michlmayr | 2020-05-21 | 1 | -2/+2 | |
| | ||||||
* | acprep: opt flavor should build optimized binary | Kuang-che Wu | 2020-05-19 | 1 | -0/+1 | |
| | ||||||
* | fix acprep python3 compatibility | Kuang-che Wu | 2020-05-18 | 1 | -2/+1 | |
| | ||||||
* | Release 3.2.1 | Martin Michlmayr | 2020-05-18 | 2 | -4/+4 | |
| | ||||||
* | Update NEWS for 3.2.1 | Martin Michlmayr | 2020-05-18 | 1 | -0/+17 | |
| | ||||||
* | Fix compilation warning | Martin Michlmayr | 2020-05-18 | 1 | -1/+1 | |
| | ||||||
* | run demo.py test only when Python is enabled | Martin Michlmayr | 2020-05-18 | 1 | -5/+7 | |
| | | | | | | | | Commit 92b6072ffd ("run demo.py with ctest") made demo.py part of the test suite. But we can only run it if Python is enabled in ledger. Fixes #1910 | |||||
* | Revert "Compare price annotations using their textual rendering" | Martin Michlmayr | 2020-05-18 | 1 | -3/+1 | |
| | | | | | | This reverts commit a6a58af28f30ee81f86604b56740d98af8b75c38. Fixes #1907 | |||||
* | Add regression test for issue #1895 | Martin Michlmayr | 2020-05-18 | 1 | -0/+31 | |
| | | | | Thanks to Feiko Nanninga for the test case. | |||||
* | Revert "Change --invert to invert displayed amounts and totals, not amounts" | Martin Michlmayr | 2020-05-18 | 1 | -2/+1 | |
| | | | | | | This reverts commit 9ad0dcc85a3ec59a1dd23f36964d083cf59bd7a9. Fixes #1895 | |||||
* | run demo.py with ctest | Andy Clayton | 2020-05-18 | 2 | -1/+6 | |
| | | | | | Fix error from newer cmake/FindPython versions not printing internal Python_EXECUTABLE variable. | |||||
* | use system FindPython if newer | Andy Clayton | 2020-05-18 | 6 | -2/+6 | |
| | | | | | Avoid needing to keep our copy updated and only keep it as a fallback for when system cmake is not new enough. | |||||
* | Fix some typos | Martin Michlmayr | 2020-05-16 | 3 | -3/+3 | |
| | ||||||
* | Fix: library path issue | Henrik Pingel | 2020-05-13 | 1 | -0/+1 | |
| | ||||||
* | docs: mark expressions as such | Martin Michlmayr | 2020-05-12 | 1 | -3/+3 | |
| | ||||||
* | docs: fix definition of format string "d" | Martin Michlmayr | 2020-05-11 | 1 | -1/+1 | |
| | ||||||
* | docs: add has_meta() to the manual | Martin Michlmayr | 2020-05-11 | 1 | -0/+5 | |
| | ||||||
* | docs: add description for "tag regex" | Martin Michlmayr | 2020-05-11 | 1 | -0/+1 | |
| | ||||||
* | docs: fix some typos | Martin Michlmayr | 2020-05-11 | 3 | -4/+4 | |
| | ||||||
* | docs: add missing parameters for has_meta and meta | Martin Michlmayr | 2020-05-11 | 1 | -2/+2 | |
| | ||||||
* | Improve testcase for issue #1894 slightly | Martin Michlmayr | 2020-05-09 | 1 | -3/+8 | |
| | ||||||
* | Add regression tests for issue #1894 | Rahix | 2020-05-09 | 2 | -0/+37 | |
| | | | | | | Add tests for wrong behavior caused by commit 49b07a1c1948 ("Correction to the way parens are parsed in query expressions") which was reverted with commit 869302ae9ce3. The bug report was issue #1894. | |||||
* | Revert "Correction to the way parens are parsed in query expressions" | John Wiegley | 2020-05-07 | 2 | -47/+9 | |
| | | | | This reverts commit 49b07a1c19489547b859d61fbc5c240aff224dda. | |||||
* | Improve conditional for exclusive options | Martin Michlmayr | 2020-05-07 | 1 | -1/+1 | |
| | ||||||
* | Release 3.2.0 | Martin Michlmayr | 2020-05-01 | 3 | -6/+6 | |
| | ||||||
* | Update NEWS for 3.2 | Martin Michlmayr | 2020-05-01 | 1 | -5/+35 | |
| |