| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 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). |
| 7 // https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes |
| 8 |
| 9 /** @type {!Array<!Help.ReleaseNote>} */ |
| 10 Help.releaseNoteText = [ |
| 11 { |
| 12 version: 58, |
| 13 highlights: [ |
| 14 { |
| 15 text: 'Review CSS changes in the new Changes drawer', |
| 16 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest
', |
| 17 featured: true, |
| 18 }, |
| 19 { |
| 20 text: 'Contextual icons in Console', |
| 21 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest
', |
| 22 }, |
| 23 { |
| 24 text: 'Release notes for DevTools', |
| 25 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest
', |
| 26 }, |
| 27 ], |
| 28 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest', |
| 29 image: { |
| 30 src: 'https://developers.google.com/web/updates/images/2016/08/colorpicker
.jpg', |
| 31 }, |
| 32 }, |
| 33 ]; |
| OLD | NEW |