Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ enum ScreenMetaData {
iconAsset: 'icons/app_bar/deep_links.png',
requiresConnection: false,
requiresDartVm: true,
requiresFlutter: true,
),
vmTools(
'vm-tools',
Expand Down
7 changes: 5 additions & 2 deletions packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ To learn more about DevTools, check out the

## Inspector updates

- Fixed an issue where the Inspector error badge count would improperly increase or disappear during navigation. [#9524](https://github.com/flutter/devtools/issues/9524)
- Fixed an issue where the Inspector error badge count would improperly
increase or disappear during navigation.
[#9524](https://github.com/flutter/devtools/issues/9524)

## Performance updates

Expand Down Expand Up @@ -53,7 +55,8 @@ TODO: Remove this section if there are not any updates.

## Deep links tool updates

TODO: Remove this section if there are not any updates.
- Only validate deep links when connected to a Flutter app.
[#8081](https://github.com/flutter/devtools/issues/8081)

## VS Code sidebar updates

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void main() {
NetworkScreen,
LoggingScreen,
AppSizeScreen,
DeepLinksScreen,
// DeepLinksScreen,
// VMDeveloperToolsScreen,
// DTDToolsScreen,
]),
Expand Down Expand Up @@ -369,7 +369,7 @@ void main() {
NetworkScreen,
LoggingScreen,
AppSizeScreen,
DeepLinksScreen,
// DeepLinksScreen,
VMDeveloperToolsScreen,
DTDToolsScreen,
]),
Expand Down
Loading