mirror of
https://github.com/mirror/wget.git
synced 2024-12-28 05:40:08 +08:00
* NEWS: Update NEWS items for release
This commit is contained in:
parent
204a4bccf4
commit
d5588ac221
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
/ABOUT-NLS~
|
||||||
# Project Root
|
# Project Root
|
||||||
/.sc-start-sc_bindtextdomain
|
/.sc-start-sc_bindtextdomain
|
||||||
/.sc-start-sc_prohibit_HAVE_MBRTOWC
|
/.sc-start-sc_prohibit_HAVE_MBRTOWC
|
||||||
|
11
NEWS
11
NEWS
@ -1,6 +1,15 @@
|
|||||||
GNU Wget NEWS -- history of user-visible changes.
|
GNU Wget NEWS -- history of user-visible changes.
|
||||||
|
|
||||||
* Noteworthy changes in release ?.? (????-??-??) [?]
|
* Noteworthy changes in release 1.21.2 (2021-09-07)
|
||||||
|
|
||||||
|
** Support for autoconf 2.71
|
||||||
|
|
||||||
|
** Fix a double free in FTP when using an absolute path
|
||||||
|
|
||||||
|
** Release tarballs no longer have a dependency on Python.
|
||||||
|
|
||||||
|
** --page-requisites will now also download links marked as "alternate
|
||||||
|
stylesheet" or "icon"
|
||||||
|
|
||||||
|
|
||||||
* Noteworthy changes in release 1.21.1 (2021-01-09)
|
* Noteworthy changes in release 1.21.1 (2021-01-09)
|
||||||
|
14
bootstrap
14
bootstrap
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Print a version string.
|
# Print a version string.
|
||||||
scriptversion=2021-01-10.00; # UTC
|
scriptversion=2021-04-11.09; # UTC
|
||||||
|
|
||||||
# Bootstrap this package from checked-out sources.
|
# Bootstrap this package from checked-out sources.
|
||||||
|
|
||||||
@ -115,6 +115,12 @@ Running without arguments will suffice in most cases.
|
|||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
copyright_year=`echo "$scriptversion" | sed -e 's/[^0-9].*//'`
|
||||||
|
copyright="Copyright (C) ${copyright_year} Free Software Foundation, Inc.
|
||||||
|
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
|
||||||
|
This is free software: you are free to change and redistribute it.
|
||||||
|
There is NO WARRANTY, to the extent permitted by law."
|
||||||
|
|
||||||
# warnf_ FORMAT-STRING ARG1...
|
# warnf_ FORMAT-STRING ARG1...
|
||||||
warnf_ ()
|
warnf_ ()
|
||||||
{
|
{
|
||||||
@ -337,6 +343,12 @@ do
|
|||||||
--help)
|
--help)
|
||||||
usage
|
usage
|
||||||
exit;;
|
exit;;
|
||||||
|
--version)
|
||||||
|
set -e
|
||||||
|
echo "bootstrap $scriptversion"
|
||||||
|
echo "$copyright"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
--gnulib-srcdir=*)
|
--gnulib-srcdir=*)
|
||||||
GNULIB_SRCDIR=${option#--gnulib-srcdir=};;
|
GNULIB_SRCDIR=${option#--gnulib-srcdir=};;
|
||||||
--skip-po)
|
--skip-po)
|
||||||
|
Loading…
Reference in New Issue
Block a user