| 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: 1, |
| 12 date: 'March 2017', |
| 12 highlights: [ | 13 highlights: [ |
| 13 { | 14 { |
| 14 title: 'New Performance and Memory panels', | 15 title: 'New Performance and Memory panels', |
| 15 subtitle: 'Head to Performance for JavaScript profiling', | 16 subtitle: 'Head to Performance for JavaScript profiling', |
| 16 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-
notes#performance-panel', | 17 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-
notes#performance-panel', |
| 17 }, | 18 }, |
| 18 { | 19 { |
| 19 title: 'Editable cookies', | 20 title: 'Editable cookies', |
| 20 subtitle: 'You can edit any existing cookies and create new ones in the Ap
plication panel', | 21 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 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-
notes#cookies', |
| 22 }, | 23 }, |
| 23 { | 24 { |
| 24 title: 'Console filtering & settings', | 25 title: 'Console filtering & settings', |
| 25 subtitle: 'Use the text filter or click the Console settings icon to touch
up your preferences', | 26 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 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-
notes#console', |
| 27 }, | 28 }, |
| 28 { | 29 { |
| 29 title: 'Debugger catches out-of-memory errors', | 30 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', | 31 subtitle: 'See the stack or grab a heap snapshot to see why the app may cr
ash', |
| 31 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/03/devtools-release-
notes#out-of-memory-breakpoints', |
| 32 }, | 33 }, |
| 33 ], | 34 ], |
| 34 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-note
s', | 35 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-note
s', |
| 35 }]; | 36 }]; |
| OLD | NEW |