Title: [279000] trunk/Tools
Revision
279000
Author
commit-qu...@webkit.org
Date
2021-06-17 11:41:34 -0700 (Thu, 17 Jun 2021)

Log Message

[tvOS 15] Add tvOS 15 simulator/device to bot watchers' dashboard
https://bugs.webkit.org/show_bug.cgi?id=226782

Patch by W.D. Xiong <w_xi...@apple.com> on 2021-06-17
Reviewed by Jonathan Bedard.

* CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png: Added.
* CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png: Added.
* CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js: Added references to tvOS 15 device + simulator
* CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css: Added references to tvOS 15 device + simulator
(table.queue-grid tr.platform.tvos-simulator-15 img.logo):
(table.queue-grid tr.platform.tvos-15 img.logo):

Modified Paths

Added Paths

Diff

Added: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png


(Binary files differ)
Index: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png =================================================================== --- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png 2021-06-17 18:38:43 UTC (rev 278999) +++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png 2021-06-17 18:41:34 UTC (rev 279000) Property changes on: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png ___________________________________________________________________

Added: svn:mime-type

+image/png \ No newline at end of property

Added: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png


(Binary files differ)
Index: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png =================================================================== --- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png 2021-06-17 18:38:43 UTC (rev 278999) +++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png 2021-06-17 18:41:34 UTC (rev 279000) Property changes on: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png ___________________________________________________________________

Added: svn:mime-type

+image/png \ No newline at end of property

Modified: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js (278999 => 279000)


--- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js	2021-06-17 18:38:43 UTC (rev 278999)
+++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js	2021-06-17 18:41:34 UTC (rev 279000)
@@ -30,6 +30,8 @@
         macOSCatalina: { name: "macos-catalina", readableName: "macOS Catalina", order: 3 },
         iOS14Simulator: { name: "ios-simulator-14", readableName: "iOS 14 Simulator", order: 20 },
         iOS14Device: { name: "ios-14", readableName: "iOS 14", order: 25 },
+        tvOS15Simulator: { name: "tvos-simulator-15", readableName: "TvOS Simulator 15", order: 24 },
+        tvOS15Device: { name: "tvos-15", readableName: "TvOS 15", order: 25 },
         tvOS14Simulator: { name: "tvos-simulator-14", readableName: "TvOS Simulator 14", order: 26 },
         tvOS14Device: { name: "tvos-14", readableName: "TvOS 14", order: 27 },
         watchOS7Simulator: { name: "watchos-simulator-7", readableName: "WatchOS Simulator 7", order: 28 },

Modified: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css (278999 => 279000)


--- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css	2021-06-17 18:38:43 UTC (rev 278999)
+++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css	2021-06-17 18:41:34 UTC (rev 279000)
@@ -211,6 +211,16 @@
     content: url(../Images/TvOS14.png);
 }
 
+table.queue-grid tr.platform.tvos-simulator-15 img.logo {
+    background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
+    content: url(../Images/TvOS15Simulator.png);
+}
+
+table.queue-grid tr.platform.tvos-15 img.logo {
+    background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
+    content: url(../Images/TvOS15.png);
+}
+
 table.queue-grid tr.platform.watchos-simulator-7 img.logo {
     background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
     content: url(../Images/WatchOS7Simulator.png);

Modified: trunk/Tools/ChangeLog (278999 => 279000)


--- trunk/Tools/ChangeLog	2021-06-17 18:38:43 UTC (rev 278999)
+++ trunk/Tools/ChangeLog	2021-06-17 18:41:34 UTC (rev 279000)
@@ -1,5 +1,19 @@
 2021-06-17  W.D. Xiong  <w_xi...@apple.com>
 
+        [tvOS 15] Add tvOS 15 simulator/device to bot watchers' dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=226782
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15.png: Added.
+        * CISupport/build-webkit-org/public_html/dashboard/Images/TvOS15Simulator.png: Added.
+        * CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js: Added references to tvOS 15 device + simulator
+        * CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css: Added references to tvOS 15 device + simulator
+        (table.queue-grid tr.platform.tvos-simulator-15 img.logo):
+        (table.queue-grid tr.platform.tvos-15 img.logo):
+
+2021-06-17  W.D. Xiong  <w_xi...@apple.com>
+
         [Monterey] Add Seed 1 to bot watchers' dashboard
         https://bugs.webkit.org/show_bug.cgi?id=226747
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to