docs: call the CHANGELOG "release notes"

This commit is contained in:
David Adam 2021-02-25 22:46:24 +08:00
parent 42d9f33e16
commit 39230978b3
5 changed files with 7 additions and 7 deletions

View File

@ -222,7 +222,7 @@ def get_command_description(path, name):
man_pages = [ man_pages = [
(master_doc, "fish-doc", "fish-shell Documentation", [author], 1), (master_doc, "fish-doc", "fish-shell Documentation", [author], 1),
("tutorial", "fish-tutorial", "fish-shell tutorial", [author], 1), ("tutorial", "fish-tutorial", "fish-shell tutorial", [author], 1),
("CHANGELOG", "fish-changelog", "fish-shell changelog", [author], 1), ("relnotes", "fish-releasenotes", "fish-shell release notes", [author], 1),
("completions", "fish-completions", "Writing fish completions", [author], 1), ("completions", "fish-completions", "Writing fish completions", [author], 1),
( (
"fish_for_bash_users", "fish_for_bash_users",

View File

@ -2118,5 +2118,5 @@ Other help pages
completions completions
faq faq
license license
CHANGELOG relnotes
fish_for_bash_users fish_for_bash_users

View File

@ -1,4 +1,4 @@
CHANGELOG Release notes
######### #############
.. include:: ../CHANGELOG.rst .. include:: ../CHANGELOG.rst

View File

@ -101,7 +101,7 @@ complete -c help -x -a tut-why_fish -d 'Why fish?'
complete -c help -x -a tut-wildcards -d Wildcards complete -c help -x -a tut-wildcards -d Wildcards
# Other pages # Other pages
complete -c help -x -a changelog -d "Fish's CHANGELOG" complete -c help -x -a releasenotes -d "Fish's release notes"
complete -c help -x -a completions -d "How to write completions" complete -c help -x -a completions -d "How to write completions"
complete -c help -x -a faq -d "Frequently Asked Questions" complete -c help -x -a faq -d "Frequently Asked Questions"
complete -c help -x -a fish-for-bash-users -d "Differences from bash" complete -c help -x -a fish-for-bash-users -d "Differences from bash"

View File

@ -128,8 +128,8 @@ function help --description 'Show help for the fish shell'
set fish_help_page "tutorial.html#"(string sub -s 5 -- $fish_help_item | string replace -a -- _ -) set fish_help_page "tutorial.html#"(string sub -s 5 -- $fish_help_item | string replace -a -- _ -)
case tutorial case tutorial
set fish_help_page "tutorial.html" set fish_help_page "tutorial.html"
case changelog case releasenotes
set fish_help_page changelog.html set fish_help_page relnotes.html
case completions case completions
set fish_help_page completions.html set fish_help_page completions.html
case faq case faq