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 var continueToHereShortcut = Host.isMac() ? 'Command' : 'Control'; | |
| 9 var commandMenuShortcut = Host.isMac() ? 'Command + Shift + P' : 'Control + Shif t + P'; | 10 var commandMenuShortcut = Host.isMac() ? 'Command + Shift + P' : 'Control + Shif t + P'; |
| 10 | 11 |
| 11 /** @type {!Array<!Help.ReleaseNote>} */ | 12 /** @type {!Array<!Help.ReleaseNote>} */ |
| 12 Help.releaseNoteText = [ | 13 Help.releaseNoteText = [ |
| 13 { | 14 { |
| 15 version: 3, | |
| 16 header: 'Highlights from the Chrome 60 update', | |
| 17 highlights: [ | |
| 18 { | |
| 19 title: 'New Audits panel, powered by Lighthouse', | |
| 20 subtitle: | |
| 21 'Find out whether your site is a Progressive Web App, measure the ac cessibility and performance of a page, and discover best practices.', | |
| 22 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#lighthouse', | |
| 23 }, | |
| 24 { | |
| 25 title: 'Third-party badges', | |
| 26 subtitle: | |
| 27 'See what third-party entities are logging to the Console, making ne twork requests, and causing work during performance recordings.', | |
| 28 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#badges', | |
| 29 }, | |
| 30 { | |
| 31 title: 'Continue to Here keyboard shortcut', | |
| 32 subtitle: 'While paused on a line of code, hold ' + continueToHereShortc ut + | |
| 33 ' and then click to continue to another line of code.', | |
| 34 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#continue', | |
| 35 }, | |
| 36 { | |
| 37 title: 'More informative object previews', | |
| 38 subtitle: 'Get a better idea of the contents of objects when logging the m to the Console.', | |
| 39 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#object-previews', | |
| 40 }, | |
| 41 { | |
| 42 title: 'New Context Selection menu', | |
| 43 subtitle: 'Hover over an iframe context to highlight it in the viewport. ', | |
| 44 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#context', | |
| 45 }, | |
| 46 { | |
| 47 title: 'Real-time Coverage tab updates', | |
| 48 subtitle: 'See what code is being used in real-time.', | |
| 49 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#coverage', | |
|
chenwilliam
2017/05/24 18:20:05
I think the anchor needs to be updated:
https://de
| |
| 50 } | |
| 51 ], | |
| 52 link: 'https://developers.google.com/web/updates/2017/05/devtools-release-no tes', | |
| 53 }, | |
| 54 { | |
| 14 version: 2, | 55 version: 2, |
| 15 header: 'Highlights from Chrome 59 update', | 56 header: 'Highlights from Chrome 59 update', |
| 16 highlights: [ | 57 highlights: [ |
| 17 { | 58 { |
| 18 title: 'CSS and JS code coverage', | 59 title: 'CSS and JS code coverage', |
| 19 subtitle: 'Find unused CSS and JS with the new Coverage drawer.', | 60 subtitle: 'Find unused CSS and JS with the new Coverage drawer.', |
| 20 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas e-notes#coverage', | 61 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas e-notes#coverage', |
| 21 }, | 62 }, |
| 22 { | 63 { |
| 23 title: 'Full-page screenshots', | 64 title: 'Full-page screenshots', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 63 }, | 104 }, |
| 64 { | 105 { |
| 65 title: 'Debugger catches out-of-memory errors', | 106 title: 'Debugger catches out-of-memory errors', |
| 66 subtitle: 'See the stack or grab a heap snapshot to see why the app may crash', | 107 subtitle: 'See the stack or grab a heap snapshot to see why the app may crash', |
| 67 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas e-notes#out-of-memory-breakpoints', | 108 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas e-notes#out-of-memory-breakpoints', |
| 68 }, | 109 }, |
| 69 ], | 110 ], |
| 70 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no tes', | 111 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no tes', |
| 71 } | 112 } |
| 72 ]; | 113 ]; |
| OLD | NEW |