Skip to content

Embed Dart DevTools in Chrome DevTools #1502

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dwds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 12.1.1-dev
- Change wording of paused overlay from "Paused in Dart DevTools" to "Paused"
- Allow sending back the Dart DevTools URL from DWDS instead of launching
Dart DevTools, to support embedding Dart DevTools in Chrome DevTools.

## 12.1.0
- Update _fe_analyzer_shared to version ^34.0.0.

Expand Down
4 changes: 4 additions & 0 deletions dwds/debug_extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.25

- Embed Dart DevTools in Chrome DevTools.

## 1.24

- Detect Dart applications in multi-app environments and show an alert.
Expand Down
4 changes: 3 additions & 1 deletion dwds/debug_extension/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
pub run build_runner build web -o build -r
```

TODO(elliette): Building with DDC no longer works, figure out why.
See https://github.com/dart-lang/webdev/issues/1506
- With DDC:

```
Expand All @@ -32,7 +34,7 @@ pub run build_runner build web -o build
* Visit chrome://extensions
* Toggle "Developer mode" on
* Click the "Load unpacked" button
* Select the extension directory: `/dwds/debug_extension/build/web`
* Select the extension directory: `/dwds/debug_extension/web`

### Debug your local extension
* Click the Extensions puzzle piece, and pin the Dart Debug Extension with the dev icon (unpin the published version so you don't confuse them)
Expand Down
2 changes: 1 addition & 1 deletion dwds/debug_extension/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: extension
publish_to: none
version: 1.24.0
version: 1.25.0
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/webdev
description: >-
Expand Down
Loading