Skip to content

Commit 2b58a2c

Browse files
committed
Merge branch 'release-0.7'
2 parents 454a917 + 28c8453 commit 2b58a2c

29 files changed

+3098
-2098
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
],
5151
"@typescript-eslint/no-namespace": "off",
5252
"@typescript-eslint/no-non-null-assertion": "off",
53+
"@typescript-eslint/no-unsafe-argument": "off",
5354
"@typescript-eslint/no-unused-vars": [
5455
"warn",
5556
{

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"runtimeExecutable": "${execPath}",
1010
"args": [
1111
"--disable-extensions",
12+
"--trace-depreciation",
1213
"--extensionDevelopmentPath=${workspaceFolder}",
1314
"${workspaceFolder}/samplenc/sample-colors.nc",
1415
"${workspaceFolder}/samplenc/sample-profile.nc"
@@ -37,9 +38,8 @@
3738
"runtimeExecutable": "${execPath}",
3839
"args": [
3940
"--disable-extensions",
40-
"--extensionDevelopmentPath=${workspaceFolder}",
41-
"${workspaceFolder}/samplenc/sample-colors.nc",
42-
"${workspaceFolder}/samplenc/sample-profile.nc"
41+
"--trace-depreciation",
42+
"--extensionDevelopmentPath=${workspaceFolder}"
4343
],
4444
"outFiles": [
4545
"${workspaceFolder}/dist/**/*.js"

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
All changes to G-Code Language Extension will be documented here.
44

5+
## v0.7.0 [#](https://github.com/appliedengesign/vscode-gcode-syntax/releases/tag/v0.6.2)
6+
7+
### New Features
8+
9+
- Added line numbering command with settings in configuration
10+
- Line numberer Quickpick options
11+
12+
### Fixes
13+
14+
- Configuration files moved
15+
- Added default configurations
16+
- Updated dependencies
17+
- Fixed link to issue queue [#30](https://github.com/appliedengdesign/vscode-gcode-syntax/pull/30)
18+
- Imporoved highlighting for keywords and macro syntax [#33](https://github.com/appliedengdesign/vscode-gcode-syntax/pull/33)
19+
- Fixed tool change to ignore comments [#31](https://github.com/appliedengdesign/vscode-gcode-syntax/issues/31)
20+
21+
### Other
22+
23+
- Added trace-depreciation to launch.json file
24+
- Updated README
25+
526
## v0.6.2 [#](https://github.com/appliedengesign/vscode-gcode-syntax/releases/tag/v0.6.2)
627

728
### Fixes

README.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,23 @@ Tree view is enabled by default and can be access from the G icon on the activit
102102

103103
G-Code Syntax is customizable and provides many configuration settings to allow the personalization of almost all features.
104104

105-
| Name | Description |
106-
| ------------------------------------ | -------------------------------------------------------------------------------------- |
107-
| `gcode.general.hovers.enabled` | Enable or Disable the hovers to show G-Code information |
108-
| `gcode.general.machineType` | Choose the machine type for extension (Mill is default) |
109-
| `gcode.general.statusBars.enabled` | Enable or Disable the G-Code status bars |
110-
| `gcode.general.statusbars.alignment` | Choose the alignment of the status bars (Left is default) |
111-
| `gcode.general.units` | Choose the units for the file. Options are Auto, Inch or Metric |
112-
| `gcode.views.maxAutoRefresh` | Value for limiting the autoRefresh maximum lines |
113-
| `gcode.views.navTree.autoRefresh` | Tree auto-refreshes as changes are made to the g-code. ( Disabled by default ) |
114-
| `gcode.views.stats.autoRefresh` | Auto-refresh the stats view when changes are made to the g-code. (Disabled by default) |
115-
| `gcode.views.webviews.enabled` | Enable or disable the webviews |
105+
| Name | Description |
106+
| ------------------------------------ | ------------------------------------------------------------------------------------------- |
107+
| `gcode.general.hovers.enabled` | Enable or Disable the hovers to show G-Code information |
108+
| `gcode.general.machineType` | Choose the machine type for extension (Mill is default) |
109+
| `gcode.general.statusBars.enabled` | Enable or Disable the G-Code status bars |
110+
| `gcode.general.statusbars.alignment` | Choose the alignment of the status bars (Left is default) |
111+
| `gcode.general.units` | Choose the units for the file. Options are Auto, Inch or Metric |
112+
| `gcode.general.outputLevel` | Configure Output level for debugging purposes |
113+
| `gcode.lineNumberer.addSpaceAfter` | Add space after line number |
114+
| `gcode.lineNumberer.frequency` | Frequency of line number additions (Every Line or at Tool Changes) |
115+
| `gcode.lineNumberer.ignoreBlank` | Ignore Blank lines when numbering |
116+
| `gcode.lineNumberer.ignoreComments` | Ignore Comments when numbering |
117+
| `gcode.lineNumberer.ignoreProgramNumbers` | Ignore Program numbers, e.g. `O12345` |
118+
| `gcode.views.maxAutoRefresh` | Value for limiting the autoRefresh maximum lines |
119+
| `gcode.views.navTree.autoRefresh` | Tree auto-refreshes as changes are made to the g-code. ( Disabled by default ) |
120+
| `gcode.views.stats.autoRefresh` | Auto-refresh the stats view when changes are made to the g-code. (Disabled by default) |
121+
| `gcode.views.webviews.enabled` | Enable or disable the webviews |
116122

117123
![Settings Screenshot](https://raw.githubusercontent.com/appliedengdesign/vscode-gcode-syntax/master/images/settings-screenshot.png)
118124

@@ -125,7 +131,6 @@ Please visit our [GitHub Issues](https://github.com/appliedengdesign/vscode-gcod
125131
- Add more snippets
126132
- Add additional tree items.
127133
- More Statistics
128-
- Line Numbering
129134
- G-Code Debugging
130135
- Backplotter
131136
- Semantic Highlighting
@@ -135,7 +140,7 @@ Visit our [projects page](https://github.com/appliedengdesign/vscode-gcode-synta
135140

136141
## Changelog
137142

138-
Latest Version: v0.6.2
143+
Latest Version: v0.7.0
139144

140145
Please refer to our [CHANGELOG](https://github.com/appliedengdesign/vscode-gcode-syntax/blob/master/CHANGELOG.md) doc.
141146

0 commit comments

Comments
 (0)