From 0754af1ba0aed84113d75e09d2e29a185ffdd1c0 Mon Sep 17 00:00:00 2001 From: Stephen M Moraco Date: Mon, 28 Nov 2022 17:53:27 -0700 Subject: [PATCH] button up for release --- spin2/CHANGELOG.md | 4 ++-- spin2/package.json | 2 +- spin2/src/spin2.extension.ts | 2 +- spin2/src/spin2.tabFormatter.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/spin2/CHANGELOG.md b/spin2/CHANGELOG.md index f749e91..56683b9 100644 --- a/spin2/CHANGELOG.md +++ b/spin2/CHANGELOG.md @@ -21,7 +21,7 @@ Possible next additions: - Add new-file templates as Snippets - Add additional Snippets as the community identifies them -## [1.6.0] 2022-11-19 +## [1.6.0] 2022-11-28 First formal release - Update for tabbing. Now operates according to latest Spec. @@ -38,7 +38,7 @@ First formal release - Update for tabbing. Now operates according to latest Spec ### - Known Issues w/v1.6.0 -- We haven't yet learned how to control the ending postion of the edit cursor. So in many cases when using selection not single insert point the cusor may end up not being where you might expect it to be after pressing TAB or Shift+TAB. We are looking into how to solve this. Even tho' this problem exists the formatting ability this new service provides is well worth this minor headache. We will keep looking for a means to get this under control. +- We haven't yet learned how to control the ending postion of the edit cursor. So in many cases when using selection not single insert point the cusor may end up not being where you might expect it to be after pressing TAB or Shift+TAB. We are looking into how to solve this. Even tho' this problem exists the formatting ability this new service provides is well worth this minor headache. We will keep looking for a means to get this under control. ## [1.5.2] 2022-11-19 diff --git a/spin2/package.json b/spin2/package.json index e65148a..4792411 100644 --- a/spin2/package.json +++ b/spin2/package.json @@ -3,7 +3,7 @@ "displayName": "Spin2", "description": "Spin2/Pasm2 Syntax/Semantic Highlighting w/Code Outline support", "icon": "images/Propeller.ico", - "version": "1.5.9", + "version": "1.6.0", "publisher": "IronSheepProductionsLLC", "repository": { "type": "git", diff --git a/spin2/src/spin2.extension.ts b/spin2/src/spin2.extension.ts index 838c888..d4863f2 100644 --- a/spin2/src/spin2.extension.ts +++ b/spin2/src/spin2.extension.ts @@ -3334,7 +3334,7 @@ class Spin2DocumentSemanticTokensProvider implements vscode.DocumentSemanticToke private spin2log: any = undefined; // adjust following true/false to show specific parsing debug - private spinDebugLogEnabled: boolean = true; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit + private spinDebugLogEnabled: boolean = false; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit private showSpinCode: boolean = true; private showCON: boolean = true; private showOBJ: boolean = true; diff --git a/spin2/src/spin2.tabFormatter.ts b/spin2/src/spin2.tabFormatter.ts index 6111a28..0924e73 100644 --- a/spin2/src/spin2.tabFormatter.ts +++ b/spin2/src/spin2.tabFormatter.ts @@ -51,7 +51,7 @@ export class Formatter { readonly orgIdentifierREgEx1 = /^(?\s*(org|orgf))\s+/; readonly orgIdentifierREgEx2 = /^(?\s*(org|orgf))$/; - private tabbingDebugLogEnabled: boolean = true; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit + private tabbingDebugLogEnabled: boolean = false; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit private tabbinglog: any = undefined; private _logMessage(message: string): void {