Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
renamed all instances of mock to daffodil - keeping case (#4)
Co-authored-by: Shane Dell <dells@ctc.com>
- Loading branch information
Showing
12 changed files
with
109 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -3,7 +3,7 @@ dist | ||
node_modules | ||
.vscode-test/ | ||
npm-debug.log | ||
mock-debug.txt | ||
daffodil-debug.txt | ||
*.vsix | ||
.DS_Store | ||
daffodil-debugger* | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,113 +1,2 @@ | ||
## 0.45.7 | ||
* Add support for data breakpoint access types (a big _Thank You_ to @yannickowow for the PR) | ||
|
||
## 0.45.6 | ||
* Add support for a custom inline value provider that matches variables in a case-insensitive way. | ||
* Group "run" and "debug" editor commands in the new "run" submenu | ||
|
||
## 0.45.5 | ||
* Provide help texts for exception filters via DAP's new `description` and `conditionDescription`properties. | ||
|
||
## 0.45.4 | ||
* Add support for the `exceptionInfo` request. | ||
|
||
## 0.45.3 | ||
* Add support for exception filters (and conditions). "Named Exception" will break on the `exception(xxx)` pattern if the exception condition is set to `xxx`. "Other Exceptions" will break on the word `exception` and the `exception(...)` patterns not matched by "Named Exception". | ||
|
||
## 0.44.0 | ||
* Emit "Invalidated" event if client supports it. | ||
* Changed context menu action "Show as Hex" to "Toggle between decimal and heximal formatting" | ||
|
||
## 0.43.0 | ||
* Add context menu action "Show as Hex" to integer variables in Variables view | ||
* Add new run option "namedPipeServer" for debug adapter in extension.ts | ||
* Use new extension API for passing the "noDebug" option to "vscode.debug.startDebugging" | ||
* Support to run Mock Debug in the browser/web worker | ||
|
||
## 0.42.2 | ||
* Project hygiene: get rid of all warnings | ||
* use eslint instead of tslint | ||
* align with latest yeoman generator for VS Code | ||
|
||
## 0.42.1 | ||
* Add "run" and "debug" actions to editor title | ||
* Implement "Run without debugging" | ||
|
||
## 0.41.0 | ||
* Add support for StepIn and StepOut: StepIn moves execution one character to the right, StepIn to the left | ||
* Add support for StepInTargets: every word in the stopped line is considered one stack frame; StepInTargets returns targets for every character of the stack frame with the given frameId. | ||
|
||
## 0.40.0 | ||
* Exercise new dynamic debug config API. | ||
|
||
## 0.39.0 | ||
* Exercise progress events: typing "progress" in the REPL starts a sequence of (cancellable) progress events if the clients supports this via the `supportsProgressReporting` client capability. | ||
* Exersise new completion item attributes `selectionStart` and `selectionLength`: "array[]" moves cursor between the brackets and "func(arg)" selects "arg". | ||
|
||
## 0.38.0 | ||
* Exercise the new group feature of output events: 'log(start)' or 'log(startCollapsed)' starts a group, 'log(end)' ends a group. | ||
|
||
## 0.37.0 | ||
* Add a simple vscode.EvaluatableExpressionProvider to show how to control what gets shown in a debug hover. | ||
|
||
## 0.36.0 | ||
* Extend the run mode by an 'inline' run mode (in addition to 'external' and 'server'). | ||
|
||
## 0.35.0 | ||
* Support the 'breakpointLocations' request. | ||
* Make 'variables' request cancelable. | ||
|
||
## 0.34.0 | ||
* Add support for persisted data breakpoints. | ||
|
||
## 0.33.0 | ||
* Add support for (sorted) REPL completions. | ||
|
||
## 0.32.0 | ||
* Add support for data breakpoints. | ||
|
||
## 0.31.0 | ||
* Added code to show how to control what debug executable is used. | ||
|
||
## 0.30.0 | ||
* Updated dependencies. | ||
|
||
## 0.29.0 | ||
* Move off proposed API for the EMBED_DEBUG_ADAPTER mode: embedded debug adapter now uses vscode.DebugAdapterDescriptorFactory. | ||
|
||
## 0.28.0 | ||
* Update dependencies. | ||
|
||
## 0.27.0 | ||
* Update dependencies. | ||
|
||
## 0.26.0 | ||
* Improved the launch configuration snippet and added a `"stopOnEntry": true`. | ||
|
||
## 0.25.0 | ||
* Added the `"multi-root ready"` keyword. | ||
|
||
## 0.24.0 | ||
* Add support for starting a debug session without a launch configuration. | ||
* Require 1.17 version of VS Code. | ||
|
||
## 0.23.0 | ||
* Added supported for creating and deleting breakpoints from the REPL. Use `new 123` to create a breakpoint in line 123, and `del 123` to delete it. | ||
* Use 1.24.0 version of Debug Adapter Protocol and libraries. | ||
|
||
## 0.22.0 | ||
* Refactored the 'Mock Debugger' functionality into a separate class. This makes it more obvious how a debug adapter 'adapts' to a debugger or runtime. | ||
|
||
## 0.21.0 | ||
* Shows the source location of log output. A `log(any text)` in the input sends the text in parenthesis to the debug console. | ||
|
||
## 0.20.0 | ||
* Use 1.23.0 version of Debug Adapter Protocol and libraries. | ||
|
||
## 0.19.0 | ||
* Add tslint | ||
* Use 1.19.0 version of Debug Adapter Protocol and libraries. | ||
|
||
## 0.18.2 | ||
* Added 'trace' attribute to launch configuration: set it to 'true' to enable logging of the Debug Adapter Protocol. | ||
|
||
## 0.0.1 | ||
* Create vscode extension for debugging daffodil schemas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.