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 qualifies as a Progressive Web App, meas ure the accessibility 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: 'New "Continue to Here" gesture', | |
| 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: 'Step into async', | |
| 38 subtitle: 'Predictably step into a promise resolution or other asynchron ous code with a single gesture.', | |
| 39 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#step-into-async', | |
| 40 }, | |
|
kayce (google)
2017/05/25 01:17:08
Removed the "context selection menu" item and adde
| |
| 41 { | |
| 42 title: 'More informative object previews', | |
| 43 subtitle: 'Get a better idea of the contents of objects when logging the m to the Console.', | |
| 44 link: 'https://developers.google.com/web/updates/2017/05/devtools-releas e-notes#object-previews', | |
| 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', | |
|
kayce (google)
2017/05/25 01:17:08
I fixed the section anchor in my latest doc change
| |
| 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 |