Index: third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js |
index cac4efb7b810564bc88ad857ef0b6cde950886d0..861578cdb0154fb5b3fe7f53cd9947c2a3848bfa 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js |
+++ b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js |
@@ -6,11 +6,52 @@ |
// be shown in Canary (e.g. make sure the release notes are accurate). |
// https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes |
+var continueToHereShortcut = Host.isMac() ? 'Command' : 'Control'; |
var commandMenuShortcut = Host.isMac() ? 'Command + Shift + P' : 'Control + Shift + P'; |
/** @type {!Array<!Help.ReleaseNote>} */ |
Help.releaseNoteText = [ |
{ |
+ version: 3, |
+ header: 'Highlights from the Chrome 60 update', |
+ highlights: [ |
+ { |
+ title: 'New Audits panel, powered by Lighthouse', |
+ subtitle: |
+ 'Find out whether your site is a Progressive Web App, measure the accessibility and performance of a page, and discover best practices.', |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#lighthouse', |
+ }, |
+ { |
+ title: 'Third-party badges', |
+ subtitle: |
+ 'See what third-party entities are logging to the Console, making network requests, and causing work during performance recordings.', |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#badges', |
+ }, |
+ { |
+ title: 'Continue to Here keyboard shortcut', |
+ subtitle: 'While paused on a line of code, hold ' + continueToHereShortcut + |
+ ' and then click to continue to another line of code.', |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#continue', |
+ }, |
+ { |
+ title: 'More informative object previews', |
+ subtitle: 'Get a better idea of the contents of objects when logging them to the Console.', |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#object-previews', |
+ }, |
+ { |
+ title: 'New Context Selection menu', |
+ subtitle: 'Hover over an iframe context to highlight it in the viewport.', |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#context', |
+ }, |
+ { |
+ title: 'Real-time Coverage tab updates', |
+ subtitle: 'See what code is being used in real-time.', |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#coverage', |
chenwilliam
2017/05/24 18:20:05
I think the anchor needs to be updated:
https://de
|
+ } |
+ ], |
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes', |
+ }, |
+ { |
version: 2, |
header: 'Highlights from Chrome 59 update', |
highlights: [ |