Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // NOTE: need to be careful about adding release notes early otherwise it'll | 5 // NOTE: need to be careful about adding release notes early otherwise it'll |
| 6 // be shown in Canary (e.g. make sure the release notes are accurate). | 6 // be shown in Canary (e.g. make sure the release notes are accurate). |
| 7 // https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes | 7 // https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes |
| 8 | 8 |
| 9 /** @type {!Array<!Help.ReleaseNote>} */ | 9 /** @type {!Array<!Help.ReleaseNote>} */ |
| 10 Help.releaseNoteText = [{ | 10 Help.releaseNoteText = [{ |
| 11 version: 1, | 11 version: 2, |
|
chenwilliam
2017/04/10 23:35:51
Let's append, not replace - (e.g. create a new obj
| |
| 12 date: 'March 2017', | 12 date: 'April 2017', |
| 13 highlights: [ | 13 highlights: [ |
| 14 { | 14 { |
|
chenwilliam
2017/04/10 23:35:51
Let's do sentence capitalization for the title (e.
kayce (google)
2017/04/11 17:36:18
OK, but Command Menu is a DevTools feature / UI, s
| |
| 15 title: 'New Performance and Memory panels', | 15 title: 'CSS and JS Coverage', |
|
chenwilliam
2017/04/10 23:35:51
Rename -> CSS and JS code coverage
kayce (google)
2017/04/11 17:36:18
Done.
| |
| 16 subtitle: 'Head to Performance for JavaScript profiling', | 16 subtitle: 'Find unused CSS and JS with the new Coverage drawer.', |
| 17 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#performance-panel', | 17 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#coverage', |
| 18 }, | 18 }, |
| 19 { | 19 { |
| 20 title: 'Editable cookies', | 20 title: 'Workspaces 2.0', |
|
chenwilliam
2017/04/10 23:35:51
Move workspace 2.0 to the bottom of the list
kayce (google)
2017/04/11 17:36:18
Done.
| |
| 21 subtitle: 'You can edit any existing cookies and create new ones in the Ap plication panel', | 21 subtitle: 'Check out the new UX for using DevTools as your code editor.', |
| 22 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#cookies', | 22 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#workspaces', |
| 23 }, | 23 }, |
| 24 { | 24 { |
| 25 title: 'Console filtering & settings', | 25 title: 'Full-Page Screenshots', |
| 26 subtitle: 'Use the text filter or click the Console settings icon to touch up your preferences', | 26 subtitle: 'Take a screenshot of the entire page, from the top of the viewp ort to the bottom.', |
| 27 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#console', | 27 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#screenshots', |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 title: 'Debugger catches out-of-memory errors', | 30 title: 'Block Requests', |
| 31 subtitle: 'See the stack or grab a heap snapshot to see why the app may cr ash', | 31 subtitle: 'Manually disable individual requests in the Network panel.', |
| 32 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#out-of-memory-breakpoints', | 32 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#block-requests', |
| 33 }, | |
| 34 { | |
| 35 title: 'Async Debugging', | |
|
chenwilliam
2017/04/10 23:35:51
Asked Kozy for a better title and he said "Step ov
kayce (google)
2017/04/11 17:36:18
Done.
| |
| 36 subtitle: 'Step through async functions predictably.', | |
| 37 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#async', | |
| 38 }, | |
| 39 { | |
| 40 title: 'Unified Command Menu', | |
|
chenwilliam
2017/04/10 23:35:51
Can you include keyboard shortcut for Unified Comm
kayce (google)
2017/04/11 17:36:18
Done.
| |
| 41 subtitle: 'Execute commands and open files from the newly-unified Command Menu.', | |
| 42 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#command-menu', | |
| 43 }, | |
| 44 { | |
| 45 title: 'Capture Settings', | |
|
chenwilliam
2017/04/10 23:35:51
Let's remove capture settings from the highlights
kayce (google)
2017/04/11 17:36:18
Done.
| |
| 46 subtitle: 'Change settings for performance recordings from the new Capture Settings menu.', | |
| 47 link: 'https://developers.google.com/web/updates/2017/04/devtools-release- notes#capture-settings', | |
| 33 }, | 48 }, |
| 34 ], | 49 ], |
| 35 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-note s', | 50 link: 'https://developers.google.com/web/updates/2017/04/devtools-release-note s', |
| 36 }]; | 51 }]; |
| OLD | NEW |