Skip to content

Commit 44226ae

Browse files
committed
refactor: Revise README.md for clarity and structure
- Streamlined the description and usage guidelines for the Cursor Free Trial Reset Tool. - Improved formatting of platform support and installation instructions for better readability. - Updated download URLs in installation instructions to reflect the latest paths. - Enhanced bilingual support by ensuring consistent formatting in both English and Chinese sections. - Added troubleshooting tips and cautions to guide users effectively. This commit enhances the documentation to provide clearer instructions and improve user experience.
1 parent af6c9f0 commit 44226ae

File tree

1 file changed

+71
-45
lines changed

1 file changed

+71
-45
lines changed

README.md

Lines changed: 71 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,14 @@
2020
<tr>
2121
<td>
2222

23-
This tool is only intended for the following specific scenarios:
24-
- 🕒 During Cursor's official free trial period
25-
- 🔄 When system mistakenly flags as duplicate trial
26-
- 🆘 As a temporary solution when official support is unavailable
27-
28-
**Please note:**
29-
- 🚫 Not for bypassing paid features
30-
- 💳 Purchase a license if trial expired
31-
- 📞 Contact official support first
32-
- ✅ Ensure valid trial period before use
33-
34-
</td>
35-
</tr>
36-
</table>
37-
3823
<a name="english"></a>
24+
3925
## 🌟 English
4026

4127
### 📝 Description
28+
4229
A tool to resolve the following prompt issue during Cursor's free trial period:
30+
4331
<table>
4432
<tr>
4533
<td>
@@ -54,51 +42,56 @@ this is a mistake.
5442
</table>
5543

5644
### ✨ Features
45+
5746
- 🔄 Reset Cursor free trial limitations
5847
- 🔍 Automatic detection and closing of running instances
5948
- 🌐 Cross-platform support with architecture detection
6049
- 📦 Automated installation scripts
6150
- 🖥️ Both GUI and command-line interfaces
6251

6352
### 💻 System Support
64-
| Platform | Status |
65-
|----------|---------|
66-
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | ✅ x64 |
67-
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | ✅ Intel/Apple Silicon |
68-
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ✅ x64/ARM64 |
53+
54+
| Platform | Status |
55+
| ----------------------------------------------------------------------------------------------- | ---------------------- |
56+
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | ✅ x64 |
57+
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | ✅ Intel/Apple Silicon |
58+
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ✅ x64/ARM64 |
6959

7060
### 📥 Installation Methods
7161

7262
<details open>
7363
<summary><b>1️⃣ Automated Installation (Recommended)</b></summary>
7464

7565
#### Linux/macOS
66+
7667
```bash
77-
curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/main/install.sh | sudo bash
68+
curl -fsSL https://github.com/yuaotian/go-cursor-help/raw/refs/heads/master/install.sh | sudo bash
7869
```
7970

8071
#### Windows PowerShell
72+
8173
```powershell
8274
# Download and run with admin privileges
83-
$url = "https://github.com/yuaotian/go-cursor-help/releases/latest/download/cursor-id-modifier.exe"
75+
$url = "https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/bin/cursor_id_modifier_v2.0.0_windows_amd64.exe"
8476
$output = "$env:TEMP\cursor-id-modifier.exe"
8577
Invoke-WebRequest -Uri $url -OutFile $output
8678
Start-Process -FilePath $output -Verb RunAs
8779
```
80+
8881
</details>
8982

9083
<details>
9184
<summary><b>2️⃣ Manual Download</b></summary>
9285

