Browse Source

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.
pull/122/head v0.0.33
煎饼果子卷鲨鱼辣椒 5 months ago
parent
commit
d32476d827
  1. 1
      scripts/install.ps1

1
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"
)

Loading…
Cancel
Save