Skip to content

Commit 7aa44d3

Browse files
committed
Merge branch 'dev'
2 parents aff5b0a + 17e641d commit 7aa44d3

File tree

7 files changed

+1046
-1114
lines changed

7 files changed

+1046
-1114
lines changed

.vscode/launch.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,51 @@
5858
"sourceMaps": true,
5959
"trace": true
6060
},
61+
{
62+
"name": "Run G-Code (Full)",
63+
"type": "pwa-extensionHost",
64+
"request": "launch",
65+
"runtimeExecutable": "${execPath}",
66+
"args": [
67+
"--trace-depreciation",
68+
"--extensionDevelopmentPath=${workspaceFolder}"
69+
],
70+
"outFiles": [
71+
"${workspaceFolder}/dist/**/*.js"
72+
],
73+
"presentation": {
74+
"hidden": false,
75+
"group": "Launch Extension",
76+
"order": 3
77+
},
78+
"preLaunchTask": "npm: webpack",
79+
"skipFiles": [
80+
"<node_internals>/**",
81+
"**/node_modules/**"
82+
],
83+
"smartStep": true,
84+
"sourceMaps": true,
85+
"trace": true
86+
},
87+
{
88+
"name": "Run G-Code As Web Extension",
89+
"type": "pwa-extensionHost",
90+
"debugWebWorkerHost": true,
91+
"request": "launch",
92+
"args": [
93+
"--extensionDevelopmentPath=${workspaceFolder}",
94+
"--extensionDevelopmentKind=web"
95+
],
96+
"outFiles": [
97+
"${workspaceFolder}/dist/**/*.js"
98+
],
99+
"preLaunchTask": "npm: webpack",
100+
"presentation": {
101+
"hidden": false,
102+
"group": "Web Extension",
103+
"order": 1
104+
}
105+
},
61106
{
62107
"name": "G-Code Mocha Unit Tests",
63108
"type": "pwa-node",

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
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)
5+
## v0.7.1 [#](https://github.com/appliedengdesign/vscode-gcode-syntax/releases/tag/v0.7.1)
6+
7+
### Other
8+
9+
- Updated dependencies
10+
- Updated copyright to 2022
11+
12+
## v0.7.0 [#](https://github.com/appliedengesign/vscode-gcode-syntax/releases/tag/v0.7.0)
613

714
### New Features
815

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Applied Engineering & Design
3+
Copyright (c) 2022 Applied Engineering & Design
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Visit our [projects page](https://github.com/appliedengdesign/vscode-gcode-synta
140140

141141
## Changelog
142142

143-
Latest Version: v0.7.0
143+
Latest Version: v0.7.1
144144

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

0 commit comments

Comments
 (0)