| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 }, | 31 }, |
| 32 { | 32 { |
| 33 title: 'Step over async await', | 33 title: 'Step over async await', |
| 34 subtitle: 'Step through async functions predictably.', | 34 subtitle: 'Step through async functions predictably.', |
| 35 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#async', | 35 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#async', |
| 36 }, | 36 }, |
| 37 { | 37 { |
| 38 title: 'Unified Command Menu', | 38 title: 'Unified Command Menu', |
| 39 subtitle: 'Execute commands and open files from the newly-unified Comman
d Menu (' + commandMenuShortcut + ').', | 39 subtitle: 'Execute commands and open files from the newly-unified Comman
d Menu (' + commandMenuShortcut + ').', |
| 40 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#command-menu', | 40 link: 'https://developers.google.com/web/updates/2017/04/devtools-releas
e-notes#command-menu', |
| 41 }, | 41 } |
| 42 { | |
| 43 title: 'Workspaces 2.0', | |
| 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', | |
| 46 }, | |
| 47 ], | 42 ], |
| 48 link: 'https://developers.google.com/web/updates/2017/04/devtools-release-no
tes', | 43 link: 'https://developers.google.com/web/updates/2017/04/devtools-release-no
tes', |
| 49 }, | 44 }, |
| 50 { | 45 { |
| 51 version: 1, | 46 version: 1, |
| 52 header: 'Highlights from Chrome 58 update', | 47 header: 'Highlights from Chrome 58 update', |
| 53 highlights: [ | 48 highlights: [ |
| 54 { | 49 { |
| 55 title: 'New Performance and Memory panels', | 50 title: 'New Performance and Memory panels', |
| 56 subtitle: 'Head to Performance for JavaScript profiling', | 51 subtitle: 'Head to Performance for JavaScript profiling', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 68 }, | 63 }, |
| 69 { | 64 { |
| 70 title: 'Debugger catches out-of-memory errors', | 65 title: 'Debugger catches out-of-memory errors', |
| 71 subtitle: 'See the stack or grab a heap snapshot to see why the app may
crash', | 66 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', | 67 link: 'https://developers.google.com/web/updates/2017/03/devtools-releas
e-notes#out-of-memory-breakpoints', |
| 73 }, | 68 }, |
| 74 ], | 69 ], |
| 75 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no
tes', | 70 link: 'https://developers.google.com/web/updates/2017/03/devtools-release-no
tes', |
| 76 } | 71 } |
| 77 ]; | 72 ]; |
| OLD | NEW |