Chromium Code Reviews| 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) | |
|
luoe
2017/02/15 22:32:29
nit: period at the end.
I think it would be nice
chenwilliam
2017/02/16 21:32:43
Done.
| |
| 7 | |
| 8 /** @type {!Array<!Help.ReleaseNote>} */ | |
| 9 Help.ReleaseNoteManager.releaseNotesByVersion = [ | |
| 10 { | |
| 11 version: 58, | |
| 12 highlights: [ | |
| 13 { | |
| 14 text: 'Review CSS changes in the new Changes drawer', | |
| 15 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest ', | |
| 16 featured: true, | |
| 17 }, | |
| 18 { | |
| 19 text: 'Contextual icons in Console', | |
| 20 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest ', | |
| 21 }, | |
| 22 { | |
| 23 text: 'Release notes for DevTools (e.g. this)!', | |
| 24 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest ', | |
| 25 }, | |
| 26 ], | |
| 27 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest', | |
| 28 image: { | |
| 29 src: 'https://developers.google.com/web/updates/images/2016/08/colorpicker .jpg', | |
| 30 }, | |
| 31 }, | |
| 32 ]; | |
| OLD | NEW |