From 5a222d33c839e59e9d53170ffa240b2c6dda286d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Oct 2025 12:10:40 +0000 Subject: [PATCH 1/3] Initial plan From bc11584dbf62ac356b6c272b1a1c9541651334e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Oct 2025 12:14:44 +0000 Subject: [PATCH 2/3] Fix maxDays validation issue in search bar Co-authored-by: devnomadic <14085319+devnomadic@users.noreply.github.com> --- Pages/Home.razor | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Pages/Home.razor b/Pages/Home.razor index f19e708..359db3c 100644 --- a/Pages/Home.razor +++ b/Pages/Home.razor @@ -415,8 +415,13 @@ statusMessage = "Searching IP ranges..."; StateHasChanged(); try { + // Extract just the IP address part (strip ;maxDays if present) + string actualIpAddress = ipAddress.Contains(';') + ? ipAddress.Split(';', 2)[0].Trim() + : ipAddress.Trim(); + // Parse the entered IP address - IPAddress enteredIp = IPAddress.Parse(ipAddress); + IPAddress enteredIp = IPAddress.Parse(actualIpAddress); // Load all manifest files in parallel for optimal performance var downloadTasks = new[] From e880b08cd2fe9815531a8513bb3d93ada8920fd6 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Oct 2025 00:31:02 +1100 Subject: [PATCH 3/3] Add copilot/* branch filter to CodeQL Advanced & CI workflows (#6) * Initial plan * Add copilot/* branch filter to CodeQL and CI workflows Co-authored-by: devnomadic <14085319+devnomadic@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: devnomadic <14085319+devnomadic@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8da6a26..4fb78b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: - branches: [ develop, feature/*, bugfix/* ] + branches: [ develop, feature/*, bugfix/*, copilot/* ] # pull_request: # branches: [ main, master, develop ] diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 127a49e..4ef4df4 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,7 +13,7 @@ name: "CodeQL Advanced" on: push: - branches: [ "main", "develop", "feature/*" ] + branches: [ "main", "develop", "feature/*", "copilot/*" ] pull_request: branches: [ "main", "develop" ] schedule: