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 { | 11 version: 1, |
| 12 version: 1, | 12 highlights: [ |
| 13 highlights: [ | 13 { |
| 14 { | 14 title: 'New Performance and Memory panels', |
| 15 contents: [ | 15 subtitle: 'Head to Performance for JavaScript profiling', |
| 16 { | 16 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#performance-panel', |
| 17 text: 'Debugger', | |
| 18 }, | |
| 19 { | |
| 20 text: 'catches out-of-memory', | |
| 21 link: 'https://developers.google.com/web/updates/2017/03/devtools-re lease-notes#out-of-memory-breakpoints', | |
| 22 }, | |
| 23 { | |
| 24 text: 'errors', | |
| 25 }, | |
| 26 ], | |
| 27 featured: true, | |
| 28 }, | |
| 29 { | |
| 30 contents: [ | |
| 31 { | |
| 32 text: 'Edit cookies directly', | |
| 33 link: 'https://developers.google.com/web/updates/2017/03/devtools-re lease-notes#cookies', | |
| 34 }, | |
| 35 { | |
| 36 text: 'from the Application panel', | |
| 37 }, | |
| 38 ], | |
| 39 }, | |
| 40 { | |
| 41 contents: [ | |
| 42 { | |
| 43 text: 'Better', | |
| 44 }, | |
| 45 { | |
| 46 text: 'filtering & settings for Console', | |
| 47 link: 'https://developers.google.com/web/updates/2017/03/devtools-re lease-notes#console', | |
| 48 }, | |
| 49 ], | |
| 50 }, | |
| 51 { | |
| 52 contents: [ | |
| 53 { | |
| 54 text: 'Improved', | |
| 55 }, | |
| 56 { | |
| 57 text: 'Performance and Memory panels', | |
| 58 link: 'https://developers.google.com/web/updates/2017/03/devtools-re lease-notes#performance-panel', | |
| 59 } | |
| 60 ], | |
| 61 }, | |
| 62 ], | |
| 63 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no tes', | |
| 64 image: { | |
| 65 src: 'https://developers.google.com/web/updates/images/2017/03/release-not es-preview.png', | |
| 66 }, | 17 }, |
| 67 }, | 18 { |
| 68 ]; | 19 title: 'Editable cookies', |
| 20 subtitle: 'You can edit any existing cookies and create new ones in the Ap plication panel', | |
| 21 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#cookies', | |
| 22 }, | |
| 23 { | |
| 24 title: 'Console filtering & settings', | |
| 25 subtitle: 'Use the text filter or click the Console settings icon to touch up your preferences', | |
| 26 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#console', | |
| 27 }, | |
| 28 { | |
| 29 title: 'Debugger catches out-of-memory errors', | |
| 30 subtitle: 'See the stack or grab a heap snapshot to see why the app may cr ash', | |
|
alph
2017/03/23 16:14:25
s/may/is about to/
| |
| 31 link: 'https://developers.google.com/web/updates/2017/03/devtools-release- notes#out-of-memory-breakpoints', | |
| 32 }, | |
| 33 ], | |
| 34 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-note s', | |
| 35 }]; | |
| OLD | NEW |