Title: [279001] trunk/Tools
Revision
279001
Author
[email protected]
Date
2021-06-17 11:43:54 -0700 (Thu, 17 Jun 2021)

Log Message

[watchOS 8] Add watchOS 8 simulator/device to bot watchers' dashboard
https://bugs.webkit.org/show_bug.cgi?id=226781

Patch by W.D. Xiong <[email protected]> on 2021-06-17
Reviewed by Jonathan Bedard.

* CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS8.png: Added.
* CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator8.png: Added.
* CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js: Added references for watchOS 8 device + simulator; shifted order down for Windows platforms to make room
* CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css: Added references for watchOS 8 device + simulator
(table.queue-grid tr.platform.watchos-simulator-8 img.logo):
(table.queue-grid tr.platform.watchos-8 img.logo):

Modified Paths

Added Paths

Diff

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


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

Added: svn:mime-type

+image/png \ No newline at end of property

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


(Binary files differ)
Index: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator8.png =================================================================== --- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator8.png 2021-06-17 18:41:34 UTC (rev 279000) +++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator8.png 2021-06-17 18:43:54 UTC (rev 279001) Property changes on: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator8.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 (279000 => 279001)


--- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js	2021-06-17 18:41:34 UTC (rev 279000)
+++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js	2021-06-17 18:43:54 UTC (rev 279001)
@@ -34,10 +34,12 @@
         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 },
-        watchOS7Device: { name: "watchos-7", readableName: "WatchOS 7", order: 29 },
-        Windows10: { name: "windows-10", readableName: "Windows 10", order: 30 },
-        WinCairo: { name: "wincairo-windows-10", readableName: "WinCairo", order: 50 },
+        watchOS8Simulator: { name: "watchos-simulator-8", readableName: "WatchOS Simulator 8", order: 40 },
+        watchOS8Device: { name: "watchos-8", readableName: "WatchOS 8", order: 41 },
+        watchOS7Simulator: { name: "watchos-simulator-7", readableName: "WatchOS Simulator 7", order: 42 },
+        watchOS7Device: { name: "watchos-7", readableName: "WatchOS 7", order: 43 },
+        Windows10: { name: "windows-10", readableName: "Windows 10", order: 50 },
+        WinCairo: { name: "wincairo-windows-10", readableName: "WinCairo", order: 55 },
         LinuxWPE: { name : "linux-wpe", readableName: "Linux WPE", order: 90 },
         LinuxGTK: { name : "linux-gtk", readableName: "Linux GTK", order: 91 },
         LinuxJSCOnly: { name : "linux-jsconly", readableName: "Linux JSCOnly", order: 92 },

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


--- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css	2021-06-17 18:41:34 UTC (rev 279000)
+++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css	2021-06-17 18:43:54 UTC (rev 279001)
@@ -231,6 +231,16 @@
     content: url(../Images/WatchOS7.png);
 }
 
+table.queue-grid tr.platform.watchos-simulator-8 img.logo {
+    background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
+    content: url(../Images/WatchOS8Simulator.png);
+}
+
+table.queue-grid tr.platform.watchos-8 img.logo {
+    background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
+    content: url(../Images/WatchOS8.png);
+}
+
 table.queue-grid tr.platform.macos-catalina img.logo {
     content: url(../Images/Catalina.png);
 }

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


--- trunk/Tools/ChangeLog	2021-06-17 18:41:34 UTC (rev 279000)
+++ trunk/Tools/ChangeLog	2021-06-17 18:43:54 UTC (rev 279001)
@@ -1,5 +1,19 @@
 2021-06-17  W.D. Xiong  <[email protected]>
 
+        [watchOS 8] Add watchOS 8 simulator/device to bot watchers' dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=226781
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/public_html/dashboard/Images/WatchOS8.png: Added.
+        * CISupport/build-webkit-org/public_html/dashboard/Images/WatchOSSimulator8.png: Added.
+        * CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js: Added references for watchOS 8 device + simulator; shifted order down for Windows platforms to make room
+        * CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css: Added references for watchOS 8 device + simulator
+        (table.queue-grid tr.platform.watchos-simulator-8 img.logo):
+        (table.queue-grid tr.platform.watchos-8 img.logo):
+
+2021-06-17  W.D. Xiong  <[email protected]>
+
         [tvOS 15] Add tvOS 15 simulator/device to bot watchers' dashboard
         https://bugs.webkit.org/show_bug.cgi?id=226782
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to