From 6da75689f23e6cbb38100c6de6d4379d07c6df42 Mon Sep 17 00:00:00 2001 From: william-vw Date: Thu, 27 Jul 2023 15:21:34 -0400 Subject: [PATCH] cmt before merge --- RELEASE.txt | 5 +++-- client/src/extension.ts | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/RELEASE.txt b/RELEASE.txt index 4c7fa68..a5b714d 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -1,6 +1,7 @@ -v1.4 +v1.4.0 fix issue with n3 grammar (re-introduced upon retaining comments) fix error with auto-insert of prefixes enable/disable auto-complete auto-complete with well-known vocabularies -unknown-namespace mode that works as you type \ No newline at end of file +unknown-namespace mode that works as you type +auto re-load server config when changed \ No newline at end of file diff --git a/client/src/extension.ts b/client/src/extension.ts index eefd3d8..37fae11 100644 --- a/client/src/extension.ts +++ b/client/src/extension.ts @@ -131,7 +131,7 @@ export function activate(context: ExtensionContext) { editor.edit((editBuilder) => { editBuilder.insert(txtEdit.range.start, txtEdit.newText); }); - window.showInformationMessage(`Inserted namespace: "${edit.ns.prefix}"`); + window.showInformationMessage(`Inserted namespace: "${edit.ns.prefix}" (you can turn this off under settings)`); }); }); }); diff --git a/package.json b/package.json index 691e06b..b8077a6 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Language and in-editor reasoning features for N3 code.", "author": "w3c.n3", "license": "Apache 2.0", - "version": "1.3.0", + "version": "1.4.0", "icon": "logo.png", "repository": { "type": "git",