9386
Download from [Releases](https://github.com/yuaotian/go-cursor-help/releases/latest):
9487

95-
| Platform | Architecture | File |
96-
|----------|-------------|------|
97-
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | x64 | `cursor-id-modifier.exe` |
98-
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Intel (x64) | `cursor-id-modifier-amd64` |
99-
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Apple Silicon | `cursor-id-modifier-arm64` |
100-
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | x64 | `cursor-id-modifier` |
101-
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ARM64 | `cursor-id-modifier-arm64` |
88+
| Platform | Architecture | File |
89+
| ----------------------------------------------------------------------------------------------- | ------------- | -------------------------- |
90+
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | x64 | `cursor-id-modifier.exe` |
91+
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Intel (x64) | `cursor-id-modifier-amd64` |
92+
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Apple Silicon | `cursor-id-modifier-arm64` |
93+
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | x64 | `cursor-id-modifier` |
94+
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ARM64 | `cursor-id-modifier-arm64` |
10295

10396
</details>
10497

@@ -110,19 +103,22 @@ Download from [Releases](https://github.com/yuaotian/go-cursor-help/releases/lat
110103
- 👑 Administrator/root privileges required
111104
- 🚫 Cursor should be completely closed
112105
- 🌐 Internet connection for installation
106+
113107
</details>
114108

115109
<details>
116110
<summary>Running the Tool</summary>
117111

118112
The tool will automatically:
113+
119114
1. 🔑 Check for and request admin privileges
120115
2. 🔍 Detect and close Cursor instances
121116
3. 💾 Backup existing configuration
122117
4. 🔄 Generate new identifiers
123118
5. ✅ Apply changes
124119

125120
Restart Cursor after completion.
121+
126122
</details>
127123

128124
### 🔧 Troubleshooting
@@ -131,26 +127,34 @@ Restart Cursor after completion.
131127
<summary>Common Issues</summary>
132128

133129
#### 🚫 Permission Denied
130+
134131
- Windows: Right-click → "Run as Administrator"
135132
- Linux/macOS: Use \`sudo\` when running
136133

137134
#### ⚠️ Cursor Still Running
135+
138136
- Tool will attempt auto-close
139137
- Manual close via Task Manager if needed
140138

141139
#### 🔒 macOS Security
140+
142141
If you see "unidentified developer" warning:
142+
143143
1. Right-click → Open
144144
2. Click "Open" in dialog
145+
145146
</details>
146147

147148
### ⚠️ Cautions
149+
148150
- 🛡️ Use at your own risk
149151
- 💾 Backup important data
150152
- 📚 Educational purposes only
151153

152154
### 🤝 Contributing
155+
153156
We welcome contributions! Please ensure:
157+
154158
- ✅ Cross-platform compatibility
155159
- 🚫 No breaking changes
156160
- 🔍 Proper error handling
@@ -159,10 +163,13 @@ We welcome contributions! Please ensure:
159163
---
160164

161165
<a name="chinese"></a>
166+
162167
## 🌏 中文
163168

164169
### 📝 问题描述
170+
165171
解决Cursor在免费订阅期间出现以下提示的问题:
172+
166173
<table>
167174
<tr>
168175
<td>
@@ -177,51 +184,57 @@ this is a mistake.
177184
</table>
178185

179186
### ✨ 功能特性
187+
180188
- 🔄 重置Cursor免费试用限制
181189
- 🔍 自动检测和关闭运行中的实例
182190
- 🌐 跨平台支持,自动检测系统架构
183191
- 📦 自动化安装脚本
184192
- 🖥️ 支持图形界面和命令行
185193

186194
### 💻 系统支持
187-
| 平台 | 状态 |
188-
|----------|---------|
189-
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | ✅ x64 |
190-
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | ✅ Intel/Apple Silicon |
191-
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ✅ x64/ARM64 |
195+
196+
| 平台 | 状态 |
197+
| ----------------------------------------------------------------------------------------------- | ---------------------- |
198+
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | ✅ x64 |
199+
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | ✅ Intel/Apple Silicon |
200+
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ✅ x64/ARM64 |
192201

193202
### 📥 安装方法
194203

195204
<details open>
196205
<summary><b>1️⃣ 自动安装(推荐)</b></summary>
197206

198207
#### Linux/macOS
208+
209+
199210
```bash
200-
curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/main/install.sh | sudo bash
211+
curl -fsSL https://github.com/yuaotian/go-cursor-help/raw/refs/heads/master/install.sh | sudo bash
201212
```
202213

203214
#### Windows PowerShell
215+
204216
```powershell
205-
# 下载并以管理员权限运行
206-
$url = "https://github.com/yuaotian/go-cursor-help/releases/latest/download/cursor-id-modifier.exe"
217+
# 下载管理员运行
218+
$url = "https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/bin/cursor_id_modifier_v2.0.0_windows_amd64.exe"
207219
$output = "$env:TEMP\cursor-id-modifier.exe"
208220
Invoke-WebRequest -Uri $url -OutFile $output
209221
Start-Process -FilePath $output -Verb RunAs
210222
```
223+
211224
</details>
212225

213226
<details>
214227
<summary><b>2️⃣ 手动下载</b></summary>
215228

216229
[发布页面](https://github.com/yuaotian/go-cursor-help/releases/latest)下载:
217230

218-
| 平台 | 架构 | 文件 |
219-
|----------|-------------|------|
220-
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | x64 | `cursor-id-modifier.exe` |
221-
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Intel (x64) | `cursor-id-modifier-amd64` |
222-
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Apple Silicon | `cursor-id-modifier-arm64` |
223-
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | x64 | `cursor-id-modifier` |
224-
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ARM64 | `cursor-id-modifier-arm64` |
231+
| 平台 | 架构 | 文件 |
232+
| ----------------------------------------------------------------------------------------------- | ------------- | -------------------------- |
233+
| ![Windows](https://img.shields.io/badge/Windows-0078D6?style=flat&logo=windows&logoColor=white) | x64 | `cursor-id-modifier.exe` |
234+
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Intel (x64) | `cursor-id-modifier-amd64` |
235+
| ![macOS](https://img.shields.io/badge/macOS-000000?style=flat&logo=apple&logoColor=white) | Apple Silicon | `cursor-id-modifier-arm64` |
236+
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | x64 | `cursor-id-modifier` |
237+
| ![Linux](https://img.shields.io/badge/Linux-FCC624?style=flat&logo=linux&logoColor=black) | ARM64 | `cursor-id-modifier-arm64` |
225238

226239
</details>
227240

@@ -233,19 +246,22 @@ Start-Process -FilePath $output -Verb RunAs
233246
- 👑 需要管理员/root权限
234247
- 🚫 确保Cursor完全关闭
235248
- 🌐 需要网络连接进行安装
249+
236250
</details>
237251

238252
<details>
239253
<summary>运行工具</summary>
240254

241255
工具将自动执行:
256+
242257
1. 🔑 检查并请求管理员权限
243258
2. 🔍 检测并关闭Cursor进程
244259
3. 💾 备份现有配置
245260
4. 🔄 生成新的标识符
246261
5. ✅ 应用更改
247262

248263
完成后重启Cursor即可。
264+
249265
</details>
250266

251267
### 🔧 故障排除
@@ -254,32 +270,41 @@ Start-Process -FilePath $output -Verb RunAs
254270
<summary>常见问题</summary>
255271

256272
#### 🚫 权限被拒绝
273+
257274
- Windows:右键 → "以管理员身份运行"
258275
- Linux/macOS:使用 \`sudo\` 运行
259276

260277
#### ⚠️ Cursor仍在运行
278+
261279
- 工具会尝试自动关闭
262280
- 如需要请通过任务管理器手动关闭
263281

264282
#### 🔒 macOS安全性问题
283+
265284
如果看到"未识别的开发者"提示:
285+
266286
1. 右键点击 → 打开
267287
2. 点击确认对话框中的"打开"
288+
268289
</details>
269290

270291
### ⚠️ 注意事项
292+
271293
- 🛡️ 使用本工具需自行承担风险
272294
- 💾 使用前请备份重要数据
273295
- 📚 仅用于学习研究目的
274296

275297
### 🤝 贡献
298+
276299
欢迎提交问题和改进建议!请确保:
300+
277301
- ✅ 保持跨平台兼容性
278302
- 🚫 避免破坏性更改
279303
- 🔍 完善的错误处理
280304
- 📝 更新相关文档
281305

282306
## 📄 License
307+
283308
MIT License
284309

285310
Copyright (c) 2024
@@ -292,4 +317,5 @@ copies of the Software, and to permit persons to whom the Software is
292317
furnished to do so, subject to the following conditions:
293318

294319
The above copyright notice and this permission notice shall be included in all
295-
copies or substantial portions of the Software.
320+
copies or substantial portions of the Software.
321+

0 commit comments

Comments
 (0)