Skip to content

Commit 21aa297

Browse files
committed
feat: Update version to 2.5.0 and enhance installation scripts
- Updated version number to 2.5.0 across all relevant files for consistency. - Removed obsolete version 2.0.0 binaries and added new binaries for version 2.5.0 for various platforms (Windows, Linux, macOS). - Updated installation scripts (`cursor_modifier.bat`, `cursor_modifier.sh`, `install.sh`, and `build_all` scripts) to reflect the new version. - Revised README.md to include updated installation instructions and links to the new binaries, ensuring users have accurate and up-to-date information. These changes collectively improve the application's usability and ensure users can access the latest version seamlessly.
1 parent 98f6eab commit 21aa297

14 files changed

+10
-11
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Binary files
2-
*.exe
32
*.dll
43
*.so
54
*.dylib

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/
4242

4343
**Windows** (Run in PowerShell as Admin)
4444
```powershell
45-
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/bin/cursor_id_modifier_v2.0.0_windows_amd64.exe')); Remove-Item -Path "$env:TEMP\cursor-id-modifier.exe" -ErrorAction SilentlyContinue
45+
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/bin/cursor_id_modifier_v2.5.0_windows_amd64.exe')); Remove-Item -Path "$env:TEMP\cursor-id-modifier.exe" -ErrorAction SilentlyContinue
4646
```
4747

4848
#### Manual Method
@@ -61,7 +61,7 @@ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManage
6161
"telemetry.devDeviceId": "generate-new-uuid",
6262
"telemetry.sqmId": "generate-new-uuid",
6363
"lastModified": "2024-01-01T00:00:00.000Z",
64-
"version": "2.0.0"
64+
"version": "2.5.0"
6565
}
6666
```
6767
5. Save the file and restart Cursor
@@ -137,7 +137,7 @@ curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/
137137

138138
**Windows** (以管理员身份运行PowerShell)
139139
```powershell
140-
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/bin/cursor_id_modifier_v2.0.0_windows_amd64.exe')); Remove-Item -Path "$env:TEMP\cursor-id-modifier.exe" -ErrorAction SilentlyContinue
140+
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/bin/cursor_id_modifier_v2.5.0_windows_amd64.exe')); Remove-Item -Path "$env:TEMP\cursor-id-modifier.exe" -ErrorAction SilentlyContinue
141141
```
142142

143143
#### 手动方法
@@ -156,7 +156,7 @@ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManage
156156
"telemetry.devDeviceId": "生成新的uuid",
157157
"telemetry.sqmId": "生成新的uuid",
158158
"lastModified": "2024-01-01T00:00:00.000Z",
159-
"version": "2.0.0"
159+
"version": "2.5.0"
160160
}
161161
```
162162
5. 保存文件并重启 Cursor
-2.03 MB
Binary file not shown.
-2.28 MB
Binary file not shown.
2.05 MB
Binary file not shown.
2.04 MB
Binary file not shown.
2.31 MB
Binary file not shown.

cursor_modifier.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ chcp 65001 >nul
33
setlocal EnableDelayedExpansion
44

55
:: 版本号
6-
set "VERSION=2.0.0"
6+
set "VERSION=2.5.0"
77

88
:: 检测语言
99
for /f "tokens=2 delims==" %%a in ('wmic os get OSLanguage /value') do set OSLanguage=%%a

cursor_modifier.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# 版本号 - 与其他文件保持一致
4-
VERSION="2.0.0"
4+
VERSION="2.5.0"
55

66
# 颜色定义
77
RED='\033[0;31m'

0 commit comments

Comments
 (0)