Skip to content

Commit

Permalink
turn off debug - release formal ordered theme files
Browse files Browse the repository at this point in the history
  • Loading branch information
ironsheep committed Aug 4, 2023
1 parent ebd6a20 commit d6080d4
Show file tree
Hide file tree
Showing 13 changed files with 3,532 additions and 3,269 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ ZIPs/
REF/
src/HOLD/
out/
runNew/
runOrig/
.history/

*.vsix
Expand Down
1 change: 0 additions & 1 deletion spin2/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ TEST/*
!themes/isp-spin-dark-bg-theme.json
!themes/isp-spin-light-bg-theme.json
!themes/isp-spin-syntax-theme.json
!themes/isp-spin-dark-theme-old.json
!package.json
!README.md
!CHANGELOG.md
Expand Down
5 changes: 0 additions & 5 deletions spin2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,6 @@
"uiTheme": "vs-dark",
"path": "./themes/isp-spin-dark-theme.json"
},
{
"label": "Spin2 Ironsheep Dark (orig)",
"uiTheme": "vs-dark",
"path": "./themes/isp-spin-dark-theme-old.json"
},
{
"label": "Spin2 Ironsheep Light",
"uiTheme": "vs",
Expand Down
2 changes: 1 addition & 1 deletion spin2/src/spin.object.dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class ObjectTreeProvider implements vscode.TreeDataProvider<Dependency> {
private topLevelFSpec: string = "";
private topLevelFName: string = "";

private objTreeDebugLogEnabled: boolean = true; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private objTreeDebugLogEnabled: boolean = false; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private objTreeOutputChannel: vscode.OutputChannel | undefined = undefined;

private isDocument: boolean = false;
Expand Down
2 changes: 1 addition & 1 deletion spin2/src/spin1.semantic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class Spin1DocumentSemanticTokensProvider implements vscode.DocumentSeman

private spin1log: any = undefined;
// adjust following true/false to show specific parsing debug
private spin1DebugLogEnabled: boolean = true; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private spin1DebugLogEnabled: boolean = false; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private showSpinCode: boolean = true;
private showPreProc: boolean = true;
private showCON: boolean = true;
Expand Down
2 changes: 1 addition & 1 deletion spin2/src/spin2.semantic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class Spin2DocumentSemanticTokensProvider implements vscode.DocumentSeman

private spin2log: any = undefined;
// adjust following true/false to show specific parsing debug
private spin2DebugLogEnabled: boolean = true; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private spin2DebugLogEnabled: boolean = false; // WARNING (REMOVE BEFORE FLIGHT)- change to 'false' - disable before commit
private showSpinCode: boolean = true;
private showPreProc: boolean = true;
private showCON: boolean = true;
Expand Down
2 changes: 1 addition & 1 deletion spin2/themes/chkAll
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,5 @@ UTIL_THEME_CHECK="./thmChk.py"
for THEME in ${THEMES_LIST}; do
verboseMessage "* checking: ${THEME}"
THEME_BASENAME=${THEME%.json}
(set -x; ${UTIL_THEME_CHECK} -r -t ${THEME} 2>&1 >${THEME_BASENAME}.scope)
(set -x; ${UTIL_THEME_CHECK} -e -r -t ${THEME} 2>&1 >${THEME_BASENAME}.scope)
done
16 changes: 16 additions & 0 deletions spin2/themes/chkDiffs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

(set -x; sdiff -s runNew/isp-spin-dark-bg-theme.scope runOrig/isp-spin-dark-bg-theme.scope)
echo ""

(set -x; sdiff -s runNew/isp-spin-dark-theme.scope runOrig/isp-spin-dark-theme.scope)
echo ""

(set -x; sdiff -s runNew/isp-spin-light-bg-theme.scope runOrig/isp-spin-light-bg-theme.scope)
echo ""

(set -x; sdiff -s runNew/isp-spin-light-theme.scope runOrig/isp-spin-light-theme.scope)
echo ""

(set -x; sdiff -s runNew/isp-spin-syntax-theme.scope runOrig/isp-spin-syntax-theme.scope)
echo ""
Loading

0 comments on commit d6080d4

Please sign in to comment.