Dates bumped for release of 1.6.20

This commit is contained in:
Andrew Wood
2021-09-12 17:13:24 +01:00
parent 386e3ac5fa
commit 0ca8ef5187
10 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
1.6.20 - NOT YET RELEASED
1.6.20 - 12 September 2021
- fix: add missing stddef.h include to number.c (Sam James)
1.6.19 - 5 September 2021
+1 -1
View File
@@ -1,7 +1,7 @@
Begin3
Title: @PACKAGE@
Version: @VERSION@
Entered-date: 08SEP21
Entered-date: 12SEP21
Description: A tool for monitoring the progress of data through a
pipeline. It can be inserted into any normal pipeline
between two processes to give a visual indication of how
+1 -1
View File
@@ -46,7 +46,7 @@ make test
%doc README doc/NEWS doc/TODO doc/COPYING
%changelog
* Wed Sep 8 2021 Andrew Wood <andrew.wood@ivarch.com> 1.6.20-1
* Sun Sep 12 2021 Andrew Wood <andrew.wood@ivarch.com> 1.6.20-1
- fix: add missing stddef.h include to number.c (Sam James)
* Sun Sep 5 2021 Andrew Wood <andrew.wood@ivarch.com> 1.6.19-1
+1 -1
View File
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Date: 1999-06-01 15:18:29+0100\n"
"From: Andrew Wood <ivarch@ubik>\n"
+1 -1
View File
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Date: 1999-06-01 15:18:29+0100\n"
"From: Andrew Wood <ivarch@ubik>\n"
+1 -1
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+1 -1
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+2 -2
View File
@@ -269,8 +269,8 @@ static void pv__format_init(pvstate_t state)
}
formatstr =
state->format_string ? state->format_string : state->
default_format;
state->format_string ? state->
format_string : state->default_format;
state->components_used = 0;
+2 -2
View File
@@ -533,8 +533,8 @@ int pv_watchpid_loop(pvstate_t state)
* it's not present.
*/
original_format_string =
state->format_string ? state->format_string : state->
default_format;
state->format_string ? state->
format_string : state->default_format;
if (NULL == strstr(original_format_string, "%N")) {
#ifdef HAVE_SNPRINTF
snprintf(new_format_string, sizeof(new_format_string) - 1,