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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
// Set current working directory to devtools_app.
"terminal.integrated.cwd": "packages/devtools_app",
"dart.showTodos": false,
"dart.analysisExcludedFolders": [
"tool/flutter-sdk"
]
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"label": "Start DTD on Port 8500",
"detail": "Starts a DTD instance running on port 8500",
"type": "shell",
"command": "${workspaceFolder}/../tool/flutter-sdk/bin/cache/dart-sdk/bin/dart",
"command": "${workspaceFolder}/tool/flutter-sdk/bin/cache/dart-sdk/bin/dart",
"args": [
"tooling-daemon",
"--disable-service-auth-codes",
Expand Down
20 changes: 10 additions & 10 deletions packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To learn more about DevTools, check out the

## General updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Inspector updates

Expand All @@ -24,11 +24,11 @@ TODO: Remove this section if there are not any general updates.

## Performance updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## CPU profiler updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Memory updates

Expand All @@ -37,19 +37,19 @@ TODO: Remove this section if there are not any general updates.

## Debugger updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Network profiler updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Logging updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## App size tool updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Deep links tool updates

Expand All @@ -61,15 +61,15 @@ TODO: Remove this section if there are not any general updates.

## VS Code Sidebar updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## DevTools Extension updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Advanced developer mode updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Full commit history

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,55 +15,55 @@ To learn more about DevTools, check out the

## General updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Inspector updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Performance updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## CPU profiler updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Memory updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Debugger updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Network profiler updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Logging updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## App size tool updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Deep links tool updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## VS Code Sidebar updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## DevTools Extension updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Advanced developer mode updates

TODO: Remove this section if there are not any general updates.
TODO: Remove this section if there are not any updates.

## Full commit history

Expand Down
2 changes: 1 addition & 1 deletion tool/lib/commands/release_notes_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class _DevToolsReleaseNotes {

// TODO(kenz): one nice polish task could be to remove sections that are
// empty (i.e. sections that have the line
// "TODO: Remove this section if there are not any general updates.").
// "TODO: Remove this section if there are not any updates.").
final srcLines = rawLines.sublist(titleLineIndex);
final imageLineIndices = <int>{};
for (int i = 0; i < srcLines.length; i++) {
Expand Down