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

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

Issue 2649023007: DevTools: implement release note behind an experiment (Closed)
Patch Set: make test platform independent 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..da5ce490df1deed9e6960a5098822e2f8520a21a
--- /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.releaseNoteText = [
+ {
+ 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