From 1f775531d6d6964f3219dd7361a7759d5b5a2b26 Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Sun, 29 Mar 2026 10:42:34 +0530 Subject: [PATCH 1/3] fix(docs): make View Metrics button visible on dark hero background --- docs/src/pages/index.module.css | 11 +++++++++++ docs/src/pages/index.tsx | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css index 1993b48..575b806 100644 --- a/docs/src/pages/index.module.css +++ b/docs/src/pages/index.module.css @@ -30,6 +30,17 @@ margin-bottom: 1rem; } +.buttons .button--outline { + color: #ffffff; + border-color: #ffffff; +} + +.buttons .button--outline:hover { + background: rgba(255, 255, 255, 0.15); + color: #ffffff; + border-color: #ffffff; +} + .quickstart { padding: 4rem 0; background: var(--ifm-color-emphasis-100); diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx index c73e030..f56a86d 100644 --- a/docs/src/pages/index.tsx +++ b/docs/src/pages/index.tsx @@ -160,7 +160,7 @@ export default function Home(): ReactNode { Maven {` - com.agenteval + org.byteveda.agenteval agenteval-junit5 1.0.0 test @@ -170,7 +170,7 @@ export default function Home(): ReactNode {
Gradle (Kotlin DSL) -{`testImplementation("com.agenteval:agenteval-junit5:1.0.0")`} +{`testImplementation("org.byteveda.agenteval:agenteval-junit5:1.0.0")`}
From 1f1ccc8f60d8fd3b1d06f4d437b6100a71a332cc Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Sun, 29 Mar 2026 10:44:16 +0530 Subject: [PATCH 2/3] fix(docs): update version to 0.1.0 in install snippets --- docs/src/pages/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx index f56a86d..4503570 100644 --- a/docs/src/pages/index.tsx +++ b/docs/src/pages/index.tsx @@ -162,7 +162,7 @@ export default function Home(): ReactNode { {` org.byteveda.agenteval agenteval-junit5 - 1.0.0 + 0.1.0 test `}
@@ -170,7 +170,7 @@ export default function Home(): ReactNode {
Gradle (Kotlin DSL) -{`testImplementation("org.byteveda.agenteval:agenteval-junit5:1.0.0")`} +{`testImplementation("org.byteveda.agenteval:agenteval-junit5:0.1.0")`}
From daaf9649b01efc9cc89b97870c96faea53981a0f Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Sun, 29 Mar 2026 10:44:22 +0530 Subject: [PATCH 3/3] fix(docs): update footer copyright to ByteVeda --- docs/docusaurus.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index 3bc382d..b9703ca 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -108,7 +108,7 @@ const config: Config = { ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} AgentEval Contributors. Licensed under Apache 2.0.`, + copyright: `Copyright © ${new Date().getFullYear()} ByteVeda. Licensed under Apache 2.0.`, }, prism: { theme: prismThemes.github,