summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* remove reference to urlHans Erik van Elburg2015-01-041-1/+1
|
* also added cygwin tweak to src/CMakeLists.txtHans Erik van Elburg2015-01-032-3/+19
|
* initial cygwin tweaksHans Erik van Elburg2015-01-032-1/+8
|
* [emacs] maintain the report order after auto-refresh.Craig Earls2015-01-021-3/+12
|
* Merge commit '8e79b3c7c74081b63f9d8b1e0ec97478f61d4ba8'Craig Earls2014-12-30161-413/+579
|\
| * Merge pull request #345 from afh/pull/cmake_warningJohn Wiegley2014-12-301-0/+4
| |\ | | | | | | Set CMake policy CMP0042
| | * Set CMake policy CMP0042Alexis Hildebrandt2014-12-241-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to remove the warning below when running cmake. In the long run changing the CMake rules to set MACOSX_RPATH might be the better option. CMake Warning (dev): Policy CMP0042 is not set: MACOSX_RPATH is enabled by default. Run "cmake --help-policy CMP0042" for policy details. Use the cmake_policy command to set the policy and suppress this warning. MACOSX_RPATH is not specified for the following targets: libledger This warning is for project developers. Use -Wno-dev to suppress it.
| * | Merge pull request #358 from afh/pull/DocTestsJohn Wiegley2014-12-301-2/+15
| |\ \ | | | | | | | | [tests] Add examples parameter to DocTests
| | * | [tests] Add examples parameter to DocTestsAlexis Hildebrandt2014-12-301-2/+15
| | | | | | | | | | | | to test the given examples only instead of every example.
| * | | Merge pull request #356 from afh/pull/1038John Wiegley2014-12-294-9/+82
| |\ \ \ | | |/ / | |/| | Fix bug 1038; Improve error handling when parsing year directives
| | * | Bugfix 1038: empty reg report for this month periodAlexis Hildebrandt2014-12-294-0/+61
| | | | | | | | | | | | | | | | | | | | when year was specified with literal Y or year directive, but not when using apply year.
| | * | Improve error handling when parsing year directivesAlexis Hildebrandt2014-12-281-9/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | A literal Y directive or ‘year’ directive with an empty or invalid argument, e.g. ‘2o14’ (that is a small letter ‘oh’ instead of a zero) would fail with the following rather unhelpful error message: Error: bad lexical cast: source type value could not be interpreted as target
| | * | Fix plain year directiveAlexis Hildebrandt2014-12-281-0/+7
| |/ / | | | | | | | | | Only Y2014 or apply year 2014 would actually set the year for the following transactions; year 2014 would silently do nothing.
| * | Merge pull request #355 from afh/pull/copyrightJohn Wiegley2014-12-27149-155/+155
| |\ \ | | | | | | | | Update copyright
| | * | Use same license text formatting in source filesAlexis Hildebrandt2014-12-273-6/+6
| | | |
| | * | Bump copyright notice to 2015Alexis Hildebrandt2014-12-27149-149/+149
| |/ / | | | | | | | | | | | | | | | 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}/"
| * | Merge pull request #353 from afh/pull/typoJohann Klähn2014-12-251-2/+2
| |\ \ | | | | | | | | Correct no-python error messages
| | * | Correct no-python error messagesAlexis Hildebrandt2014-12-251-2/+2
| |/ / | | | | | | | | | [ci skip]
| * | Merge pull request #347 from afh/pull/gitignoreJohn Wiegley2014-12-241-0/+1
| |\ \ | | | | | | | | Ignore vim swap files
| | * | Ignore vim swap filesAlexis Hildebrandt2014-12-241-0/+1
| | | | | | | | | | | | | | | | [ci skip]
| * | | Merge pull request #346 from afh/pull/trace_levelJohn Wiegley2014-12-244-3/+18
| |\ \ \ | | | | | | | | | | Fix crash when using --trace 10 or above
| | * | | Fix crash when using --trace 10 or aboveAlexis Hildebrandt2014-12-234-3/+18
| | | |/ | | |/| | | | | | | | | | | | | uint8_t is typedef'd to char, thus boost::lexical_cast treats it as such instead of a number.
| * | | Merge pull request #349 from afh/pull/DocTestsJohn Wiegley2014-12-241-1/+1
| |\ \ \ | | | | | | | | | | [test] Use --args-only option in DocTests.py
| | * | | [test] Use --args-only option in DocTests.pyAlexis Hildebrandt2014-12-241-1/+1
| | | |/ | | |/| | | | | | | | | instead of --init-file /dev/null
| * | | Merge pull request #352 from afh/pull/travisJohn Wiegley2014-12-241-18/+8
| |\ \ \ | | | | | | | | | | [travis] Shorten Travis CI run times
| | * | | [travis] Shorten Travis CI run timesAlexis Hildebrandt2014-12-241-18/+8
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | by adding --jobs to utilize multiple cores and using boost ppa packages instead of downloading the source and building boost from scratch. This effectively cuts the time for a Travis CI run in half.
| * | | Merge pull request #351 from afh/pull/git-hookSteve Purcell2014-12-241-1/+1
| |\ \ \ | | |/ / | |/| | [travis] Run Travis build when .travis.yml changed
| | * | [travis] Run Travis build when .travis.yml changedAlexis Hildebrandt2014-12-241-1/+1
| |/ / | | | | | | | | | | | | | | | - Change match pattern to include ^\.travis.yml - Add executable file permissions for tools/prepare-commit-msg [ci skip]
| * | Merge pull request #342 from afh/pull/readmeJohn Wiegley2014-12-221-1/+1
| |\ \ | | |/ | |/| Add ledger formula to OS X install instructions
| | * Add ledger formula to OS X install instructionsAlexis Hildebrandt2014-12-211-1/+1
| | | | | | | | | | | | [ci skip]
| * | Merge pull request #344 from thdox/fix-docMartin Michlmayr2014-12-222-217/+241
| |\ \ | | | | | | | | Fix doc
| | * | Indented with Emacs: M-x fill-paragraphthdox2014-12-222-145/+162
| | | |
| | * | Document that buffer names should use @file{} keywordthdox2014-12-221-1/+1
| | | |
| | * | M-x delete-trailing-whitespacethdox2014-12-222-37/+37
| | | |
| | * | Fixes:thdox2014-12-221-40/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - typo fixes - @keywords consistency fixes - add some @kindex and @cindex - buffer names highlighted as @file{} - menu item highlighted as @samp{}
| | * | Fixes for consistencythdox2014-12-221-3/+3
| | | |
| | * | pxref already contains "see"thdox2014-12-221-3/+3
| | | |
| | * | query is a commandthdox2014-12-221-1/+1
| | | |
| | * | Minor fix: double spacesthdox2014-12-221-9/+9
| | | |
| | * | fix minor typothdox2014-12-221-1/+1
| |/ /
| * | Merge pull request #343 from afh/pull/git-hookSteve Purcell2014-12-211-0/+27
| |\ \ | | |/ | |/| Add git hook to skip continous integration
| | * Add git hook to skip continous integrationAlexis Hildebrandt2014-12-211-0/+27
| |/ | | | | | | | | if the commit is not related to code under test. [ci skip]
| * Merge pull request #341 from zt9/masterSteve Purcell2014-12-211-1/+20
| |\ | | | | | | Added simple instructions for how to use brew to install ledger in OS X
| | * cleaning up formatting on instructionszt2014-12-211-2/+2
| | |
| | * added simple instructions for how to use brew to install brewzt2014-12-211-1/+20
| |/
| * [emacs] Don't define unprefixed "string-empty-p" functionSteve Purcell2014-12-181-5/+5
| |
* | Merge branch 'master' of https://github.com/ledger/ledgerCraig Earls2014-12-164-3/+40
|\|
| * Merge pull request #340 from afh/pull/730John Wiegley2014-12-162-1/+38
| |\ | | | | | | Fix crash when using -M with empty result
| | * Fix crash when using -M with empty resultAlexis Hildebrandt2014-12-162-1/+38
| |/ | | | | | | | | | | | | ledger -f /dev/null reg -M test causes a segmentation fault, see bug 730 and duplicates 1080 and 1084 for details. Kudos to Ikke for helping with debugging.
| * [emacs] Make ledger-occur-mode auto-disable when restored by desktop.elSteve Purcell2014-12-161-1/+1
| | | | | | | | | | | | | | The minor mode gets restored by desktop.el, and this has long caused errors. While the ideal would be to restore the mode along with the current narrowing regexp, this interim fix instead ensures that ledger-occur-mode will disable itself if it finds no regexp set.