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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
diff --git a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
new file mode 100644
index 0000000000000000000000000000000000000000..f41d262567825d5c4e1b442040d6a99912467aaa
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js
@@ -0,0 +1,33 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// NOTE: need to be careful about adding release notes early otherwise it'll
+// be shown in Canary (e.g. make sure the release notes are accurate).
+// https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes
+
+/** @type {!Array<!Help.ReleaseNote>} */
+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.
+ {
+ version: 58,
+ highlights: [
+ {
+ text: 'Review CSS changes in the new Changes drawer',
+ link: 'https://developers.google.com/web/updates/2016/06/devtools-digest',
+ featured: true,
+ },
+ {
+ text: 'Contextual icons in Console',
+ link: 'https://developers.google.com/web/updates/2016/06/devtools-digest',
+ },
+ {
+ text: 'Release notes for DevTools',
+ link: 'https://developers.google.com/web/updates/2016/06/devtools-digest',
+ },
+ ],
+ link: 'https://developers.google.com/web/updates/2016/06/devtools-digest',
+ image: {
+ src: 'https://developers.google.com/web/updates/images/2016/08/colorpicker.jpg',
+ },
+ },
+];

Powered by Google App Engine
This is Rietveld 408576698