Skip to content

Commit

Permalink
button up for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ironsheep committed Nov 29, 2022
1 parent bba6469 commit 0754af1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions spin2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion spin2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion spin2/src/spin2.extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion spin2/src/spin2.tabFormatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class Formatter {
readonly orgIdentifierREgEx1 = /^(?<org>\s*(org|orgf))\s+/;
readonly orgIdentifierREgEx2 = /^(?<org>\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 {
Expand Down

0 comments on commit 0754af1

Please sign in to comment.