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

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

Issue 2766903002: DevTools: make what's new look nice. (Closed)
Patch Set: image added Created 3 years, 9 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
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 547fd82f182532d1fe5733830cef5a646d2d28fd..6d280779d9dd3895a2e15d00484ce62f04c2cce8 100644
--- a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
+++ b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
@@ -7,62 +7,29 @@
// https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes
/** @type {!Array<!Help.ReleaseNote>} */
-Help.releaseNoteText = [
- {
- version: 1,
- highlights: [
- {
- contents: [
- {
- text: 'Debugger',
- },
- {
- text: 'catches out-of-memory',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#out-of-memory-breakpoints',
- },
- {
- text: 'errors',
- },
- ],
- featured: true,
- },
- {
- contents: [
- {
- text: 'Edit cookies directly',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#cookies',
- },
- {
- text: 'from the Application panel',
- },
- ],
- },
- {
- contents: [
- {
- text: 'Better',
- },
- {
- text: 'filtering & settings for Console',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#console',
- },
- ],
- },
- {
- contents: [
- {
- text: 'Improved',
- },
- {
- text: 'Performance and Memory panels',
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#performance-panel',
- }
- ],
- },
- ],
- link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes',
- image: {
- src: 'https://developers.google.com/web/updates/images/2017/03/release-notes-preview.png',
+Help.releaseNoteText = [{
+ version: 1,
+ 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',
alph 2017/03/23 16:14:25 s/may/is about to/
+ 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',
+}];

Powered by Google App Engine
This is Rietveld 408576698