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

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

Issue 2719013005: DevTools: improve design of What's New (Closed)
Patch Set: Created 3 years, 9 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
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 /** @type {!Array<!Help.ReleaseNote>} */ 9 /** @type {!Array<!Help.ReleaseNote>} */
10 Help.releaseNoteText = [ 10 Help.releaseNoteText = [
11 { 11 {
12 version: 58, 12 version: 58,
13 highlights: [ 13 highlights: [
14 { 14 {
15 text: 'Review CSS changes in the new Changes drawer', 15 contents: [
16 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest ', 16 {
17 text: 'Improved',
18 },
19 {
20 text: 'Performance and Memory panels',
21 link: 'https://developers.google.com/web/tools/chrome-devtools/',
22 }
23 ],
17 featured: true, 24 featured: true,
18 }, 25 },
19 { 26 {
20 text: 'Contextual icons in Console', 27 contents: [
21 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest ', 28 {
29 text: 'Edit cookies directly',
30 link: 'https://developers.google.com/web/tools/chrome-devtools/',
31 },
32 {
33 text: 'from the Application panel',
34 },
35 ],
22 }, 36 },
23 { 37 {
24 text: 'Release notes for DevTools', 38 contents: [
25 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest ', 39 {
40 text: 'Better',
41 },
42 {
43 text: 'filtering & settings for Console',
44 link: 'https://developers.google.com/web/tools/chrome-devtools/',
45 },
46 ],
47 },
48 {
49 contents: [
50 {
51 text: 'Debugger',
52 },
53 {
54 text: 'catches out-of-memory',
55 link: 'https://developers.google.com/web/tools/chrome-devtools/',
56 },
57 {
58 text: 'errors',
59 },
60 ],
26 }, 61 },
27 ], 62 ],
28 link: 'https://developers.google.com/web/updates/2016/06/devtools-digest', 63 link: 'https://developers.google.com/web/tools/chrome-devtools/',
alph 2017/03/01 00:53:46 This is supposed to be the same link as one in fea
chenwilliam 2017/03/01 02:21:10 Sorry it's not clear, the highlight links will be
alph 2017/03/01 17:16:18 Ack for the url. But wouldn't it be more straightf
chenwilliam 2017/03/01 19:36:12 I think this makes it more explicit that the relea
29 image: { 64 image: {
30 src: 'https://developers.google.com/web/updates/images/2016/08/colorpicker .jpg', 65 src: 'https://developers.google.com/web/tools/chrome-devtools/images/panel s/performance.png',
31 }, 66 },
32 }, 67 },
33 ]; 68 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698