Skip to content

Commit 08008af

Browse files
committed
Update
1 parent 1580113 commit 08008af

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.5.13
4+
- Maintenance release.
5+
36
## 0.5.12
47
- **Run** and **Debug** buttons show for all `.macro.` files, or any file under a known source directory.
58
- File extensions not displayed in **Macros Explorer** view to simplify it.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,6 @@ For all other URLs, a standard HTTP GET request is sent to download the file.
280280
281281
### Debugging a Macro
282282
283-
Debugging a macro leverages VS Code's extension debugging [story](https://code.visualstudio.com/api/get-started/your-first-extension#debugging-the-extension) since the macros are run in the context of this extension. This makes the experience a bit awkward as a new VS Code instance is launched, and you need to open the right context (e.g. workspace) in that new instance to debug your macro (vs, for example, launching another VS Code instance and attaching to the current one).
283+
Debugging a macro leverages VS Code's extension debugging [story](https://code.visualstudio.com/api/get-started/your-first-extension#debugging-the-extension) since the macros are run in the context of this extension: it launches a new **Extension Host** instance on which the debugger has been attached fom the original instance. You manually execute the macro under the appropriate context on the new instance (e.g. this might require re-opening the workspace you started from) but set breakpoints and step through code from the original instance.
284284

285285
[↑ Back to top](#table-of-contents)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "damolinx-macros",
33
"displayName": "Macros for VS Code",
4-
"description": "Automate tasks, prototype features, and extend workspace tooling with reusable JS/TS macros and macro libraries.",
5-
"version": "0.5.12",
4+
"description": "Automate tasks, prototype extension features, and create custom tooling using JavaScript/TypeScript scripts.",
5+
"version": "0.5.13",
66
"publisher": "damolinx",
77
"icon": "resources/images/icon.png",
88
"repository": {

0 commit comments

Comments
 (0)