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

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

Issue 2807063004: [devtools] update what's new text for m59 (Closed)
Patch Set: update per feedback Created 3 years, 8 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 8c865d89b0ba1636b98ee2e947dac80117093d41..39a954bcb74a0c2ba9cfe9c1069ae1df0ade6d2f 100644
--- a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
+++ b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
@@ -6,31 +6,72 @@
// be shown in Canary (e.g. make sure the release notes are accurate).
// https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes
+var commandMenuShortcut = Host.isMac() ? 'Command + Shift + P' : 'Control + Shift + P';
+
/** @type {!Array<!Help.ReleaseNote>} */
-Help.releaseNoteText = [{
- version: 1,
- date: 'March 2017',
- highlights: [
- {
- title: 'New Performance and Memory panels',
- subtitle: 'Head to Performance for JavaScript profiling',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#performance-panel',
- },
- {
- title: 'Editable cookies',
- subtitle: 'You can edit any existing cookies and create new ones in the Application panel',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#cookies',
- },
- {
- title: 'Console filtering & settings',
- subtitle: 'Use the text filter or click the Console settings icon to touch up your preferences',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#console',
- },
- {
- title: 'Debugger catches out-of-memory errors',
- subtitle: 'See the stack or grab a heap snapshot to see why the app may crash',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#out-of-memory-breakpoints',
- },
- ],
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes',
-}];
+Help.releaseNoteText = [
+ {
+ version: 2,
chenwilliam 2017/04/11 19:20:49 Can you append instead of prepending it? It'll mak
+ date: 'April 2017',
+ highlights: [
+ {
+ title: 'CSS and JS code coverage',
+ subtitle: 'Find unused CSS and JS with the new Coverage drawer.',
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage',
+ },
+ {
+ title: 'Full-page screenshots',
+ subtitle: 'Take a screenshot of the entire page, from the top of the viewport to the bottom.',
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#screenshots',
+ },
+ {
+ title: 'Block requests',
+ subtitle: 'Manually disable individual requests in the Network panel.',
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#block-requests',
+ },
+ {
+ title: 'Step over async await',
+ subtitle: 'Step through async functions predictably.',
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#async',
+ },
+ {
+ title: 'Unified Command Menu',
+ subtitle: 'Execute commands and open files from the newly-unified Command Menu (' + commandMenuShortcut + ').',
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#command-menu',
+ },
+ {
+ title: 'Workspaces 2.0',
+ subtitle: 'Check out the new UX for using DevTools as your code editor.',
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#workspaces',
+ },
+ ],
+ link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes',
+ },
+ {
+ version: 1,
+ date: 'March 2017',
+ highlights: [
+ {
+ title: 'New Performance and Memory panels',
+ subtitle: 'Head to Performance for JavaScript profiling',
+ link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#performance-panel',
+ },
+ {
+ title: 'Editable cookies',
+ subtitle: 'You can edit any existing cookies and create new ones in the Application panel',
+ link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#cookies',
+ },
+ {
+ title: 'Console filtering & settings',
+ subtitle: 'Use the text filter or click the Console settings icon to touch up your preferences',
+ link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#console',
+ },
+ {
+ title: 'Debugger catches out-of-memory errors',
+ subtitle: 'See the stack or grab a heap snapshot to see why the app may crash',
+ link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#out-of-memory-breakpoints',
+ },
+ ],
+ link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes',
+ }
+];
« 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