From 8eb603c299c57be18a4f59d2df9452a373d4f02b Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 28 Jan 2026 00:13:31 +0000
Subject: [PATCH 1/4] Initial plan
From 36864e789117c0d4a02d399815608e3b2005f3d5 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 28 Jan 2026 00:16:19 +0000
Subject: [PATCH 2/4] Add prominent banner linking to ACE-Step v1.5 project
page
Co-authored-by: ChuxiJ <30956809+ChuxiJ@users.noreply.github.com>
---
index.html | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/index.html b/index.html
index 6d8cbe6..9620458 100644
--- a/index.html
+++ b/index.html
@@ -1181,6 +1181,25 @@
From 0f3298f6be6091199d28da2ed65656d8139a3758 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 28 Jan 2026 00:18:31 +0000
Subject: [PATCH 3/4] Improve banner code quality: move to CSS classes, add
accessibility
Co-authored-by: ChuxiJ <30956809+ChuxiJ@users.noreply.github.com>
---
index.html | 65 +++++++++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 57 insertions(+), 8 deletions(-)
diff --git a/index.html b/index.html
index 9620458..111e6c4 100644
--- a/index.html
+++ b/index.html
@@ -327,6 +327,55 @@
gap: 10px;
margin-left: 10px;
}
+
+ /* v1.5 Notice Banner */
+ .v15-notice-banner {
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
+ border-radius: 12px;
+ padding: 20px 30px;
+ margin: 20px auto 30px;
+ max-width: 900px;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.2);
+ border: 2px solid rgba(255,255,255,0.3);
+ }
+
+ .v15-banner-content {
+ text-align: center;
+ color: white;
+ }
+
+ .v15-banner-title {
+ margin: 0 0 12px 0;
+ font-size: 28px;
+ font-weight: 700;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
+ }
+
+ .v15-banner-text {
+ margin: 0 0 15px 0;
+ font-size: 18px;
+ line-height: 1.6;
+ text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
+ }
+
+ .v15-banner-link {
+ display: inline-block;
+ background-color: white;
+ color: #667eea;
+ padding: 12px 32px;
+ border-radius: 8px;
+ text-decoration: none;
+ font-weight: 700;
+ font-size: 18px;
+ box-shadow: 0 2px 8px rgba(0,0,0,0.2);
+ transition: all 0.3s ease;
+ border: 2px solid white;
+ }
+
+ .v15-banner-link:hover {
+ transform: scale(1.05);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.3);
+ }
@@ -1182,19 +1231,19 @@
-
-
-
+
+
From e607df4a8391cfa9d96690ed67ab9a963b11bee0 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 28 Jan 2026 00:19:34 +0000
Subject: [PATCH 4/4] Remove redundant aria-label from banner link
Co-authored-by: ChuxiJ <30956809+ChuxiJ@users.noreply.github.com>
---
index.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/index.html b/index.html
index 111e6c4..fe0559b 100644
--- a/index.html
+++ b/index.html
@@ -1242,8 +1242,7 @@