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

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

Issue 2649023007: DevTools: implement release note behind an experiment (Closed)
Patch Set: finalize Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(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 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698