OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // NOTE: need to be careful about adding release notes early otherwise it'll | 5 // NOTE: need to be careful about adding release notes early otherwise it'll |
6 // be shown in Canary (e.g. make sure the release notes are accurate). | 6 // be shown in Canary (e.g. make sure the release notes are accurate). |
7 // https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes | 7 // https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes |
8 | 8 |
9 var commandMenuShortcut = Host.isMac() ? 'Command + Shift + P' : 'Control + Shif
t + P'; | 9 var commandMenuShortcut = Host.isMac() ? 'Command + Shift + P' : 'Control + Shif
t + P'; |
10 | 10 |
11 /** @type {!Array<!Help.ReleaseNote>} */ | 11 /** @type {!Array<!Help.ReleaseNote>} */ |
12 Help.releaseNoteText = [ | 12 Help.releaseNoteText = [ |
13 { | 13 { |
14 version: 2, | 14 version: 2, |
15 date: 'April 2017', | 15 header: 'Highlights from Chrome 59 update', |
16 highlights: [ | 16 highlights: [ |
17 { | 17 { |
18 title: 'CSS and JS code coverage', | 18 title: 'CSS and JS code coverage', |
19 subtitle: 'Find unused CSS and JS with the new Coverage drawer.', | 19 subtitle: 'Find unused CSS and JS with the new Coverage drawer.', |
20 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#coverage', | 20 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#coverage', |
21 }, | 21 }, |
22 { | 22 { |
23 title: 'Full-page screenshots', | 23 title: 'Full-page screenshots', |
24 subtitle: 'Take a screenshot of the entire page, from the top of the vie
wport to the bottom.', | 24 subtitle: 'Take a screenshot of the entire page, from the top of the vie
wport to the bottom.', |
25 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#screenshots', | 25 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#screenshots', |
(...skipping 16 matching lines...) Expand all Loading... |
42 { | 42 { |
43 title: 'Workspaces 2.0', | 43 title: 'Workspaces 2.0', |
44 subtitle: 'Check out the new UX for using DevTools as your code editor.'
, | 44 subtitle: 'Check out the new UX for using DevTools as your code editor.'
, |
45 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#workspaces', | 45 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#workspaces', |
46 }, | 46 }, |
47 ], | 47 ], |
48 link: 'https://developers.google.com/web/updates/2017/04/devtools-release-no
tes', | 48 link: 'https://developers.google.com/web/updates/2017/04/devtools-release-no
tes', |
49 }, | 49 }, |
50 { | 50 { |
51 version: 1, | 51 version: 1, |
52 date: 'March 2017', | 52 header: 'Highlights from Chrome 58 update', |
53 highlights: [ | 53 highlights: [ |
54 { | 54 { |
55 title: 'New Performance and Memory panels', | 55 title: 'New Performance and Memory panels', |
56 subtitle: 'Head to Performance for JavaScript profiling', | 56 subtitle: 'Head to Performance for JavaScript profiling', |
57 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#performance-panel', | 57 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#performance-panel', |
58 }, | 58 }, |
59 { | 59 { |
60 title: 'Editable cookies', | 60 title: 'Editable cookies', |
61 subtitle: 'You can edit any existing cookies and create new ones in the
Application panel', | 61 subtitle: 'You can edit any existing cookies and create new ones in the
Application panel', |
62 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#cookies', | 62 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#cookies', |
63 }, | 63 }, |
64 { | 64 { |
65 title: 'Console filtering & settings', | 65 title: 'Console filtering & settings', |
66 subtitle: 'Use the text filter or click the Console settings icon to tou
ch up your preferences', | 66 subtitle: 'Use the text filter or click the Console settings icon to tou
ch up your preferences', |
67 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#console', | 67 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#console', |
68 }, | 68 }, |
69 { | 69 { |
70 title: 'Debugger catches out-of-memory errors', | 70 title: 'Debugger catches out-of-memory errors', |
71 subtitle: 'See the stack or grab a heap snapshot to see why the app may
crash', | 71 subtitle: 'See the stack or grab a heap snapshot to see why the app may
crash', |
72 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#out-of-memory-breakpoints', | 72 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#out-of-memory-breakpoints', |
73 }, | 73 }, |
74 ], | 74 ], |
75 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no
tes', | 75 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no
tes', |
76 } | 76 } |
77 ]; | 77 ]; |
OLD | NEW |