Skip to content

Commit 2a2c3a9

Browse files
committed
version
1 parent 868e766 commit 2a2c3a9

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

.vscodeignore

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
.vscode/**/*
22
**/*.ts
33
**/*.map
4-
.gitignore
54
**/tsconfig.json
65
**/tsconfig.base.json
7-
contributing.md
6+
**/*.code-workspace
7+
**/package-lock.json
8+
.gitignore
9+
.eslintignore
10+
.eslintrc.json
11+
.mocharc.json
812
.travis.yml
913

14+
gulpfile.js
15+
contributing.md
16+
azure-pipelines.yml
17+
TODO
18+
19+
scripts/
20+
**/testFixture/
21+
doc/

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.1.17 (, 2020)
2+
- Language service tests
3+
- Sequence number refactoring skip on G10/G11
4+
- Sequence number reference search
5+
- GOTO Label/Sequence number implementation search
6+
- GOTO Label / seq check
7+
- Bug fixes Parser
8+
- Error matches while statement
9+
110
## 0.1.16 (June 18, 2020)
211
- Bugfix -Fl export path
312
- Bugfix compiler problem matcher

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ Fanuc Macro Executor syntax highlighting, validating and project building
4141
![References](./resources/references.gif)
4242

4343
### Implementations
44+
* Sub-Programs
45+
* Sequence numbers and labels
46+
4447
![Implementations](./resources/implementations.gif)
4548

4649
## Supported display languages
@@ -112,6 +115,7 @@ Three levels are supported: `error`, `warning` and `ignore`.
112115
"duplicateDoEndNumber": "warning",
113116
"mixedConditionals": "error",
114117
"tooManyConditionals": "error",
118+
"seqNotFound": "error",
115119
"incompleteParameter": "error",
116120
"includeNotFound": "error",
117121
"assignmentConstant": "warning"
@@ -136,7 +140,7 @@ This extension contributes the following settings:
136140
* `macro.lint`: Lint settings and rule configuration
137141
* `macro.sequence.base`: Sequences start number for refactoring
138142
* `macro.sequence.increment`: Sequences increment for refactoring
139-
* `macro.codelens.enable`: Enables or disables the CodeLens function
143+
* `macro.codelens.enable`: Enables or disables the CodeLens function. **Deprecated**: Please use `editor.codeLens` instead.
140144
* `macro.validate.enable`: Enables or disables the validation
141145
* `macro.validate.workspace`: Enables or disables the workspace validation
142146

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "macro-executor",
33
"displayName": "Macro Executor Language",
44
"description": "Fanuc Macro-Executor Programming Language",
5-
"version": "0.1.16",
5+
"version": "0.1.17",
66
"author": "iSorp",
77
"publisher": "iSorp",
88
"license": "MIT",
@@ -32,8 +32,8 @@
3232
"id": "macro",
3333
"aliases": [
3434
"Macro Executor",
35-
"Fanuc Macro Executor",
36-
"Fanuc CNC"
35+
"Fanuc",
36+
"CNC"
3737
],
3838
"extensions": [
3939
".src",

0 commit comments

Comments
 (0)