From d32476d8275765a05d049a43902a0cedcb096cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=85=8E=E9=A5=BC=E6=9E=9C=E5=AD=90=E5=8D=B7=E9=B2=A8?= =?UTF-8?q?=E9=B1=BC=E8=BE=A3=E6=A4=92?= Date: Mon, 30 Dec 2024 19:54:23 +0800 Subject: [PATCH] feat: add architecture-specific binary naming in installation script - Introduced a new binary naming format for the cursor-id-modifier to include the latest release tag and support the x86_64 architecture. - This change enhances version tracking and aligns with standard naming conventions for better clarity in the installation process. --- scripts/install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index c5bd05e..bf50c85 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -103,6 +103,7 @@ function Install-CursorModifier { # Look for Windows binary with our architecture $possibleNames = @( + "cursor-id-modifier_$($latestRelease.tag_name)_windows_x86_64.exe", "cursor-id-modifier_$($latestRelease.tag_name)_windows_$($arch).exe", "cursor-id-modifier_windows_$($arch).exe" )