doc: changelogs cleanup
[ci skip]
This commit is contained in:
parent
afd7cae169
commit
9955f53b9b
39
CHANGES.md
39
CHANGES.md
@ -1,16 +1,41 @@
|
|||||||
General/project-related changes in the hledger project.
|
General/project-related changes in the hledger project.
|
||||||
For package-specific changes, see the package changelogs.
|
For package-specific changes, see the package changelogs.
|
||||||
|
|
||||||
# a37c18e5
|
# afd7cae1
|
||||||
|
|
||||||
|
- install: fix "stack" installation when .local/bin is not in PATH (Dmitry Astapov)
|
||||||
|
|
||||||
|
- package: added helper scripts in docker/ (Dmitry Astapov)
|
||||||
|
|
||||||
|
- cli: command help: reduce width, line wrapping
|
||||||
|
cmdargs wraps any lines longer than 78 characters. To (mostly) avoid
|
||||||
|
this, we now display verbatim blocks unindented, and some of
|
||||||
|
register's examples have been altered to make them fit.
|
||||||
|
|
||||||
|
- shake: Shake PKG (or Shake build) builds packages plus their docs
|
||||||
|
"stack build hledger" will not notice changes in documentation source
|
||||||
|
files (like hledger/Hledger/Cli/Commands/Add.md or
|
||||||
|
hledger-lib/hledger_journal.m4.md), but "./Shake hledger" will.
|
||||||
|
|
||||||
|
"./Shake build" builds all the packages, like a doc-aware "stack build".
|
||||||
|
|
||||||
|
- make: ghci-shake
|
||||||
|
|
||||||
|
- package: added Dockerfile (Dmitry Astapov)
|
||||||
|
|
||||||
|
- site: download: link adept's & other docker images
|
||||||
|
|
||||||
|
- site: download: link sandstorm
|
||||||
|
|
||||||
|
- site: download: platform headings
|
||||||
|
|
||||||
|
- site: download: fix the TOC links
|
||||||
|
|
||||||
|
- site: home: link download page
|
||||||
|
I accidentally the link.
|
||||||
|
|
||||||
- make: include Shake.hs in tags
|
- make: include Shake.hs in tags
|
||||||
|
|
||||||
- shake: manuals: also depend on new command doc files
|
|
||||||
|
|
||||||
# 0a31ef84
|
|
||||||
|
|
||||||
# 9bc88727
|
|
||||||
|
|
||||||
- fixed pandoc typography conversion in web manuals (#954).
|
- fixed pandoc typography conversion in web manuals (#954).
|
||||||
Eg `--` was being rendered as en-dash.
|
Eg `--` was being rendered as en-dash.
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,7 @@
|
|||||||
User-visible changes in hledger-api.
|
User-visible changes in hledger-api.
|
||||||
See also the hledger changelog.
|
See also the hledger changelog.
|
||||||
|
|
||||||
# 17cd5b22
|
# 9fe32129
|
||||||
|
|
||||||
# 0a31ef84
|
|
||||||
|
|
||||||
# 1e5e30ae
|
|
||||||
|
|
||||||
- use hledger 1.12.99
|
- use hledger 1.12.99
|
||||||
|
|
||||||
|
|||||||
@ -1,19 +1,15 @@
|
|||||||
Internal/api/developer-ish changes in the hledger-lib package.
|
Internal/api/developer-ish changes in the hledger-lib package.
|
||||||
For user-visible changes, see the hledger package changelog.
|
For user-visible changes, see the hledger package changelog.
|
||||||
|
|
||||||
# 2df8a6c4
|
# 9fe32129
|
||||||
|
|
||||||
- lib: refactor, add embedFileRelative
|
|
||||||
|
|
||||||
# 0a31ef84
|
|
||||||
|
|
||||||
# 1e5e30ae
|
|
||||||
|
|
||||||
added:
|
added:
|
||||||
|
|
||||||
- setFullPrecision
|
- setFullPrecision
|
||||||
- setMinimalPrecision
|
- setMinimalPrecision
|
||||||
- expectParseStateOn
|
- expectParseStateOn
|
||||||
|
- embedFileRelative
|
||||||
|
- hereFileRelative
|
||||||
|
|
||||||
changed:
|
changed:
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,7 @@
|
|||||||
User-visible changes in hledger-ui.
|
User-visible changes in hledger-ui.
|
||||||
See also the hledger changelog.
|
See also the hledger changelog.
|
||||||
|
|
||||||
# 2df8a6c4
|
# 9fe32129
|
||||||
|
|
||||||
# 0a31ef84
|
|
||||||
|
|
||||||
# 1e5e30ae
|
|
||||||
|
|
||||||
- on posix systems, control-z suspends the program
|
- on posix systems, control-z suspends the program
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,7 @@
|
|||||||
User-visible changes in hledger-web.
|
User-visible changes in hledger-web.
|
||||||
See also the hledger changelog.
|
See also the hledger changelog.
|
||||||
|
|
||||||
# 17cd5b22
|
# 9fe32129
|
||||||
|
|
||||||
# 0a31ef84
|
|
||||||
|
|
||||||
# 1e5e30ae
|
|
||||||
|
|
||||||
- use hledger 1.12.99
|
- use hledger 1.12.99
|
||||||
|
|
||||||
|
|||||||
@ -1,22 +1,23 @@
|
|||||||
User-visible changes in the hledger command line tool and library.
|
User-visible changes in the hledger command line tool and library.
|
||||||
|
|
||||||
|
|
||||||
# 469b7153
|
# 5435150d
|
||||||
|
|
||||||
- cli: commands list: update command descriptions
|
- cli: command help: reduce width, line wrapping
|
||||||
|
cmdargs wraps any lines longer than 78 characters. To (mostly) avoid
|
||||||
|
this, we now display verbatim blocks unindented, and some of
|
||||||
|
register's examples have been altered to make them fit.
|
||||||
|
|
||||||
- cli: commands list: show addons prefixed with +
|
- cli: render command help as plain text, hiding markup
|
||||||
|
This means committing a bunch more generated files, but it's probably
|
||||||
|
worthwhile, so we can have both rich hyperlinked/styled command docs
|
||||||
|
and clean readable command help.
|
||||||
|
|
||||||
|
- cli: commands list: update, reorganise, show addons prefixed with +
|
||||||
|
|
||||||
- doc: integrate CLI help & manual for remaining commands
|
- doc: integrate CLI help & manual for remaining commands
|
||||||
& rename HelpTemplate -> CommandDoc
|
|
||||||
|
|
||||||
- lib: refactor, add embedFileRelative
|
- renamed HelpTemplate -> CommandDoc
|
||||||
|
|
||||||
- hereFileRelativeToPackage -> hereFileRelative
|
|
||||||
|
|
||||||
# 0a31ef84
|
|
||||||
|
|
||||||
# 1e5e30ae
|
|
||||||
|
|
||||||
- journal: account directive: account sort codes like `account 1000`
|
- journal: account directive: account sort codes like `account 1000`
|
||||||
are no longer supported. (introduced in 1.9, deprecated in 1.11)
|
are no longer supported. (introduced in 1.9, deprecated in 1.11)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user