Skip to content

Commit

Permalink
support attach launch configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
midouest committed Aug 7, 2023
1 parent 56488e3 commit ddc2420
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [UNRELEASED] - 2023-08-07

### Added

- Debugger can attach to running games instead of launching them

## [1.14.10] - 2023-08-06

### Fixed
Expand Down
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,30 @@
"default": 50
}
}
},
"attach": {
"properties": {
"logDebugAdapter": {
"type": "boolean",
"description": "True if the extension should log messages to and from the Playdate Simulator while debugging",
"default": false
},
"disableWorkarounds": {
"type": "boolean",
"description": "True if the extension should disable workarounds for issues communicating between VSCode and the Playdate Simulator",
"default": false
},
"retryTimeout": {
"type": "number",
"description": "Time in milliseconds to wait between attempts to connect to the Playdate Simulator",
"default": 200
},
"maxRetries": {
"type": "number",
"description": "Maximum number of times the extension will attempt to connect to the Playdate Simulator before aborting",
"default": 50
}
}
}
},
"initialConfigurations": [
Expand Down

0 comments on commit ddc2420

Please sign in to comment.