Title: [279005] trunk/Tools
Revision
279005
Author
[email protected]
Date
2021-06-17 13:07:14 -0700 (Thu, 17 Jun 2021)

Log Message

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

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

* CISupport/build-webkit-org/public_html/dashboard/Images/IOS15.png: Added.
* CISupport/build-webkit-org/public_html/dashboard/Images/IOS15Simulator.png: Added.
* CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js: Added references to iOS 15 device + simulator, shifted ordering down
* CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css: Added references to iOS 15 device + simulator
(table.queue-grid tr.platform.ios-simulator-15 img.logo):
(table.queue-grid tr.platform.ios-15 img.logo):

Modified Paths

Added Paths

Diff

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


(Binary files differ)
Index: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15.png =================================================================== --- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15.png 2021-06-17 20:03:07 UTC (rev 279004) +++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15.png 2021-06-17 20:07:14 UTC (rev 279005) Property changes on: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15.png ___________________________________________________________________

Added: svn:mime-type

+image/png \ No newline at end of property

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


(Binary files differ)
Index: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15Simulator.png =================================================================== --- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15Simulator.png 2021-06-17 20:03:07 UTC (rev 279004) +++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15Simulator.png 2021-06-17 20:07:14 UTC (rev 279005) Property changes on: trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Images/IOS15Simulator.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 (279004 => 279005)


--- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js	2021-06-17 20:03:07 UTC (rev 279004)
+++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js	2021-06-17 20:07:14 UTC (rev 279005)
@@ -28,8 +28,10 @@
         macOSMonterey: { name: "macos-monterey", readableName: "macOS Monterey", order: 1 },
         macOSBigSur: { name: "macos-bigsur", readableName: "macOS Big Sur", order: 2 },
         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 },
+        iOS15Simulator: { name: "ios-simulator-15", readableName: "iOS 15 Simulator", order: 15 },
+        iOS15Device: { name: "ios-15", readableName: "iOS 15", order: 16 },
+        iOS14Simulator: { name: "ios-simulator-14", readableName: "iOS 14 Simulator", order: 17 },
+        iOS14Device: { name: "ios-14", readableName: "iOS 14", order: 18 },
         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 },

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


--- trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css	2021-06-17 20:03:07 UTC (rev 279004)
+++ trunk/Tools/CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css	2021-06-17 20:07:14 UTC (rev 279005)
@@ -201,6 +201,16 @@
     content: url(../Images/IOS14.png);
 }
 
+table.queue-grid tr.platform.ios-simulator-15 img.logo {
+    background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
+    content: url(../Images/IOS15Simulator.png);
+}
+
+table.queue-grid tr.platform.ios-15 img.logo {
+    background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
+    content: url(../Images/IOS15.png);
+}
+
 table.queue-grid tr.platform.tvos-simulator-14 img.logo {
     background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%);
     content: url(../Images/TvOS14Simulator.png);

Modified: trunk/Tools/ChangeLog (279004 => 279005)


--- trunk/Tools/ChangeLog	2021-06-17 20:03:07 UTC (rev 279004)
+++ trunk/Tools/ChangeLog	2021-06-17 20:07:14 UTC (rev 279005)
@@ -1,5 +1,19 @@
 2021-06-17  W.D. Xiong  <[email protected]>
 
+        [iOS 15] Add iOS 15 simulator/device to bot watchers' dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=226779
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/public_html/dashboard/Images/IOS15.png: Added.
+        * CISupport/build-webkit-org/public_html/dashboard/Images/IOS15Simulator.png: Added.
+        * CISupport/build-webkit-org/public_html/dashboard/Scripts/Dashboard.js: Added references to iOS 15 device + simulator, shifted ordering down
+        * CISupport/build-webkit-org/public_html/dashboard/Styles/Main.css: Added references to iOS 15 device + simulator
+        (table.queue-grid tr.platform.ios-simulator-15 img.logo):
+        (table.queue-grid tr.platform.ios-15 img.logo):
+
+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
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to