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

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

Issue 2899203002: [DevTools] Update whats new for m60 (Closed)
Patch Set: formatting 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..b3d3f0996ec01b9a16deda2f290212d98cedacb5 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,53 @@
// 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',
pfeldman 2017/05/24 18:53:48 Where there is a click involved, it is not technic
+ 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',
pfeldman 2017/05/24 18:53:48 That's not worth mentioning, Step int async is tho
+ 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#real-time_updates_in_the_coverage_tab',
+ }
+ ],
+ 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