From 1707ece4bc7546e520d872977ed3a8fbe421429b Mon Sep 17 00:00:00 2001 From: CismonX Date: Sat, 2 Oct 2021 23:15:57 +0800 Subject: [PATCH] GNU Texinfo latest version: 6.7 -> 6.8 --- src/indicator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/indicator.ts b/src/indicator.ts index 35f0b28..98ce9ec 100644 --- a/src/indicator.ts +++ b/src/indicator.ts @@ -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)';