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

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: address CL comments 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).
7 // https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes
8
9 /** @type {!Array<!Help.ReleaseNote>} */
10 Help.releaseNotesByVersion = [
alph 2017/02/21 23:19:43 The name is misleading. This is not a map by versi
chenwilliam 2017/02/22 02:36:39 Done.
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 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698