GNU Texinfo latest version: 6.7 -> 6.8

This commit is contained in:
CismonX 2021-10-02 23:15:57 +08:00
parent f5c8ae309c
commit 1707ece4bc
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
1 changed files with 2 additions and 2 deletions

View File

@ -88,10 +88,10 @@ export default class Indicator implements vscode.Disposable
let tooltip = '', icon: string, version = '';
if (result && result[1]) {
version = result[1];
if (!isNaN(+version) && +version < 6.7) {
if (!isNaN(+version) && +version < 6.8) {
icon = '$(warning)';
tooltip = `GNU Texinfo (${options.makeinfo}) ` +
`is outdated (${version} < 6.7).`;
`is outdated (${version} < 6.8).`;
} else {
// Unrecognizable version. Assume it is okay.
icon = '$(check)';