Skip to content

Commit

Permalink
chore: prep for 1.70 (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 authored Dec 11, 2024
1 parent b15b1cc commit 62e4f56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h1 class="text-center"><i class="fa fa-cogs" aria-hidden="true"></i></h1>
<h1 class="text-center"><i class="fas fa-book" aria-hidden="true"></i></h1>
<a href='{{ "/specification" | prepend: site.baseurl }}'><h3 class="text-center">Specification</h3></a>
<p>
The latest version of the protocol specification is version 1.64.0.
The latest version of the protocol specification is version 1.70.0.
</p>
<p>
<a href='{{ "/changelog" | prepend: site.baseurl }}'>Change History</a>
Expand Down
13 changes: 7 additions & 6 deletions specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,9 @@ interface ContinuedEvent extends Event {
threadId: number;

/**
* If `allThreadsContinued` is true, a debug adapter can announce that all
* threads have continued.
* If omitted or set to `true`, this event signals to the client that all
* threads have been resumed. The value `false` indicates that not all
* threads were resumed.
*/
allThreadsContinued?: boolean;
};
Expand Down Expand Up @@ -1811,9 +1812,9 @@ Response to `continue` request.
interface ContinueResponse extends Response {
body: {
/**
* The value true (or a missing property) signals to the client that all
* threads have been resumed. The value false indicates that not all threads
* were resumed.
* If omitted or set to `true`, this response signals to the client that all
* threads have been resumed. The value `false` indicates that not all
* threads were resumed.
*/
allThreadsContinued?: boolean;
};
Expand Down Expand Up @@ -2224,7 +2225,7 @@ interface StackTraceArguments {
/**
* Specifies details on how to format the returned `StackFrame.name`. The
* debug adapter may format requested details in any way that would make sense
* to the developer.
* to a developer.
* The attribute is only honored by a debug adapter if the corresponding
* capability `supportsValueFormattingOptions` is true.
*/
Expand Down

0 comments on commit 62e4f56

Please sign in to comment.