Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js

Issue 2899203002: [DevTools] Update whats new for m60 (Closed)
Patch Set: updates Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/Images/whatsnew.png ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..2cb717fed629f02a02fe66700ec47dc9a6a14d22 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 qualifies as 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: 'New "Continue to Here" gesture',
+ 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: 'Step into async',
+ subtitle: 'Predictably step into a promise resolution or other asynchronous code with a single gesture.',
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#step-into-async',
+ },
kayce (google) 2017/05/25 01:17:08 Removed the "context selection menu" item and adde
+ {
+ 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: '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',
kayce (google) 2017/05/25 01:17:08 I fixed the section anchor in my latest doc change
+ }
+ ],
+ link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes',
+ },
+ {
version: 2,
header: 'Highlights from Chrome 59 update',
highlights: [
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/Images/whatsnew.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698