Compare commits

..

No commits in common. "master" and "v0.0.9" have entirely different histories.

47 changed files with 382 additions and 13118 deletions

View File

@ -1,272 +0,0 @@
# This workflow requires Ubuntu 22.04 or 24.04
name: Auto Tag & Release
on:
push:
branches:
- master
- main
tags:
- "v*"
paths-ignore:
- "**.md"
- "LICENSE"
- ".gitignore"
workflow_call: {}
permissions:
contents: write
packages: write
actions: write
jobs:
pre_job:
runs-on: ubuntu-22.04
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5.3.0
with:
cancel_others: "true"
concurrent_skipping: "same_content"
auto-tag-release:
needs: pre_job
if: |
needs.pre_job.outputs.should_skip != 'true' ||
startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-22.04
timeout-minutes: 15
outputs:
version: ${{ steps.get_latest_tag.outputs.version }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
submodules: recursive
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
check-latest: true
cache: true
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
~/.cache/git
key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-build-
${{ runner.os }}-
# 只在非tag推送时执行自动打tag
- name: Get latest tag
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
id: get_latest_tag
run: |
set -euo pipefail
git fetch --tags --force || {
echo "::error::Failed to fetch tags"
exit 1
}
latest_tag=$(git tag -l 'v*' --sort=-v:refname | head -n 1)
if [ -z "$latest_tag" ]; then
new_version="v0.1.0"
else
major=$(echo $latest_tag | cut -d. -f1)
minor=$(echo $latest_tag | cut -d. -f2)
patch=$(echo $latest_tag | cut -d. -f3)
new_patch=$((patch + 1))
new_version="$major.$minor.$new_patch"
fi
echo "version=$new_version" >> "$GITHUB_OUTPUT"
echo "Generated version: $new_version"
- name: Validate version
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: |
set -euo pipefail
new_tag="${{ steps.get_latest_tag.outputs.version }}"
echo "Validating version: $new_tag"
if [[ ! $new_tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "::error::Invalid version format: $new_tag"
exit 1
fi
major=$(echo $new_tag | cut -d. -f1 | tr -d 'v')
minor=$(echo $new_tag | cut -d. -f2)
patch=$(echo $new_tag | cut -d. -f3)
if [[ $major -gt 99 || $minor -gt 99 || $patch -gt 999 ]]; then
echo "::error::Version numbers out of valid range"
exit 1
fi
echo "Version validation passed"
- name: Create new tag
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
new_tag=${{ steps.get_latest_tag.outputs.version }}
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a $new_tag -m "Release $new_tag"
git push origin $new_tag
# 在 Run GoReleaser 之前添加配置检查步骤
- name: Check GoReleaser config
run: |
if [ ! -f ".goreleaser.yml" ] && [ ! -f ".goreleaser.yaml" ]; then
echo "::error::GoReleaser configuration file not found"
exit 1
fi
# 添加依赖检查步骤
- name: Check Dependencies
run: |
go mod verify
go mod download
# 如果使用 vendor 模式,则执行以下命令
if [ -d "vendor" ]; then
go mod vendor
fi
# 添加构建环境准备步骤
- name: Prepare Build Environment
run: |
echo "Building version: ${VERSION:-development}"
echo "GOOS=${GOOS:-$(go env GOOS)}" >> $GITHUB_ENV
echo "GOARCH=${GOARCH:-$(go env GOARCH)}" >> $GITHUB_ENV
echo "GO111MODULE=on" >> $GITHUB_ENV
# 添加清理步骤
- name: Cleanup workspace
run: |
rm -rf /tmp/go/
rm -rf .cache/
rm -rf dist/
git clean -fdx
git status
# 修改 GoReleaser 步骤
- name: Run GoReleaser
if: ${{ startsWith(github.ref, 'refs/tags/v') || (success() && steps.get_latest_tag.outputs.version != '') }}
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release --clean --timeout 60m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.get_latest_tag.outputs.version }}
CGO_ENABLED: 0
GOPATH: /tmp/go
GOROOT: ${{ env.GOROOT }}
GOCACHE: /tmp/.cache/go-build
GOMODCACHE: /tmp/go/pkg/mod
GORELEASER_DEBUG: 1
GORELEASER_CURRENT_TAG: ${{ steps.get_latest_tag.outputs.version }}
# 添加额外的构建信息
BUILD_TIME: ${{ steps.get_latest_tag.outputs.version }}
BUILD_COMMIT: ${{ github.sha }}
# 优化 vendor 同步步骤
- name: Sync vendor directory
run: |
echo "Syncing vendor directory..."
go mod tidy
go mod vendor
go mod verify
# 验证 vendor 目录
if [ -d "vendor" ]; then
echo "Verifying vendor directory..."
go mod verify
# 检查是否有未跟踪的文件
if [ -n "$(git status --porcelain vendor/)" ]; then
echo "Warning: Vendor directory has uncommitted changes"
git status vendor/
fi
fi
# 添加错误检查步骤
- name: Check GoReleaser Output
if: failure()
run: |
echo "::group::GoReleaser Debug Info"
cat dist/artifacts.json || true
echo "::endgroup::"
echo "::group::GoReleaser Config"
cat .goreleaser.yml
echo "::endgroup::"
echo "::group::Environment Info"
go version
go env
echo "::endgroup::"
- name: Set Release Version
if: startsWith(github.ref, 'refs/tags/v')
run: |
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
# 改进验证步骤
- name: Verify Release
if: ${{ startsWith(github.ref, 'refs/tags/v') || (success() && steps.get_latest_tag.outputs.version != '') }}
run: |
echo "Verifying release artifacts..."
if [ ! -d "dist" ]; then
echo "::error::Release artifacts not found"
exit 1
fi
# 验证生成的二进制文件
for file in dist/cursor-id-modifier_*; do
if [ -f "$file" ]; then
echo "Verifying: $file"
if [[ "$file" == *.exe ]]; then
# Windows 二进制文件检查
if ! [ -x "$file" ]; then
echo "::error::$file is not executable"
exit 1
fi
else
# Unix 二进制文件检查
if ! [ -x "$file" ]; then
echo "::error::$file is not executable"
exit 1
fi
fi
fi
done
- name: Notify on failure
if: failure()
run: |
echo "::error::Release process failed"
# 修改构建摘要步骤
- name: Build Summary
if: always()
run: |
echo "## Build Summary" >> $GITHUB_STEP_SUMMARY
echo "- Go Version: $(go version)" >> $GITHUB_STEP_SUMMARY
echo "- Release Version: ${VERSION:-N/A}" >> $GITHUB_STEP_SUMMARY
echo "- GPG Signing: Disabled" >> $GITHUB_STEP_SUMMARY
echo "- Build Status: ${{ job.status }}" >> $GITHUB_STEP_SUMMARY
if [ -d "dist" ]; then
echo "### Generated Artifacts" >> $GITHUB_STEP_SUMMARY
ls -lh dist/ | awk '{print "- "$9" ("$5")"}' >> $GITHUB_STEP_SUMMARY
fi

54
.github/workflows/auto-tag.yml vendored Normal file
View File

@ -0,0 +1,54 @@
name: Auto Tag
on:
push:
branches:
- master
- main
paths-ignore:
- "**.md"
- "LICENSE"
- ".gitignore"
permissions: write-all
jobs:
auto-tag:
runs-on: ubuntu-latest
outputs:
new_tag: ${{ steps.get_latest_tag.outputs.version }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get latest tag
id: get_latest_tag
run: |
git fetch --tags
latest_tag=$(git tag -l 'v*' --sort=-v:refname | head -n 1)
if [ -z "$latest_tag" ]; then
echo "version=v0.1.0" >> $GITHUB_OUTPUT
else
major=$(echo $latest_tag | cut -d. -f1)
minor=$(echo $latest_tag | cut -d. -f2)
patch=$(echo $latest_tag | cut -d. -f3)
new_patch=$((patch + 1))
echo "version=$major.$minor.$new_patch" >> $GITHUB_OUTPUT
fi
- name: Create new tag
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: |
new_tag=${{ steps.get_latest_tag.outputs.version }}
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a $new_tag -m "Release $new_tag"
git push origin $new_tag
release:
needs: auto-tag
uses: ./.github/workflows/release.yml
permissions: write-all
secrets: inherit

51
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,51 @@
name: Release
on:
workflow_call:
push:
tags:
- "v*"
permissions: write-all
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
submodules: recursive
- name: Debug Files
run: |
pwd
ls -la
echo "Current directory contents:"
ls -R
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
cache: true
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
if: ${{ env.GPG_PRIVATE_KEY != '' }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: v1.21.2
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

2
.gitignore vendored
View File

@ -8,8 +8,6 @@ dist/
# Go specific
go.sum
go/
.cache/
# IDE and editor files
.vscode/

View File

@ -1,10 +1,6 @@
version: 2
before:
hooks:
- go mod tidy
- go mod vendor
- go mod verify
builds:
- id: cursor-id-modifier
@ -12,7 +8,6 @@ builds:
binary: cursor-id-modifier
env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
- windows
@ -27,9 +22,6 @@ builds:
ldflags:
- -s -w
- -X 'main.version={{.Version}}'
- -X 'main.commit={{.ShortCommit}}'
- -X 'main.date={{.CommitDate}}'
- -X 'main.builtBy=goreleaser'
flags:
- -trimpath
mod_timestamp: '{{ .CommitTimestamp }}'
@ -38,47 +30,21 @@ archives:
- id: binary
format: binary
name_template: >-
{{- .ProjectName }}_
{{- .Version }}_
{{ .Binary }}_
{{- .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
builds:
- cursor-id-modifier
allow_different_binary_count: true
files:
- none*
{{- if eq .Arch "amd64" }}x64{{ end }}
{{- if eq .Arch "386" }}x86{{ end }}
{{- if eq .Arch "arm64" }}arm64{{ end }}
{{- if and (eq .Os "darwin") (eq .Arch "amd64") }}_intel{{ end }}
{{- if and (eq .Os "darwin") (eq .Arch "arm64") }}_apple_silicon{{ end }}
checksum:
name_template: 'checksums.txt'
algorithm: sha256
release:
draft: true
prerelease: auto
mode: replace
header: |
## Release {{.Tag}} ({{.Date}})
See [CHANGELOG.md](CHANGELOG.md) for details.
footer: |
**Full Changelog**: https://github.com/owner/repo/compare/{{ .PreviousTag }}...{{ .Tag }}
extra_files:
- glob: 'LICENSE*'
- glob: 'README*'
- glob: 'CHANGELOG*'
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^ci:'
- Merge pull request
- Merge branch
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
@ -88,5 +54,44 @@ changelog:
order: 1
- title: Others
order: 999
filters:
exclude:
- '^docs:'
- '^test:'
- '^ci:'
- Merge pull request
- Merge branch
project_name: cursor-id-modifier
release:
github:
owner: dacrab
name: go-cursor-help
draft: false
prerelease: auto
mode: replace
header: |
## Cursor ID Modifier {{ .Version }}
### Supported Platforms
- Windows: x64, x86
- macOS: Intel (x64), Apple Silicon (M1/M2)
- Linux: x64, x86, ARM64
See [CHANGELOG](CHANGELOG.md) for more details.
footer: |
**Full Changelog**: https://github.com/dacrab/go-cursor-help/compare/{{ .PreviousTag }}...{{ .Tag }}
## Quick Installation
**Linux/macOS**:
```bash
curl -fsSL https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.sh | sudo bash
```
**Windows** (PowerShell Admin):
```powershell
irm https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.ps1 | iex
```
snapshot:
name_template: "{{ incpatch .Version }}-next"

53
CHANGELOG.md Normal file
View File

@ -0,0 +1,53 @@
# 📝 Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.1.23] - 2024-12-29 🚀
### ✨ Features
- **Initial Release**: First public release of Cursor ID Modifier
- **Multi-Platform Support**:
- 🪟 Windows (x64, x86)
- 🍎 macOS (Intel & Apple Silicon)
- 🐧 Linux (x64, x86, ARM64)
- **Installation**:
- Automated installation scripts for all platforms
- One-line installation commands
- Secure download and verification
- **Core Functionality**:
- Telemetry ID modification for Cursor IDE
- Automatic process management
- Secure configuration handling
### 🐛 Bug Fixes
- **Installation**:
- Fixed environment variable preservation in sudo operations
- Enhanced error handling during installation
- Improved binary download reliability
- **Process Management**:
- Improved Cursor process detection accuracy
- Enhanced process termination reliability
- Better handling of edge cases
- **User Experience**:
- Enhanced error messages and user feedback
- Improved progress indicators
- Better handling of system permissions
### 🔧 Technical Improvements
- Optimized binary size with proper build flags
- Enhanced cross-platform compatibility
- Improved error handling and logging
- Better system resource management
### 📚 Documentation
- Added comprehensive installation instructions
- Included platform-specific guidelines
- Enhanced error troubleshooting guide
---
*For more details about the changes, please refer to the [commit history](https://github.com/dacrab/go-cursor-help/commits/main).*
[0.1.22]: https://github.com/dacrab/go-cursor-help/releases/tag/v0.1.23

View File

@ -1,936 +0,0 @@
# 🖥️ Windows
## x64
<details>
<summary style="font-size:1.2em">📦 Windows x64 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
| 0.45.11 | [下载](https://downloader.cursor.sh/builds/250207y6nbaw5qc/windows/nsis/x64) |
| 0.45.10 | [下载](https://downloader.cursor.sh/builds/250205buadkzpea/windows/nsis/x64) |
| 0.45.9 | [下载](https://downloader.cursor.sh/builds/250202tgstl42dt/windows/nsis/x64) |
| 0.45.8 | [下载](https://downloader.cursor.sh/builds/250201b44xw1x2k/windows/nsis/x64) |
| 0.45.7 | [下载](https://downloader.cursor.sh/builds/250130nr6eorv84/windows/nsis/x64) |
| 0.45.6 | [下载](https://downloader.cursor.sh/builds/25013021lv9say3/windows/nsis/x64) |
| 0.45.5 | [下载](https://downloader.cursor.sh/builds/250128loaeyulq8/windows/nsis/x64) |
| 0.45.4 | [下载](https://downloader.cursor.sh/builds/250126vgr3vztvj/windows/nsis/x64) |
| 0.45.3 | [下载](https://downloader.cursor.sh/builds/250124b0rcj0qql/windows/nsis/x64) |
| 0.45.2 | [下载](https://downloader.cursor.sh/builds/250123mhituoa6o/windows/nsis/x64) |
| 0.45.1 | [下载](https://downloader.cursor.sh/builds/2501213ljml5byg/windows/nsis/x64) |
| 0.45.0 | [下载](https://downloader.cursor.sh/builds/250120dh9ezx9pg/windows/nsis/x64) |
| 0.44.11 | [下载](https://downloader.cursor.sh/builds/250103fqxdt5u9z/windows/nsis/x64) |
| 0.44.10 | [下载](https://downloader.cursor.sh/builds/250102ys80vtnud/windows/nsis/x64) |
| 0.44.9 | [下载](https://downloader.cursor.sh/builds/2412268nc6pfzgo/windows/nsis/x64) |
| 0.44.8 | [下载](https://downloader.cursor.sh/builds/241222ooktny8mh/windows/nsis/x64) |
| 0.44.7 | [下载](https://downloader.cursor.sh/builds/2412219nhracv01/windows/nsis/x64) |
| 0.44.6 | [下载](https://downloader.cursor.sh/builds/2412214pmryneua/windows/nsis/x64) |
| 0.44.5 | [下载](https://downloader.cursor.sh/builds/241220s3ux0e1tv/windows/nsis/x64) |
| 0.44.4 | [下载](https://downloader.cursor.sh/builds/241219117fcvexy/windows/nsis/x64) |
| 0.44.3 | [下载](https://downloader.cursor.sh/builds/241218sybfbogmq/windows/nsis/x64) |
| 0.44.2 | [下载](https://downloader.cursor.sh/builds/241218ntls52u8v/windows/nsis/x64) |
| 0.44.0 | [下载](https://downloader.cursor.sh/builds/2412187f9v0nffu/windows/nsis/x64) |
| 0.43.6 | [下载](https://downloader.cursor.sh/builds/241206z7j6me2e2/windows/nsis/x64) |
| 0.43.5 | [下载](https://downloader.cursor.sh/builds/241127pdg4cnbu2/windows/nsis/x64) |
| 0.43.4 | [下载](https://downloader.cursor.sh/builds/241126w13goyvrs/windows/nsis/x64) |
| 0.43.3 | [下载](https://downloader.cursor.sh/builds/2411246yqzx1jmm/windows/nsis/x64) |
| 0.43.1 | [下载](https://downloader.cursor.sh/builds/241124gsiwb66nc/windows/nsis/x64) |
| 0.42.5 | [下载](https://downloader.cursor.sh/builds/24111460bf2loz1/windows/nsis/x64) |
| 0.42.4 | [下载](https://downloader.cursor.sh/builds/2410291z3bdg1dy/windows/nsis/x64) |
| 0.42.3 | [下载](https://downloader.cursor.sh/builds/241016kxu9umuir/windows/nsis/x64) |
| 0.42.2 | [下载](https://downloader.cursor.sh/builds/2410127mj66lvaq/windows/nsis/x64) |
| 0.42.1 | [下载](https://downloader.cursor.sh/builds/241011i66p9fuvm/windows/nsis/x64) |
| 0.42.0 | [下载](https://downloader.cursor.sh/builds/241009fij7nohn5/windows/nsis/x64) |
| 0.41.3 | [下载](https://downloader.cursor.sh/builds/240925fkhcqg263/windows/nsis/x64) |
| 0.41.2 | [下载](https://downloader.cursor.sh/builds/240921llnho65ov/windows/nsis/x64) |
| 0.41.1 | [下载](https://downloader.cursor.sh/builds/2409189xe3envg5/windows/nsis/x64) |
| 0.40.4 | [下载](https://downloader.cursor.sh/builds/2409052yfcjagw2/windows/nsis/x64) |
| 0.40.3 | [下载](https://downloader.cursor.sh/builds/240829epqamqp7h/windows/nsis/x64) |
| 0.40.2 | [下载](https://downloader.cursor.sh/builds/240828c021k3aib/windows/nsis/x64) |
| 0.40.1 | [下载](https://downloader.cursor.sh/builds/2408245thnycuzj/windows/nsis/x64) |
| 0.40.0 | [下载](https://downloader.cursor.sh/builds/24082202sreugb2/windows/nsis/x64) |
| 0.39.6 | [下载](https://downloader.cursor.sh/builds/240819ih4ta2fye/windows/nsis/x64) |
| 0.39.5 | [下载](https://downloader.cursor.sh/builds/240814y9rhzmu7h/windows/nsis/x64) |
| 0.39.4 | [下载](https://downloader.cursor.sh/builds/240810elmeg3seq/windows/nsis/x64) |
| 0.39.3 | [下载](https://downloader.cursor.sh/builds/2408092hoyaxt9m/windows/nsis/x64) |
| 0.39.2 | [下载](https://downloader.cursor.sh/builds/240808phaxh4b5r/windows/nsis/x64) |
| 0.39.1 | [下载](https://downloader.cursor.sh/builds/240807g919tr4ly/windows/nsis/x64) |
| 0.39.0 | [下载](https://downloader.cursor.sh/builds/240802cdixtv9a6/windows/nsis/x64) |
| 0.38.1 | [下载](https://downloader.cursor.sh/builds/240725f0ti25os7/windows/nsis/x64) |
| 0.38.0 | [下载](https://downloader.cursor.sh/builds/240723790oxe4a2/windows/nsis/x64) |
| 0.37.1 | [下载](https://downloader.cursor.sh/builds/240714yrr3gmv3k/windows/nsis/x64) |
| 0.36.2 | [下载](https://downloader.cursor.sh/builds/2407077n6pzboby/windows/nsis/x64) |
| 0.36.1 | [下载](https://downloader.cursor.sh/builds/240706uekt2eaft/windows/nsis/x64) |
| 0.36.0 | [下载](https://downloader.cursor.sh/builds/240703xqkjv5aqa/windows/nsis/x64) |
| 0.35.1 | [下载](https://downloader.cursor.sh/builds/240621pc2f7rl8a/windows/nsis/x64) |
| 0.35.0 | [下载](https://downloader.cursor.sh/builds/240608cv11mfsjl/windows/nsis/x64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240606kgzq24cfb/windows/nsis/x64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240605r495newcf/windows/nsis/x64) |
| 0.34.5 | [下载](https://downloader.cursor.sh/builds/240602rq6xovt3a/windows/nsis/x64) |
| 0.34.4 | [下载](https://downloader.cursor.sh/builds/2406014h0rgjghe/windows/nsis/x64) |
| 0.34.3 | [下载](https://downloader.cursor.sh/builds/240529baisuyd2e/windows/nsis/x64) |
| 0.34.2 | [下载](https://downloader.cursor.sh/builds/240528whh1qyo9h/windows/nsis/x64) |
| 0.34.1 | [下载](https://downloader.cursor.sh/builds/24052838ygfselt/windows/nsis/x64) |
| 0.34.0 | [下载](https://downloader.cursor.sh/builds/240527xus72jmkj/windows/nsis/x64) |
| 0.33.4 | [下载](https://downloader.cursor.sh/builds/240511kb8wt1tms/windows/nsis/x64) |
| 0.33.3 | [下载](https://downloader.cursor.sh/builds/2405103lx8342ta/windows/nsis/x64) |
| 0.33.2 | [下载](https://downloader.cursor.sh/builds/240510dwmw395qe/windows/nsis/x64) |
| 0.33.1 | [下载](https://downloader.cursor.sh/builds/2405039a9h2fqc9/windows/nsis/x64) |
| 0.33.0 | [下载](https://downloader.cursor.sh/builds/240503hyjsnhazo/windows/nsis/x64) |
| 0.32.8 | [下载](https://downloader.cursor.sh/builds/240428d499o6zja/windows/nsis/x64) |
| 0.32.7 | [下载](https://downloader.cursor.sh/builds/240427w5guozr0l/windows/nsis/x64) |
| 0.32.2 | [下载](https://downloader.cursor.sh/builds/240417ab4wag7sx/windows/nsis/x64) |
| 0.32.1 | [下载](https://downloader.cursor.sh/builds/2404152czor73fk/windows/nsis/x64) |
| 0.32.0 | [下载](https://downloader.cursor.sh/builds/240412ugli06ue0/windows/nsis/x64) |
| 0.31.3 | [下载](https://downloader.cursor.sh/builds/240402rq154jw46/windows/nsis/x64) |
| 0.31.1 | [下载](https://downloader.cursor.sh/builds/240402pkwfm2ps6/windows/nsis/x64) |
| 0.31.0 | [下载](https://downloader.cursor.sh/builds/2404018j7z0xv2g/windows/nsis/x64) |
| 0.30.5 | [下载](https://downloader.cursor.sh/builds/240327tmd2ozdc7/windows/nsis/x64) |
| 0.30.4 | [下载](https://downloader.cursor.sh/builds/240325dezy8ziab/windows/nsis/x64) |
| 0.30.3 | [下载](https://downloader.cursor.sh/builds/2403229gtuhto9g/windows/nsis/x64) |
| 0.30.2 | [下载](https://downloader.cursor.sh/builds/240322gzqjm3p0d/windows/nsis/x64) |
| 0.30.1 | [下载](https://downloader.cursor.sh/builds/2403212w1ejubt8/windows/nsis/x64) |
| 0.30.0 | [下载](https://downloader.cursor.sh/builds/240320tpx86e7hk/windows/nsis/x64) |
| 0.29.1 | [下载](https://downloader.cursor.sh/builds/2403027twmz0d1t/windows/nsis/x64) |
| 0.29.0 | [下载](https://downloader.cursor.sh/builds/240301kpqvacw2h/windows/nsis/x64) |
| 0.28.1 | [下载](https://downloader.cursor.sh/builds/240226tstim4evd/windows/nsis/x64) |
| 0.28.0 | [下载](https://downloader.cursor.sh/builds/240224g2d7jazcq/windows/nsis/x64) |
| 0.27.4 | [下载](https://downloader.cursor.sh/builds/240219qdbagglqz/windows/nsis/x64) |
| 0.27.3 | [下载](https://downloader.cursor.sh/builds/240218dxhc6y8os/windows/nsis/x64) |
| 0.27.2 | [下载](https://downloader.cursor.sh/builds/240216kkzl9nhxi/windows/nsis/x64) |
| 0.27.1 | [下载](https://downloader.cursor.sh/builds/240215l4ooehnyl/windows/nsis/x64) |
| 0.27.0 | [下载](https://downloader.cursor.sh/builds/240215at6ewkd59/windows/nsis/x64) |
| 0.26.2 | [下载](https://downloader.cursor.sh/builds/240212o6r9qxtcg/windows/nsis/x64) |
| 0.26.1 | [下载](https://downloader.cursor.sh/builds/2402107t904hing/windows/nsis/x64) |
| 0.26.0 | [下载](https://downloader.cursor.sh/builds/240210k8is5xr6v/windows/nsis/x64) |
| 0.25.3 | [下载](https://downloader.cursor.sh/builds/240207aacboj1k8/windows/nsis/x64) |
| 0.25.2 | [下载](https://downloader.cursor.sh/builds/240206p3708uc9z/windows/nsis/x64) |
| 0.25.1 | [下载](https://downloader.cursor.sh/builds/2402033t030rprh/windows/nsis/x64) |
| 0.25.0 | [下载](https://downloader.cursor.sh/builds/240203kh86t91q8/windows/nsis/x64) |
| 0.24.4 | [下载](https://downloader.cursor.sh/builds/240129iecm3e33w/windows/nsis/x64) |
| 0.24.3 | [下载](https://downloader.cursor.sh/builds/2401289dx79qsc0/windows/nsis/x64) |
| 0.24.1 | [下载](https://downloader.cursor.sh/builds/240127cad17436d/windows/nsis/x64) |
| 0.24.0 | [下载](https://downloader.cursor.sh/builds/240126wp9irhmza/windows/nsis/x64) |
| 0.23.9 | [下载](https://downloader.cursor.sh/builds/240124dsmraeml3/windows/nsis/x64) |
| 0.23.8 | [下载](https://downloader.cursor.sh/builds/240123fnn1hj1fg/windows/nsis/x64) |
| 0.23.7 | [下载](https://downloader.cursor.sh/builds/240123xsfe7ywcv/windows/nsis/x64) |
| 0.23.6 | [下载](https://downloader.cursor.sh/builds/240121m1740elox/windows/nsis/x64) |
| 0.23.5 | [下载](https://downloader.cursor.sh/builds/2401215utj6tx6q/windows/nsis/x64) |
| 0.23.4 | [下载](https://downloader.cursor.sh/builds/240121f4qy6ba2y/windows/nsis/x64) |
| 0.23.3 | [下载](https://downloader.cursor.sh/builds/2401201und3ytom/windows/nsis/x64) |
| 0.23.2 | [下载](https://downloader.cursor.sh/builds/240120an2k2hf1i/windows/nsis/x64) |
| 0.23.1 | [下载](https://downloader.cursor.sh/builds/240119fgzxwudn9/windows/nsis/x64) |
| 0.22.2 | [下载](https://downloader.cursor.sh/builds/24011721vsch1l1/windows/nsis/x64) |
| 0.22.1 | [下载](https://downloader.cursor.sh/builds/2401083eyk8kmzc/windows/nsis/x64) |
| 0.22.0 | [下载](https://downloader.cursor.sh/builds/240107qk62kvva3/windows/nsis/x64) |
| 0.21.1 | [下载](https://downloader.cursor.sh/builds/231230h0vi6srww/windows/nsis/x64) |
| 0.21.0 | [下载](https://downloader.cursor.sh/builds/231229ezidnxiu3/windows/nsis/x64) |
| 0.20.2 | [下载](https://downloader.cursor.sh/builds/231219aksf83aad/windows/nsis/x64) |
| 0.20.1 | [下载](https://downloader.cursor.sh/builds/231218ywfaxax09/windows/nsis/x64) |
| 0.20.0 | [下载](https://downloader.cursor.sh/builds/231216nsyfew5j1/windows/nsis/x64) |
| 0.19.1 | [下载](https://downloader.cursor.sh/builds/2312156z2ric57n/windows/nsis/x64) |
| 0.19.0 | [下载](https://downloader.cursor.sh/builds/231214per9qal2p/windows/nsis/x64) |
| 0.18.8 | [下载](https://downloader.cursor.sh/builds/2312098ffjr3ign/windows/nsis/x64) |
| 0.18.7 | [下载](https://downloader.cursor.sh/builds/23120880aolip2i/windows/nsis/x64) |
| 0.18.6 | [下载](https://downloader.cursor.sh/builds/231207ueqazwde8/windows/nsis/x64) |
| 0.18.5 | [下载](https://downloader.cursor.sh/builds/231206jzy2n2sbi/windows/nsis/x64) |
| 0.18.4 | [下载](https://downloader.cursor.sh/builds/2312033zjv5fqai/windows/nsis/x64) |
| 0.18.3 | [下载](https://downloader.cursor.sh/builds/231203k2vnkxq2m/windows/nsis/x64) |
| 0.18.1 | [下载](https://downloader.cursor.sh/builds/23120176kaer07t/windows/nsis/x64) |
| 0.17.0 | [下载](https://downloader.cursor.sh/builds/231127p7iyxn8rg/windows/nsis/x64) |
| 0.16.0 | [下载](https://downloader.cursor.sh/builds/231116rek2xuq6a/windows/nsis/x64) |
| 0.15.5 | [下载](https://downloader.cursor.sh/builds/231115a5mv63u9f/windows/nsis/x64) |
| 0.15.4 | [下载](https://downloader.cursor.sh/builds/23111469e1i3xyi/windows/nsis/x64) |
| 0.15.3 | [下载](https://downloader.cursor.sh/builds/231113b0yv3uqem/windows/nsis/x64) |
| 0.15.2 | [下载](https://downloader.cursor.sh/builds/231113ah0kuf3pf/windows/nsis/x64) |
| 0.15.1 | [下载](https://downloader.cursor.sh/builds/231111yanyyovap/windows/nsis/x64) |
| 0.15.0 | [下载](https://downloader.cursor.sh/builds/231110mdkomczmw/windows/nsis/x64) |
| 0.14.1 | [下载](https://downloader.cursor.sh/builds/231109xitrgihlk/windows/nsis/x64) |
| 0.14.0 | [下载](https://downloader.cursor.sh/builds/231102m6tuamwbx/windows/nsis/x64) |
| 0.13.4 | [下载](https://downloader.cursor.sh/builds/231029rso7pso8l/windows/nsis/x64) |
| 0.13.3 | [下载](https://downloader.cursor.sh/builds/231025uihnjkh9v/windows/nsis/x64) |
| 0.13.2 | [下载](https://downloader.cursor.sh/builds/231024w4iv7xlm6/windows/nsis/x64) |
| 0.13.1 | [下载](https://downloader.cursor.sh/builds/231022f3j0ubckv/windows/nsis/x64) |
| 0.13.0 | [下载](https://downloader.cursor.sh/builds/231022ptw6i4j42/windows/nsis/x64) |
| 0.12.3 | [下载](https://downloader.cursor.sh/builds/231008c5ursm0oj/windows/nsis/x64) |
</details>
## ARM64
<details>
<summary style="font-size:1.2em">📱 Windows ARM64 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
| 0.45.11 | [下载](https://downloader.cursor.sh/builds/250207y6nbaw5qc/windows/nsis/arm64) |
| 0.45.10 | [下载](https://downloader.cursor.sh/builds/250205buadkzpea/windows/nsis/arm64) |
| 0.45.9 | [下载](https://downloader.cursor.sh/builds/250202tgstl42dt/windows/nsis/arm64) |
| 0.45.8 | [下载](https://downloader.cursor.sh/builds/250201b44xw1x2k/windows/nsis/arm64) |
| 0.45.7 | [下载](https://downloader.cursor.sh/builds/250130nr6eorv84/windows/nsis/arm64) |
| 0.45.6 | [下载](https://downloader.cursor.sh/builds/25013021lv9say3/windows/nsis/arm64) |
| 0.45.5 | [下载](https://downloader.cursor.sh/builds/250128loaeyulq8/windows/nsis/arm64) |
| 0.45.4 | [下载](https://downloader.cursor.sh/builds/250126vgr3vztvj/windows/nsis/arm64) |
| 0.45.3 | [下载](https://downloader.cursor.sh/builds/250124b0rcj0qql/windows/nsis/arm64) |
| 0.45.2 | [下载](https://downloader.cursor.sh/builds/250123mhituoa6o/windows/nsis/arm64) |
| 0.45.1 | [下载](https://downloader.cursor.sh/builds/2501213ljml5byg/windows/nsis/arm64) |
| 0.45.0 | [下载](https://downloader.cursor.sh/builds/250120dh9ezx9pg/windows/nsis/arm64) |
| 0.44.11 | [下载](https://downloader.cursor.sh/builds/250103fqxdt5u9z/windows/nsis/arm64) |
| 0.44.10 | [下载](https://downloader.cursor.sh/builds/250102ys80vtnud/windows/nsis/arm64) |
| 0.44.9 | [下载](https://downloader.cursor.sh/builds/2412268nc6pfzgo/windows/nsis/arm64) |
| 0.44.8 | [下载](https://downloader.cursor.sh/builds/241222ooktny8mh/windows/nsis/arm64) |
| 0.44.7 | [下载](https://downloader.cursor.sh/builds/2412219nhracv01/windows/nsis/arm64) |
| 0.44.6 | [下载](https://downloader.cursor.sh/builds/2412214pmryneua/windows/nsis/arm64) |
| 0.44.5 | [下载](https://downloader.cursor.sh/builds/241220s3ux0e1tv/windows/nsis/arm64) |
| 0.44.4 | [下载](https://downloader.cursor.sh/builds/241219117fcvexy/windows/nsis/arm64) |
| 0.44.3 | [下载](https://downloader.cursor.sh/builds/241218sybfbogmq/windows/nsis/arm64) |
| 0.44.2 | [下载](https://downloader.cursor.sh/builds/241218ntls52u8v/windows/nsis/arm64) |
| 0.44.0 | [下载](https://downloader.cursor.sh/builds/2412187f9v0nffu/windows/nsis/arm64) |
| 0.43.6 | [下载](https://downloader.cursor.sh/builds/241206z7j6me2e2/windows/nsis/arm64) |
| 0.43.5 | [下载](https://downloader.cursor.sh/builds/241127pdg4cnbu2/windows/nsis/arm64) |
| 0.43.4 | [下载](https://downloader.cursor.sh/builds/241126w13goyvrs/windows/nsis/arm64) |
| 0.43.3 | [下载](https://downloader.cursor.sh/builds/2411246yqzx1jmm/windows/nsis/arm64) |
| 0.43.1 | [下载](https://downloader.cursor.sh/builds/241124gsiwb66nc/windows/nsis/arm64) |
| 0.42.5 | [下载](https://downloader.cursor.sh/builds/24111460bf2loz1/windows/nsis/arm64) |
| 0.42.4 | [下载](https://downloader.cursor.sh/builds/2410291z3bdg1dy/windows/nsis/arm64) |
| 0.42.3 | [下载](https://downloader.cursor.sh/builds/241016kxu9umuir/windows/nsis/arm64) |
| 0.42.2 | [下载](https://downloader.cursor.sh/builds/2410127mj66lvaq/windows/nsis/arm64) |
| 0.42.1 | [下载](https://downloader.cursor.sh/builds/241011i66p9fuvm/windows/nsis/arm64) |
| 0.42.0 | [下载](https://downloader.cursor.sh/builds/241009fij7nohn5/windows/nsis/arm64) |
| 0.41.3 | [下载](https://downloader.cursor.sh/builds/240925fkhcqg263/windows/nsis/arm64) |
| 0.41.2 | [下载](https://downloader.cursor.sh/builds/240921llnho65ov/windows/nsis/arm64) |
| 0.41.1 | [下载](https://downloader.cursor.sh/builds/2409189xe3envg5/windows/nsis/arm64) |
| 0.40.4 | [下载](https://downloader.cursor.sh/builds/2409052yfcjagw2/windows/nsis/arm64) |
| 0.40.3 | [下载](https://downloader.cursor.sh/builds/240829epqamqp7h/windows/nsis/arm64) |
| 0.40.2 | [下载](https://downloader.cursor.sh/builds/240828c021k3aib/windows/nsis/arm64) |
| 0.40.1 | [下载](https://downloader.cursor.sh/builds/2408245thnycuzj/windows/nsis/arm64) |
| 0.40.0 | [下载](https://downloader.cursor.sh/builds/24082202sreugb2/windows/nsis/arm64) |
| 0.39.6 | [下载](https://downloader.cursor.sh/builds/240819ih4ta2fye/windows/nsis/arm64) |
| 0.39.5 | [下载](https://downloader.cursor.sh/builds/240814y9rhzmu7h/windows/nsis/arm64) |
| 0.39.4 | [下载](https://downloader.cursor.sh/builds/240810elmeg3seq/windows/nsis/arm64) |
| 0.39.3 | [下载](https://downloader.cursor.sh/builds/2408092hoyaxt9m/windows/nsis/arm64) |
| 0.39.2 | [下载](https://downloader.cursor.sh/builds/240808phaxh4b5r/windows/nsis/arm64) |
| 0.39.1 | [下载](https://downloader.cursor.sh/builds/240807g919tr4ly/windows/nsis/arm64) |
| 0.39.0 | [下载](https://downloader.cursor.sh/builds/240802cdixtv9a6/windows/nsis/arm64) |
| 0.38.1 | [下载](https://downloader.cursor.sh/builds/240725f0ti25os7/windows/nsis/arm64) |
| 0.38.0 | [下载](https://downloader.cursor.sh/builds/240723790oxe4a2/windows/nsis/arm64) |
| 0.37.1 | [下载](https://downloader.cursor.sh/builds/240714yrr3gmv3k/windows/nsis/arm64) |
| 0.36.2 | [下载](https://downloader.cursor.sh/builds/2407077n6pzboby/windows/nsis/arm64) |
| 0.36.1 | [下载](https://downloader.cursor.sh/builds/240706uekt2eaft/windows/nsis/arm64) |
| 0.36.0 | [下载](https://downloader.cursor.sh/builds/240703xqkjv5aqa/windows/nsis/arm64) |
| 0.35.1 | [下载](https://downloader.cursor.sh/builds/240621pc2f7rl8a/windows/nsis/arm64) |
| 0.35.0 | [下载](https://downloader.cursor.sh/builds/240608cv11mfsjl/windows/nsis/arm64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240606kgzq24cfb/windows/nsis/arm64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240605r495newcf/windows/nsis/arm64) |
| 0.34.5 | [下载](https://downloader.cursor.sh/builds/240602rq6xovt3a/windows/nsis/arm64) |
| 0.34.4 | [下载](https://downloader.cursor.sh/builds/2406014h0rgjghe/windows/nsis/arm64) |
| 0.34.3 | [下载](https://downloader.cursor.sh/builds/240529baisuyd2e/windows/nsis/arm64) |
| 0.34.2 | [下载](https://downloader.cursor.sh/builds/240528whh1qyo9h/windows/nsis/arm64) |
| 0.34.1 | [下载](https://downloader.cursor.sh/builds/24052838ygfselt/windows/nsis/arm64) |
| 0.34.0 | [下载](https://downloader.cursor.sh/builds/240527xus72jmkj/windows/nsis/arm64) |
| 0.33.4 | [下载](https://downloader.cursor.sh/builds/240511kb8wt1tms/windows/nsis/arm64) |
| 0.33.3 | [下载](https://downloader.cursor.sh/builds/2405103lx8342ta/windows/nsis/arm64) |
| 0.33.2 | [下载](https://downloader.cursor.sh/builds/240510dwmw395qe/windows/nsis/arm64) |
| 0.33.1 | [下载](https://downloader.cursor.sh/builds/2405039a9h2fqc9/windows/nsis/arm64) |
| 0.33.0 | [下载](https://downloader.cursor.sh/builds/240503hyjsnhazo/windows/nsis/arm64) |
| 0.32.8 | [下载](https://downloader.cursor.sh/builds/240428d499o6zja/windows/nsis/arm64) |
| 0.32.7 | [下载](https://downloader.cursor.sh/builds/240427w5guozr0l/windows/nsis/arm64) |
| 0.32.2 | [下载](https://downloader.cursor.sh/builds/240417ab4wag7sx/windows/nsis/arm64) |
| 0.32.1 | [下载](https://downloader.cursor.sh/builds/2404152czor73fk/windows/nsis/arm64) |
| 0.32.0 | [下载](https://downloader.cursor.sh/builds/240412ugli06ue0/windows/nsis/arm64) |
| 0.31.3 | [下载](https://downloader.cursor.sh/builds/240402rq154jw46/windows/nsis/arm64) |
| 0.31.1 | [下载](https://downloader.cursor.sh/builds/240402pkwfm2ps6/windows/nsis/arm64) |
| 0.31.0 | [下载](https://downloader.cursor.sh/builds/2404018j7z0xv2g/windows/nsis/arm64) |
| 0.30.5 | [下载](https://downloader.cursor.sh/builds/240327tmd2ozdc7/windows/nsis/arm64) |
| 0.30.4 | [下载](https://downloader.cursor.sh/builds/240325dezy8ziab/windows/nsis/arm64) |
| 0.30.3 | [下载](https://downloader.cursor.sh/builds/2403229gtuhto9g/windows/nsis/arm64) |
| 0.30.2 | [下载](https://downloader.cursor.sh/builds/240322gzqjm3p0d/windows/nsis/arm64) |
| 0.30.1 | [下载](https://downloader.cursor.sh/builds/2403212w1ejubt8/windows/nsis/arm64) |
| 0.30.0 | [下载](https://downloader.cursor.sh/builds/240320tpx86e7hk/windows/nsis/arm64) |
| 0.29.1 | [下载](https://downloader.cursor.sh/builds/2403027twmz0d1t/windows/nsis/arm64) |
| 0.29.0 | [下载](https://downloader.cursor.sh/builds/240301kpqvacw2h/windows/nsis/arm64) |
| 0.28.1 | [下载](https://downloader.cursor.sh/builds/240226tstim4evd/windows/nsis/arm64) |
| 0.28.0 | [下载](https://downloader.cursor.sh/builds/240224g2d7jazcq/windows/nsis/arm64) |
| 0.27.4 | [下载](https://downloader.cursor.sh/builds/240219qdbagglqz/windows/nsis/arm64) |
| 0.27.3 | [下载](https://downloader.cursor.sh/builds/240218dxhc6y8os/windows/nsis/arm64) |
| 0.27.2 | [下载](https://downloader.cursor.sh/builds/240216kkzl9nhxi/windows/nsis/arm64) |
| 0.27.1 | [下载](https://downloader.cursor.sh/builds/240215l4ooehnyl/windows/nsis/arm64) |
| 0.27.0 | [下载](https://downloader.cursor.sh/builds/240215at6ewkd59/windows/nsis/arm64) |
| 0.26.2 | [下载](https://downloader.cursor.sh/builds/240212o6r9qxtcg/windows/nsis/arm64) |
| 0.26.1 | [下载](https://downloader.cursor.sh/builds/2402107t904hing/windows/nsis/arm64) |
| 0.26.0 | [下载](https://downloader.cursor.sh/builds/240210k8is5xr6v/windows/nsis/arm64) |
| 0.25.3 | [下载](https://downloader.cursor.sh/builds/240207aacboj1k8/windows/nsis/arm64) |
| 0.25.2 | [下载](https://downloader.cursor.sh/builds/240206p3708uc9z/windows/nsis/arm64) |
| 0.25.1 | [下载](https://downloader.cursor.sh/builds/2402033t030rprh/windows/nsis/arm64) |
| 0.25.0 | [下载](https://downloader.cursor.sh/builds/240203kh86t91q8/windows/nsis/arm64) |
| 0.24.4 | [下载](https://downloader.cursor.sh/builds/240129iecm3e33w/windows/nsis/arm64) |
| 0.24.3 | [下载](https://downloader.cursor.sh/builds/2401289dx79qsc0/windows/nsis/arm64) |
| 0.24.1 | [下载](https://downloader.cursor.sh/builds/240127cad17436d/windows/nsis/arm64) |
| 0.24.0 | [下载](https://downloader.cursor.sh/builds/240126wp9irhmza/windows/nsis/arm64) |
| 0.23.9 | [下载](https://downloader.cursor.sh/builds/240124dsmraeml3/windows/nsis/arm64) |
| 0.23.8 | [下载](https://downloader.cursor.sh/builds/240123fnn1hj1fg/windows/nsis/arm64) |
| 0.23.7 | [下载](https://downloader.cursor.sh/builds/240123xsfe7ywcv/windows/nsis/arm64) |
| 0.23.6 | [下载](https://downloader.cursor.sh/builds/240121m1740elox/windows/nsis/arm64) |
| 0.23.5 | [下载](https://downloader.cursor.sh/builds/2401215utj6tx6q/windows/nsis/arm64) |
| 0.23.4 | [下载](https://downloader.cursor.sh/builds/240121f4qy6ba2y/windows/nsis/arm64) |
| 0.23.3 | [下载](https://downloader.cursor.sh/builds/2401201und3ytom/windows/nsis/arm64) |
| 0.23.2 | [下载](https://downloader.cursor.sh/builds/240120an2k2hf1i/windows/nsis/arm64) |
| 0.23.1 | [下载](https://downloader.cursor.sh/builds/240119fgzxwudn9/windows/nsis/arm64) |
| 0.22.2 | [下载](https://downloader.cursor.sh/builds/24011721vsch1l1/windows/nsis/arm64) |
| 0.22.1 | [下载](https://downloader.cursor.sh/builds/2401083eyk8kmzc/windows/nsis/arm64) |
| 0.22.0 | [下载](https://downloader.cursor.sh/builds/240107qk62kvva3/windows/nsis/arm64) |
| 0.21.1 | [下载](https://downloader.cursor.sh/builds/231230h0vi6srww/windows/nsis/arm64) |
| 0.21.0 | [下载](https://downloader.cursor.sh/builds/231229ezidnxiu3/windows/nsis/arm64) |
| 0.20.2 | [下载](https://downloader.cursor.sh/builds/231219aksf83aad/windows/nsis/arm64) |
| 0.20.1 | [下载](https://downloader.cursor.sh/builds/231218ywfaxax09/windows/nsis/arm64) |
| 0.20.0 | [下载](https://downloader.cursor.sh/builds/231216nsyfew5j1/windows/nsis/arm64) |
| 0.19.1 | [下载](https://downloader.cursor.sh/builds/2312156z2ric57n/windows/nsis/arm64) |
| 0.19.0 | [下载](https://downloader.cursor.sh/builds/231214per9qal2p/windows/nsis/arm64) |
| 0.18.8 | [下载](https://downloader.cursor.sh/builds/2312098ffjr3ign/windows/nsis/arm64) |
| 0.18.7 | [下载](https://downloader.cursor.sh/builds/23120880aolip2i/windows/nsis/arm64) |
| 0.18.6 | [下载](https://downloader.cursor.sh/builds/231207ueqazwde8/windows/nsis/arm64) |
| 0.18.5 | [下载](https://downloader.cursor.sh/builds/231206jzy2n2sbi/windows/nsis/arm64) |
| 0.18.4 | [下载](https://downloader.cursor.sh/builds/2312033zjv5fqai/windows/nsis/arm64) |
| 0.18.3 | [下载](https://downloader.cursor.sh/builds/231203k2vnkxq2m/windows/nsis/arm64) |
| 0.18.1 | [下载](https://downloader.cursor.sh/builds/23120176kaer07t/windows/nsis/arm64) |
| 0.17.0 | [下载](https://downloader.cursor.sh/builds/231127p7iyxn8rg/windows/nsis/arm64) |
| 0.16.0 | [下载](https://downloader.cursor.sh/builds/231116rek2xuq6a/windows/nsis/arm64) |
| 0.15.5 | [下载](https://downloader.cursor.sh/builds/231115a5mv63u9f/windows/nsis/arm64) |
| 0.15.4 | [下载](https://downloader.cursor.sh/builds/23111469e1i3xyi/windows/nsis/arm64) |
| 0.15.3 | [下载](https://downloader.cursor.sh/builds/231113b0yv3uqem/windows/nsis/arm64) |
| 0.15.2 | [下载](https://downloader.cursor.sh/builds/231113ah0kuf3pf/windows/nsis/arm64) |
| 0.15.1 | [下载](https://downloader.cursor.sh/builds/231111yanyyovap/windows/nsis/arm64) |
| 0.15.0 | [下载](https://downloader.cursor.sh/builds/231110mdkomczmw/windows/nsis/arm64) |
| 0.14.1 | [下载](https://downloader.cursor.sh/builds/231109xitrgihlk/windows/nsis/arm64) |
| 0.14.0 | [下载](https://downloader.cursor.sh/builds/231102m6tuamwbx/windows/nsis/arm64) |
| 0.13.4 | [下载](https://downloader.cursor.sh/builds/231029rso7pso8l/windows/nsis/arm64) |
| 0.13.3 | [下载](https://downloader.cursor.sh/builds/231025uihnjkh9v/windows/nsis/arm64) |
| 0.13.2 | [下载](https://downloader.cursor.sh/builds/231024w4iv7xlm6/windows/nsis/arm64) |
| 0.13.1 | [下载](https://downloader.cursor.sh/builds/231022f3j0ubckv/windows/nsis/arm64) |
| 0.13.0 | [下载](https://downloader.cursor.sh/builds/231022ptw6i4j42/windows/nsis/arm64) |
| 0.12.3 | [下载](https://downloader.cursor.sh/builds/231008c5ursm0oj/windows/nsis/arm64) |
</details>
# 🍎 macOS
## Universal
<details>
<summary style="font-size:1.2em">🎯 macOS Universal 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
| 0.45.11 | [下载](https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/universal) |
| 0.45.10 | [下载](https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/universal) |
| 0.45.9 | [下载](https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/universal) |
| 0.45.8 | [下载](https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/universal) |
| 0.45.7 | [下载](https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/universal) |
| 0.45.6 | [下载](https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/universal) |
| 0.45.5 | [下载](https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/universal) |
| 0.45.4 | [下载](https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/universal) |
| 0.45.3 | [下载](https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/universal) |
| 0.45.2 | [下载](https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/universal) |
| 0.45.1 | [下载](https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/universal) |
| 0.45.0 | [下载](https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/universal) |
| 0.44.11 | [下载](https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/universal) |
| 0.44.10 | [下载](https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/universal) |
| 0.44.9 | [下载](https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/universal) |
| 0.44.8 | [下载](https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/universal) |
| 0.44.7 | [下载](https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/universal) |
| 0.44.6 | [下载](https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/universal) |
| 0.44.5 | [下载](https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/universal) |
| 0.44.4 | [下载](https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/universal) |
| 0.44.3 | [下载](https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/universal) |
| 0.44.2 | [下载](https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/universal) |
| 0.44.0 | [下载](https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/universal) |
| 0.43.6 | [下载](https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/universal) |
| 0.43.5 | [下载](https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/universal) |
| 0.43.4 | [下载](https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/universal) |
| 0.43.3 | [下载](https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/universal) |
| 0.43.1 | [下载](https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/universal) |
| 0.42.5 | [下载](https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/universal) |
| 0.42.4 | [下载](https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/universal) |
| 0.42.3 | [下载](https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/universal) |
| 0.42.2 | [下载](https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/universal) |
| 0.42.1 | [下载](https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/universal) |
| 0.42.0 | [下载](https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/universal) |
| 0.41.3 | [下载](https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/universal) |
| 0.41.2 | [下载](https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/universal) |
| 0.41.1 | [下载](https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/universal) |
| 0.40.4 | [下载](https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/universal) |
| 0.40.3 | [下载](https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/universal) |
| 0.40.2 | [下载](https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/universal) |
| 0.40.1 | [下载](https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/universal) |
| 0.40.0 | [下载](https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/universal) |
| 0.39.6 | [下载](https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/universal) |
| 0.39.5 | [下载](https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/universal) |
| 0.39.4 | [下载](https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/universal) |
| 0.39.3 | [下载](https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/universal) |
| 0.39.2 | [下载](https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/universal) |
| 0.39.1 | [下载](https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/universal) |
| 0.39.0 | [下载](https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/universal) |
| 0.38.1 | [下载](https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/universal) |
| 0.38.0 | [下载](https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/universal) |
| 0.37.1 | [下载](https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/universal) |
| 0.36.2 | [下载](https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/universal) |
| 0.36.1 | [下载](https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/universal) |
| 0.36.0 | [下载](https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/universal) |
| 0.35.1 | [下载](https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/universal) |
| 0.35.0 | [下载](https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/universal) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/universal) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/universal) |
| 0.34.5 | [下载](https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/universal) |
| 0.34.4 | [下载](https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/universal) |
| 0.34.3 | [下载](https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/universal) |
| 0.34.2 | [下载](https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/universal) |
| 0.34.1 | [下载](https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/universal) |
| 0.34.0 | [下载](https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/universal) |
| 0.33.4 | [下载](https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/universal) |
| 0.33.3 | [下载](https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/universal) |
| 0.33.2 | [下载](https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/universal) |
| 0.33.1 | [下载](https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/universal) |
| 0.33.0 | [下载](https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/universal) |
| 0.32.8 | [下载](https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/universal) |
| 0.32.7 | [下载](https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/universal) |
| 0.32.2 | [下载](https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/universal) |
| 0.32.1 | [下载](https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/universal) |
| 0.32.0 | [下载](https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/universal) |
| 0.31.3 | [下载](https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/universal) |
| 0.31.1 | [下载](https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/universal) |
| 0.31.0 | [下载](https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/universal) |
| 0.30.5 | [下载](https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/universal) |
| 0.30.4 | [下载](https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/universal) |
| 0.30.3 | [下载](https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/universal) |
| 0.30.2 | [下载](https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/universal) |
| 0.30.1 | [下载](https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/universal) |
| 0.30.0 | [下载](https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/universal) |
| 0.29.1 | [下载](https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/universal) |
| 0.29.0 | [下载](https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/universal) |
| 0.28.1 | [下载](https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/universal) |
| 0.28.0 | [下载](https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/universal) |
| 0.27.4 | [下载](https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/universal) |
| 0.27.3 | [下载](https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/universal) |
| 0.27.2 | [下载](https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/universal) |
| 0.27.1 | [下载](https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/universal) |
| 0.27.0 | [下载](https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/universal) |
| 0.26.2 | [下载](https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/universal) |
| 0.26.1 | [下载](https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/universal) |
| 0.26.0 | [下载](https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/universal) |
| 0.25.3 | [下载](https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/universal) |
| 0.25.2 | [下载](https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/universal) |
| 0.25.1 | [下载](https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/universal) |
| 0.25.0 | [下载](https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/universal) |
| 0.24.4 | [下载](https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/universal) |
| 0.24.3 | [下载](https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/universal) |
| 0.24.1 | [下载](https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/universal) |
| 0.24.0 | [下载](https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/universal) |
| 0.23.9 | [下载](https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/universal) |
| 0.23.8 | [下载](https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/universal) |
| 0.23.7 | [下载](https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/universal) |
| 0.23.6 | [下载](https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/universal) |
| 0.23.5 | [下载](https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/universal) |
| 0.23.4 | [下载](https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/universal) |
| 0.23.3 | [下载](https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/universal) |
| 0.23.2 | [下载](https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/universal) |
| 0.23.1 | [下载](https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/universal) |
| 0.22.2 | [下载](https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/universal) |
| 0.22.1 | [下载](https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/universal) |
| 0.22.0 | [下载](https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/universal) |
| 0.21.1 | [下载](https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/universal) |
| 0.21.0 | [下载](https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/universal) |
| 0.20.2 | [下载](https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/universal) |
| 0.20.1 | [下载](https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/universal) |
| 0.20.0 | [下载](https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/universal) |
| 0.19.1 | [下载](https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/universal) |
| 0.19.0 | [下载](https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/universal) |
| 0.18.8 | [下载](https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/universal) |
| 0.18.7 | [下载](https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/universal) |
| 0.18.6 | [下载](https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/universal) |
| 0.18.5 | [下载](https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/universal) |
| 0.18.4 | [下载](https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/universal) |
| 0.18.3 | [下载](https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/universal) |
| 0.18.1 | [下载](https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/universal) |
| 0.17.0 | [下载](https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/universal) |
| 0.16.0 | [下载](https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/universal) |
| 0.15.5 | [下载](https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/universal) |
| 0.15.4 | [下载](https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/universal) |
| 0.15.3 | [下载](https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/universal) |
| 0.15.2 | [下载](https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/universal) |
| 0.15.1 | [下载](https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/universal) |
| 0.15.0 | [下载](https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/universal) |
| 0.14.1 | [下载](https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/universal) |
| 0.14.0 | [下载](https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/universal) |
| 0.13.4 | [下载](https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/universal) |
| 0.13.3 | [下载](https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/universal) |
| 0.13.2 | [下载](https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/universal) |
| 0.13.1 | [下载](https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/universal) |
| 0.13.0 | [下载](https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/universal) |
| 0.12.3 | [下载](https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/universal) |
</details>
## ARM64
<details>
<summary style="font-size:1.2em">💪 macOS ARM64 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
| 0.45.11 | [下载](https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/arm64) |
| 0.45.10 | [下载](https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/arm64) |
| 0.45.9 | [下载](https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/arm64) |
| 0.45.8 | [下载](https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/arm64) |
| 0.45.7 | [下载](https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/arm64) |
| 0.45.6 | [下载](https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/arm64) |
| 0.45.5 | [下载](https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/arm64) |
| 0.45.4 | [下载](https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/arm64) |
| 0.45.3 | [下载](https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/arm64) |
| 0.45.2 | [下载](https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/arm64) |
| 0.45.1 | [下载](https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/arm64) |
| 0.45.0 | [下载](https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/arm64) |
| 0.44.11 | [下载](https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/arm64) |
| 0.44.10 | [下载](https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/arm64) |
| 0.44.9 | [下载](https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/arm64) |
| 0.44.8 | [下载](https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/arm64) |
| 0.44.7 | [下载](https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/arm64) |
| 0.44.6 | [下载](https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/arm64) |
| 0.44.5 | [下载](https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/arm64) |
| 0.44.4 | [下载](https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/arm64) |
| 0.44.3 | [下载](https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/arm64) |
| 0.44.2 | [下载](https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/arm64) |
| 0.44.0 | [下载](https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/arm64) |
| 0.43.6 | [下载](https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/arm64) |
| 0.43.5 | [下载](https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/arm64) |
| 0.43.4 | [下载](https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/arm64) |
| 0.43.3 | [下载](https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/arm64) |
| 0.43.1 | [下载](https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/arm64) |
| 0.42.5 | [下载](https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/arm64) |
| 0.42.4 | [下载](https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/arm64) |
| 0.42.3 | [下载](https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/arm64) |
| 0.42.2 | [下载](https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/arm64) |
| 0.42.1 | [下载](https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/arm64) |
| 0.42.0 | [下载](https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/arm64) |
| 0.41.3 | [下载](https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/arm64) |
| 0.41.2 | [下载](https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/arm64) |
| 0.41.1 | [下载](https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/arm64) |
| 0.40.4 | [下载](https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/arm64) |
| 0.40.3 | [下载](https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/arm64) |
| 0.40.2 | [下载](https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/arm64) |
| 0.40.1 | [下载](https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/arm64) |
| 0.40.0 | [下载](https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/arm64) |
| 0.39.6 | [下载](https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/arm64) |
| 0.39.5 | [下载](https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/arm64) |
| 0.39.4 | [下载](https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/arm64) |
| 0.39.3 | [下载](https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/arm64) |
| 0.39.2 | [下载](https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/arm64) |
| 0.39.1 | [下载](https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/arm64) |
| 0.39.0 | [下载](https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/arm64) |
| 0.38.1 | [下载](https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/arm64) |
| 0.38.0 | [下载](https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/arm64) |
| 0.37.1 | [下载](https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/arm64) |
| 0.36.2 | [下载](https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/arm64) |
| 0.36.1 | [下载](https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/arm64) |
| 0.36.0 | [下载](https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/arm64) |
| 0.35.1 | [下载](https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/arm64) |
| 0.35.0 | [下载](https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/arm64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/arm64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/arm64) |
| 0.34.5 | [下载](https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/arm64) |
| 0.34.4 | [下载](https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/arm64) |
| 0.34.3 | [下载](https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/arm64) |
| 0.34.2 | [下载](https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/arm64) |
| 0.34.1 | [下载](https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/arm64) |
| 0.34.0 | [下载](https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/arm64) |
| 0.33.4 | [下载](https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/arm64) |
| 0.33.3 | [下载](https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/arm64) |
| 0.33.2 | [下载](https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/arm64) |
| 0.33.1 | [下载](https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/arm64) |
| 0.33.0 | [下载](https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/arm64) |
| 0.32.8 | [下载](https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/arm64) |
| 0.32.7 | [下载](https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/arm64) |
| 0.32.2 | [下载](https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/arm64) |
| 0.32.1 | [下载](https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/arm64) |
| 0.32.0 | [下载](https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/arm64) |
| 0.31.3 | [下载](https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/arm64) |
| 0.31.1 | [下载](https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/arm64) |
| 0.31.0 | [下载](https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/arm64) |
| 0.30.5 | [下载](https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/arm64) |
| 0.30.4 | [下载](https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/arm64) |
| 0.30.3 | [下载](https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/arm64) |
| 0.30.2 | [下载](https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/arm64) |
| 0.30.1 | [下载](https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/arm64) |
| 0.30.0 | [下载](https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/arm64) |
| 0.29.1 | [下载](https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/arm64) |
| 0.29.0 | [下载](https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/arm64) |
| 0.28.1 | [下载](https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/arm64) |
| 0.28.0 | [下载](https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/arm64) |
| 0.27.4 | [下载](https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/arm64) |
| 0.27.3 | [下载](https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/arm64) |
| 0.27.2 | [下载](https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/arm64) |
| 0.27.1 | [下载](https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/arm64) |
| 0.27.0 | [下载](https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/arm64) |
| 0.26.2 | [下载](https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/arm64) |
| 0.26.1 | [下载](https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/arm64) |
| 0.26.0 | [下载](https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/arm64) |
| 0.25.3 | [下载](https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/arm64) |
| 0.25.2 | [下载](https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/arm64) |
| 0.25.1 | [下载](https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/arm64) |
| 0.25.0 | [下载](https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/arm64) |
| 0.24.4 | [下载](https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/arm64) |
| 0.24.3 | [下载](https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/arm64) |
| 0.24.1 | [下载](https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/arm64) |
| 0.24.0 | [下载](https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/arm64) |
| 0.23.9 | [下载](https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/arm64) |
| 0.23.8 | [下载](https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/arm64) |
| 0.23.7 | [下载](https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/arm64) |
| 0.23.6 | [下载](https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/arm64) |
| 0.23.5 | [下载](https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/arm64) |
| 0.23.4 | [下载](https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/arm64) |
| 0.23.3 | [下载](https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/arm64) |
| 0.23.2 | [下载](https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/arm64) |
| 0.23.1 | [下载](https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/arm64) |
| 0.22.2 | [下载](https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/arm64) |
| 0.22.1 | [下载](https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/arm64) |
| 0.22.0 | [下载](https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/arm64) |
| 0.21.1 | [下载](https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/arm64) |
| 0.21.0 | [下载](https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/arm64) |
| 0.20.2 | [下载](https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/arm64) |
| 0.20.1 | [下载](https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/arm64) |
| 0.20.0 | [下载](https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/arm64) |
| 0.19.1 | [下载](https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/arm64) |
| 0.19.0 | [下载](https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/arm64) |
| 0.18.8 | [下载](https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/arm64) |
| 0.18.7 | [下载](https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/arm64) |
| 0.18.6 | [下载](https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/arm64) |
| 0.18.5 | [下载](https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/arm64) |
| 0.18.4 | [下载](https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/arm64) |
| 0.18.3 | [下载](https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/arm64) |
| 0.18.1 | [下载](https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/arm64) |
| 0.17.0 | [下载](https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/arm64) |
| 0.16.0 | [下载](https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/arm64) |
| 0.15.5 | [下载](https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/arm64) |
| 0.15.4 | [下载](https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/arm64) |
| 0.15.3 | [下载](https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/arm64) |
| 0.15.2 | [下载](https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/arm64) |
| 0.15.1 | [下载](https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/arm64) |
| 0.15.0 | [下载](https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/arm64) |
| 0.14.1 | [下载](https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/arm64) |
| 0.14.0 | [下载](https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/arm64) |
| 0.13.4 | [下载](https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/arm64) |
| 0.13.3 | [下载](https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/arm64) |
| 0.13.2 | [下载](https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/arm64) |
| 0.13.1 | [下载](https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/arm64) |
| 0.13.0 | [下载](https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/arm64) |
| 0.12.3 | [下载](https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/arm64) |
</details>
## Intel
<details>
<summary style="font-size:1.2em">💻 macOS Intel 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
| 0.45.11 | [下载](https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/x64) |
| 0.45.10 | [下载](https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/x64) |
| 0.45.9 | [下载](https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/x64) |
| 0.45.8 | [下载](https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/x64) |
| 0.45.7 | [下载](https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/x64) |
| 0.45.6 | [下载](https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/x64) |
| 0.45.5 | [下载](https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/x64) |
| 0.45.4 | [下载](https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/x64) |
| 0.45.3 | [下载](https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/x64) |
| 0.45.2 | [下载](https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/x64) |
| 0.45.1 | [下载](https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/x64) |
| 0.45.0 | [下载](https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/x64) |
| 0.44.11 | [下载](https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/x64) |
| 0.44.10 | [下载](https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/x64) |
| 0.44.9 | [下载](https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/x64) |
| 0.44.8 | [下载](https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/x64) |
| 0.44.7 | [下载](https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/x64) |
| 0.44.6 | [下载](https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/x64) |
| 0.44.5 | [下载](https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/x64) |
| 0.44.4 | [下载](https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/x64) |
| 0.44.3 | [下载](https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/x64) |
| 0.44.2 | [下载](https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/x64) |
| 0.44.0 | [下载](https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/x64) |
| 0.43.6 | [下载](https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/x64) |
| 0.43.5 | [下载](https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/x64) |
| 0.43.4 | [下载](https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/x64) |
| 0.43.3 | [下载](https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/x64) |
| 0.43.1 | [下载](https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/x64) |
| 0.42.5 | [下载](https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/x64) |
| 0.42.4 | [下载](https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/x64) |
| 0.42.3 | [下载](https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/x64) |
| 0.42.2 | [下载](https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/x64) |
| 0.42.1 | [下载](https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/x64) |
| 0.42.0 | [下载](https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/x64) |
| 0.41.3 | [下载](https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/x64) |
| 0.41.2 | [下载](https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/x64) |
| 0.41.1 | [下载](https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/x64) |
| 0.40.4 | [下载](https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/x64) |
| 0.40.3 | [下载](https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/x64) |
| 0.40.2 | [下载](https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/x64) |
| 0.40.1 | [下载](https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/x64) |
| 0.40.0 | [下载](https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/x64) |
| 0.39.6 | [下载](https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/x64) |
| 0.39.5 | [下载](https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/x64) |
| 0.39.4 | [下载](https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/x64) |
| 0.39.3 | [下载](https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/x64) |
| 0.39.2 | [下载](https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/x64) |
| 0.39.1 | [下载](https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/x64) |
| 0.39.0 | [下载](https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/x64) |
| 0.38.1 | [下载](https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/x64) |
| 0.38.0 | [下载](https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/x64) |
| 0.37.1 | [下载](https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/x64) |
| 0.36.2 | [下载](https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/x64) |
| 0.36.1 | [下载](https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/x64) |
| 0.36.0 | [下载](https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/x64) |
| 0.35.1 | [下载](https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/x64) |
| 0.35.0 | [下载](https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/x64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/x64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/x64) |
| 0.34.5 | [下载](https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/x64) |
| 0.34.4 | [下载](https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/x64) |
| 0.34.3 | [下载](https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/x64) |
| 0.34.2 | [下载](https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/x64) |
| 0.34.1 | [下载](https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/x64) |
| 0.34.0 | [下载](https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/x64) |
| 0.33.4 | [下载](https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/x64) |
| 0.33.3 | [下载](https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/x64) |
| 0.33.2 | [下载](https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/x64) |
| 0.33.1 | [下载](https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/x64) |
| 0.33.0 | [下载](https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/x64) |
| 0.32.8 | [下载](https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/x64) |
| 0.32.7 | [下载](https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/x64) |
| 0.32.2 | [下载](https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/x64) |
| 0.32.1 | [下载](https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/x64) |
| 0.32.0 | [下载](https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/x64) |
| 0.31.3 | [下载](https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/x64) |
| 0.31.1 | [下载](https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/x64) |
| 0.31.0 | [下载](https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/x64) |
| 0.30.5 | [下载](https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/x64) |
| 0.30.4 | [下载](https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/x64) |
| 0.30.3 | [下载](https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/x64) |
| 0.30.2 | [下载](https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/x64) |
| 0.30.1 | [下载](https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/x64) |
| 0.30.0 | [下载](https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/x64) |
| 0.29.1 | [下载](https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/x64) |
| 0.29.0 | [下载](https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/x64) |
| 0.28.1 | [下载](https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/x64) |
| 0.28.0 | [下载](https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/x64) |
| 0.27.4 | [下载](https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/x64) |
| 0.27.3 | [下载](https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/x64) |
| 0.27.2 | [下载](https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/x64) |
| 0.27.1 | [下载](https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/x64) |
| 0.27.0 | [下载](https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/x64) |
| 0.26.2 | [下载](https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/x64) |
| 0.26.1 | [下载](https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/x64) |
| 0.26.0 | [下载](https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/x64) |
| 0.25.3 | [下载](https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/x64) |
| 0.25.2 | [下载](https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/x64) |
| 0.25.1 | [下载](https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/x64) |
| 0.25.0 | [下载](https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/x64) |
| 0.24.4 | [下载](https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/x64) |
| 0.24.3 | [下载](https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/x64) |
| 0.24.1 | [下载](https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/x64) |
| 0.24.0 | [下载](https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/x64) |
| 0.23.9 | [下载](https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/x64) |
| 0.23.8 | [下载](https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/x64) |
| 0.23.7 | [下载](https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/x64) |
| 0.23.6 | [下载](https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/x64) |
| 0.23.5 | [下载](https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/x64) |
| 0.23.4 | [下载](https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/x64) |
| 0.23.3 | [下载](https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/x64) |
| 0.23.2 | [下载](https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/x64) |
| 0.23.1 | [下载](https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/x64) |
| 0.22.2 | [下载](https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/x64) |
| 0.22.1 | [下载](https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/x64) |
| 0.22.0 | [下载](https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/x64) |
| 0.21.1 | [下载](https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/x64) |
| 0.21.0 | [下载](https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/x64) |
| 0.20.2 | [下载](https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/x64) |
| 0.20.1 | [下载](https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/x64) |
| 0.20.0 | [下载](https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/x64) |
| 0.19.1 | [下载](https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/x64) |
| 0.19.0 | [下载](https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/x64) |
| 0.18.8 | [下载](https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/x64) |
| 0.18.7 | [下载](https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/x64) |
| 0.18.6 | [下载](https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/x64) |
| 0.18.5 | [下载](https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/x64) |
| 0.18.4 | [下载](https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/x64) |
| 0.18.3 | [下载](https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/x64) |
| 0.18.1 | [下载](https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/x64) |
| 0.17.0 | [下载](https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/x64) |
| 0.16.0 | [下载](https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/x64) |
| 0.15.5 | [下载](https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/x64) |
| 0.15.4 | [下载](https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/x64) |
| 0.15.3 | [下载](https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/x64) |
| 0.15.2 | [下载](https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/x64) |
| 0.15.1 | [下载](https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/x64) |
| 0.15.0 | [下载](https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/x64) |
| 0.14.1 | [下载](https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/x64) |
| 0.14.0 | [下载](https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/x64) |
| 0.13.4 | [下载](https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/x64) |
| 0.13.3 | [下载](https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/x64) |
| 0.13.2 | [下载](https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/x64) |
| 0.13.1 | [下载](https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/x64) |
| 0.13.0 | [下载](https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/x64) |
| 0.12.3 | [下载](https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/x64) |
</details>
# 🐧 Linux
## x64
<details>
<summary style="font-size:1.2em">🎮 Linux x64 AppImage</summary>
| 版本 | 下载链接 |
|------|----------|
| 0.45.11 | [下载](https://downloader.cursor.sh/builds/250207y6nbaw5qc/linux/appImage/x64) |
| 0.45.10 | [下载](https://downloader.cursor.sh/builds/250205buadkzpea/linux/appImage/x64) |
| 0.45.9 | [下载](https://downloader.cursor.sh/builds/250202tgstl42dt/linux/appImage/x64) |
| 0.45.8 | [下载](https://downloader.cursor.sh/builds/250201b44xw1x2k/linux/appImage/x64) |
| 0.45.7 | [下载](https://downloader.cursor.sh/builds/250130nr6eorv84/linux/appImage/x64) |
| 0.45.6 | [下载](https://downloader.cursor.sh/builds/25013021lv9say3/linux/appImage/x64) |
| 0.45.5 | [下载](https://downloader.cursor.sh/builds/250128loaeyulq8/linux/appImage/x64) |
| 0.45.4 | [下载](https://downloader.cursor.sh/builds/250126vgr3vztvj/linux/appImage/x64) |
| 0.45.3 | [下载](https://downloader.cursor.sh/builds/250124b0rcj0qql/linux/appImage/x64) |
| 0.45.2 | [下载](https://downloader.cursor.sh/builds/250123mhituoa6o/linux/appImage/x64) |
| 0.45.1 | [下载](https://downloader.cursor.sh/builds/2501213ljml5byg/linux/appImage/x64) |
| 0.45.0 | [下载](https://downloader.cursor.sh/builds/250120dh9ezx9pg/linux/appImage/x64) |
| 0.44.11 | [下载](https://downloader.cursor.sh/builds/250103fqxdt5u9z/linux/appImage/x64) |
| 0.44.10 | [下载](https://downloader.cursor.sh/builds/250102ys80vtnud/linux/appImage/x64) |
| 0.44.9 | [下载](https://downloader.cursor.sh/builds/2412268nc6pfzgo/linux/appImage/x64) |
| 0.44.8 | [下载](https://downloader.cursor.sh/builds/241222ooktny8mh/linux/appImage/x64) |
| 0.44.7 | [下载](https://downloader.cursor.sh/builds/2412219nhracv01/linux/appImage/x64) |
| 0.44.6 | [下载](https://downloader.cursor.sh/builds/2412214pmryneua/linux/appImage/x64) |
| 0.44.5 | [下载](https://downloader.cursor.sh/builds/241220s3ux0e1tv/linux/appImage/x64) |
| 0.44.4 | [下载](https://downloader.cursor.sh/builds/241219117fcvexy/linux/appImage/x64) |
| 0.44.3 | [下载](https://downloader.cursor.sh/builds/241218sybfbogmq/linux/appImage/x64) |
| 0.44.2 | [下载](https://downloader.cursor.sh/builds/241218ntls52u8v/linux/appImage/x64) |
| 0.44.0 | [下载](https://downloader.cursor.sh/builds/2412187f9v0nffu/linux/appImage/x64) |
| 0.43.6 | [下载](https://downloader.cursor.sh/builds/241206z7j6me2e2/linux/appImage/x64) |
| 0.43.5 | [下载](https://downloader.cursor.sh/builds/241127pdg4cnbu2/linux/appImage/x64) |
| 0.43.4 | [下载](https://downloader.cursor.sh/builds/241126w13goyvrs/linux/appImage/x64) |
| 0.43.3 | [下载](https://downloader.cursor.sh/builds/2411246yqzx1jmm/linux/appImage/x64) |
| 0.43.1 | [下载](https://downloader.cursor.sh/builds/241124gsiwb66nc/linux/appImage/x64) |
| 0.42.5 | [下载](https://downloader.cursor.sh/builds/24111460bf2loz1/linux/appImage/x64) |
| 0.42.4 | [下载](https://downloader.cursor.sh/builds/2410291z3bdg1dy/linux/appImage/x64) |
| 0.42.3 | [下载](https://downloader.cursor.sh/builds/241016kxu9umuir/linux/appImage/x64) |
| 0.42.2 | [下载](https://downloader.cursor.sh/builds/2410127mj66lvaq/linux/appImage/x64) |
| 0.42.1 | [下载](https://downloader.cursor.sh/builds/241011i66p9fuvm/linux/appImage/x64) |
| 0.42.0 | [下载](https://downloader.cursor.sh/builds/241009fij7nohn5/linux/appImage/x64) |
| 0.41.3 | [下载](https://downloader.cursor.sh/builds/240925fkhcqg263/linux/appImage/x64) |
| 0.41.2 | [下载](https://downloader.cursor.sh/builds/240921llnho65ov/linux/appImage/x64) |
| 0.41.1 | [下载](https://downloader.cursor.sh/builds/2409189xe3envg5/linux/appImage/x64) |
| 0.40.4 | [下载](https://downloader.cursor.sh/builds/2409052yfcjagw2/linux/appImage/x64) |
| 0.40.3 | [下载](https://downloader.cursor.sh/builds/240829epqamqp7h/linux/appImage/x64) |
| 0.40.2 | [下载](https://downloader.cursor.sh/builds/240828c021k3aib/linux/appImage/x64) |
| 0.40.1 | [下载](https://downloader.cursor.sh/builds/2408245thnycuzj/linux/appImage/x64) |
| 0.40.0 | [下载](https://downloader.cursor.sh/builds/24082202sreugb2/linux/appImage/x64) |
| 0.39.6 | [下载](https://downloader.cursor.sh/builds/240819ih4ta2fye/linux/appImage/x64) |
| 0.39.5 | [下载](https://downloader.cursor.sh/builds/240814y9rhzmu7h/linux/appImage/x64) |
| 0.39.4 | [下载](https://downloader.cursor.sh/builds/240810elmeg3seq/linux/appImage/x64) |
| 0.39.3 | [下载](https://downloader.cursor.sh/builds/2408092hoyaxt9m/linux/appImage/x64) |
| 0.39.2 | [下载](https://downloader.cursor.sh/builds/240808phaxh4b5r/linux/appImage/x64) |
| 0.39.1 | [下载](https://downloader.cursor.sh/builds/240807g919tr4ly/linux/appImage/x64) |
| 0.39.0 | [下载](https://downloader.cursor.sh/builds/240802cdixtv9a6/linux/appImage/x64) |
| 0.38.1 | [下载](https://downloader.cursor.sh/builds/240725f0ti25os7/linux/appImage/x64) |
| 0.38.0 | [下载](https://downloader.cursor.sh/builds/240723790oxe4a2/linux/appImage/x64) |
| 0.37.1 | [下载](https://downloader.cursor.sh/builds/240714yrr3gmv3k/linux/appImage/x64) |
| 0.36.2 | [下载](https://downloader.cursor.sh/builds/2407077n6pzboby/linux/appImage/x64) |
| 0.36.1 | [下载](https://downloader.cursor.sh/builds/240706uekt2eaft/linux/appImage/x64) |
| 0.36.0 | [下载](https://downloader.cursor.sh/builds/240703xqkjv5aqa/linux/appImage/x64) |
| 0.35.1 | [下载](https://downloader.cursor.sh/builds/240621pc2f7rl8a/linux/appImage/x64) |
| 0.35.0 | [下载](https://downloader.cursor.sh/builds/240608cv11mfsjl/linux/appImage/x64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240606kgzq24cfb/linux/appImage/x64) |
| 0.34.6 | [下载](https://downloader.cursor.sh/builds/240605r495newcf/linux/appImage/x64) |
| 0.34.5 | [下载](https://downloader.cursor.sh/builds/240602rq6xovt3a/linux/appImage/x64) |
| 0.34.4 | [下载](https://downloader.cursor.sh/builds/2406014h0rgjghe/linux/appImage/x64) |
| 0.34.3 | [下载](https://downloader.cursor.sh/builds/240529baisuyd2e/linux/appImage/x64) |
| 0.34.2 | [下载](https://downloader.cursor.sh/builds/240528whh1qyo9h/linux/appImage/x64) |
| 0.34.1 | [下载](https://downloader.cursor.sh/builds/24052838ygfselt/linux/appImage/x64) |
| 0.34.0 | [下载](https://downloader.cursor.sh/builds/240527xus72jmkj/linux/appImage/x64) |
| 0.33.4 | [下载](https://downloader.cursor.sh/builds/240511kb8wt1tms/linux/appImage/x64) |
| 0.33.3 | [下载](https://downloader.cursor.sh/builds/2405103lx8342ta/linux/appImage/x64) |
| 0.33.2 | [下载](https://downloader.cursor.sh/builds/240510dwmw395qe/linux/appImage/x64) |
| 0.33.1 | [下载](https://downloader.cursor.sh/builds/2405039a9h2fqc9/linux/appImage/x64) |
| 0.33.0 | [下载](https://downloader.cursor.sh/builds/240503hyjsnhazo/linux/appImage/x64) |
| 0.32.8 | [下载](https://downloader.cursor.sh/builds/240428d499o6zja/linux/appImage/x64) |
| 0.32.7 | [下载](https://downloader.cursor.sh/builds/240427w5guozr0l/linux/appImage/x64) |
| 0.32.2 | [下载](https://downloader.cursor.sh/builds/240417ab4wag7sx/linux/appImage/x64) |
| 0.32.1 | [下载](https://downloader.cursor.sh/builds/2404152czor73fk/linux/appImage/x64) |
| 0.32.0 | [下载](https://downloader.cursor.sh/builds/240412ugli06ue0/linux/appImage/x64) |
| 0.31.3 | [下载](https://downloader.cursor.sh/builds/240402rq154jw46/linux/appImage/x64) |
| 0.31.1 | [下载](https://downloader.cursor.sh/builds/240402pkwfm2ps6/linux/appImage/x64) |
| 0.31.0 | [下载](https://downloader.cursor.sh/builds/2404018j7z0xv2g/linux/appImage/x64) |
| 0.30.5 | [下载](https://downloader.cursor.sh/builds/240327tmd2ozdc7/linux/appImage/x64) |
| 0.30.4 | [下载](https://downloader.cursor.sh/builds/240325dezy8ziab/linux/appImage/x64) |
| 0.30.3 | [下载](https://downloader.cursor.sh/builds/2403229gtuhto9g/linux/appImage/x64) |
| 0.30.2 | [下载](https://downloader.cursor.sh/builds/240322gzqjm3p0d/linux/appImage/x64) |
| 0.30.1 | [下载](https://downloader.cursor.sh/builds/2403212w1ejubt8/linux/appImage/x64) |
| 0.30.0 | [下载](https://downloader.cursor.sh/builds/240320tpx86e7hk/linux/appImage/x64) |
| 0.29.1 | [下载](https://downloader.cursor.sh/builds/2403027twmz0d1t/linux/appImage/x64) |
| 0.29.0 | [下载](https://downloader.cursor.sh/builds/240301kpqvacw2h/linux/appImage/x64) |
| 0.28.1 | [下载](https://downloader.cursor.sh/builds/240226tstim4evd/linux/appImage/x64) |
| 0.28.0 | [下载](https://downloader.cursor.sh/builds/240224g2d7jazcq/linux/appImage/x64) |
| 0.27.4 | [下载](https://downloader.cursor.sh/builds/240219qdbagglqz/linux/appImage/x64) |
| 0.27.3 | [下载](https://downloader.cursor.sh/builds/240218dxhc6y8os/linux/appImage/x64) |
| 0.27.2 | [下载](https://downloader.cursor.sh/builds/240216kkzl9nhxi/linux/appImage/x64) |
| 0.27.1 | [下载](https://downloader.cursor.sh/builds/240215l4ooehnyl/linux/appImage/x64) |
| 0.27.0 | [下载](https://downloader.cursor.sh/builds/240215at6ewkd59/linux/appImage/x64) |
| 0.26.2 | [下载](https://downloader.cursor.sh/builds/240212o6r9qxtcg/linux/appImage/x64) |
| 0.26.1 | [下载](https://downloader.cursor.sh/builds/2402107t904hing/linux/appImage/x64) |
| 0.26.0 | [下载](https://downloader.cursor.sh/builds/240210k8is5xr6v/linux/appImage/x64) |
| 0.25.3 | [下载](https://downloader.cursor.sh/builds/240207aacboj1k8/linux/appImage/x64) |
| 0.25.2 | [下载](https://downloader.cursor.sh/builds/240206p3708uc9z/linux/appImage/x64) |
| 0.25.1 | [下载](https://downloader.cursor.sh/builds/2402033t030rprh/linux/appImage/x64) |
| 0.25.0 | [下载](https://downloader.cursor.sh/builds/240203kh86t91q8/linux/appImage/x64) |
| 0.24.4 | [下载](https://downloader.cursor.sh/builds/240129iecm3e33w/linux/appImage/x64) |
| 0.24.3 | [下载](https://downloader.cursor.sh/builds/2401289dx79qsc0/linux/appImage/x64) |
| 0.24.1 | [下载](https://downloader.cursor.sh/builds/240127cad17436d/linux/appImage/x64) |
| 0.24.0 | [下载](https://downloader.cursor.sh/builds/240126wp9irhmza/linux/appImage/x64) |
| 0.23.9 | [下载](https://downloader.cursor.sh/builds/240124dsmraeml3/linux/appImage/x64) |
| 0.23.8 | [下载](https://downloader.cursor.sh/builds/240123fnn1hj1fg/linux/appImage/x64) |
| 0.23.7 | [下载](https://downloader.cursor.sh/builds/240123xsfe7ywcv/linux/appImage/x64) |
| 0.23.6 | [下载](https://downloader.cursor.sh/builds/240121m1740elox/linux/appImage/x64) |
| 0.23.5 | [下载](https://downloader.cursor.sh/builds/2401215utj6tx6q/linux/appImage/x64) |
| 0.23.4 | [下载](https://downloader.cursor.sh/builds/240121f4qy6ba2y/linux/appImage/x64) |
| 0.23.3 | [下载](https://downloader.cursor.sh/builds/2401201und3ytom/linux/appImage/x64) |
| 0.23.2 | [下载](https://downloader.cursor.sh/builds/240120an2k2hf1i/linux/appImage/x64) |
| 0.23.1 | [下载](https://downloader.cursor.sh/builds/240119fgzxwudn9/linux/appImage/x64) |
| 0.22.2 | [下载](https://downloader.cursor.sh/builds/24011721vsch1l1/linux/appImage/x64) |
| 0.22.1 | [下载](https://downloader.cursor.sh/builds/2401083eyk8kmzc/linux/appImage/x64) |
| 0.22.0 | [下载](https://downloader.cursor.sh/builds/240107qk62kvva3/linux/appImage/x64) |
| 0.21.1 | [下载](https://downloader.cursor.sh/builds/231230h0vi6srww/linux/appImage/x64) |
| 0.21.0 | [下载](https://downloader.cursor.sh/builds/231229ezidnxiu3/linux/appImage/x64) |
| 0.20.2 | [下载](https://downloader.cursor.sh/builds/231219aksf83aad/linux/appImage/x64) |
| 0.20.1 | [下载](https://downloader.cursor.sh/builds/231218ywfaxax09/linux/appImage/x64) |
| 0.20.0 | [下载](https://downloader.cursor.sh/builds/231216nsyfew5j1/linux/appImage/x64) |
| 0.19.1 | [下载](https://downloader.cursor.sh/builds/2312156z2ric57n/linux/appImage/x64) |
| 0.19.0 | [下载](https://downloader.cursor.sh/builds/231214per9qal2p/linux/appImage/x64) |
| 0.18.8 | [下载](https://downloader.cursor.sh/builds/2312098ffjr3ign/linux/appImage/x64) |
| 0.18.7 | [下载](https://downloader.cursor.sh/builds/23120880aolip2i/linux/appImage/x64) |
| 0.18.6 | [下载](https://downloader.cursor.sh/builds/231207ueqazwde8/linux/appImage/x64) |
| 0.18.5 | [下载](https://downloader.cursor.sh/builds/231206jzy2n2sbi/linux/appImage/x64) |
| 0.18.4 | [下载](https://downloader.cursor.sh/builds/2312033zjv5fqai/linux/appImage/x64) |
| 0.18.3 | [下载](https://downloader.cursor.sh/builds/231203k2vnkxq2m/linux/appImage/x64) |
| 0.18.1 | [下载](https://downloader.cursor.sh/builds/23120176kaer07t/linux/appImage/x64) |
| 0.17.0 | [下载](https://downloader.cursor.sh/builds/231127p7iyxn8rg/linux/appImage/x64) |
| 0.16.0 | [下载](https://downloader.cursor.sh/builds/231116rek2xuq6a/linux/appImage/x64) |
| 0.15.5 | [下载](https://downloader.cursor.sh/builds/231115a5mv63u9f/linux/appImage/x64) |
| 0.15.4 | [下载](https://downloader.cursor.sh/builds/23111469e1i3xyi/linux/appImage/x64) |
| 0.15.3 | [下载](https://downloader.cursor.sh/builds/231113b0yv3uqem/linux/appImage/x64) |
| 0.15.2 | [下载](https://downloader.cursor.sh/builds/231113ah0kuf3pf/linux/appImage/x64) |
| 0.15.1 | [下载](https://downloader.cursor.sh/builds/231111yanyyovap/linux/appImage/x64) |
| 0.15.0 | [下载](https://downloader.cursor.sh/builds/231110mdkomczmw/linux/appImage/x64) |
| 0.14.1 | [下载](https://downloader.cursor.sh/builds/231109xitrgihlk/linux/appImage/x64) |
| 0.14.0 | [下载](https://downloader.cursor.sh/builds/231102m6tuamwbx/linux/appImage/x64) |
| 0.13.4 | [下载](https://downloader.cursor.sh/builds/231029rso7pso8l/linux/appImage/x64) |
| 0.13.3 | [下载](https://downloader.cursor.sh/builds/231025uihnjkh9v/linux/appImage/x64) |
| 0.13.2 | [下载](https://downloader.cursor.sh/builds/231024w4iv7xlm6/linux/appImage/x64) |
| 0.13.1 | [下载](https://downloader.cursor.sh/builds/231022f3j0ubckv/linux/appImage/x64) |
| 0.13.0 | [下载](https://downloader.cursor.sh/builds/231022ptw6i4j42/linux/appImage/x64) |
| 0.12.3 | [下载](https://downloader.cursor.sh/builds/231008c5ursm0oj/linux/appImage/x64) |
</details>

501
README.md
View File

@ -2,126 +2,23 @@
<div align="center">
[![Release](https://img.shields.io/github/v/release/yuaotian/go-cursor-help?style=flat-square&logo=github&color=blue)](https://github.com/yuaotian/go-cursor-help/releases/latest)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&logo=bookstack)](https://github.com/yuaotian/go-cursor-help/blob/master/LICENSE)
[![Stars](https://img.shields.io/github/stars/yuaotian/go-cursor-help?style=flat-square&logo=github)](https://github.com/yuaotian/go-cursor-help/stargazers)
[![Release](https://img.shields.io/github/v/release/dacrab/go-cursor-help?style=flat-square&logo=github&color=blue)](https://github.com/dacrab/go-cursor-help/releases/latest)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&logo=bookstack)](https://github.com/dacrab/go-cursor-help/blob/master/LICENSE)
[![Stars](https://img.shields.io/github/stars/dacrab/go-cursor-help?style=flat-square&logo=github)](https://github.com/dacrab/go-cursor-help/stargazers)
[🌟 English](README.md) | [🌏 中文](README_CN.md) | [🌏 日本語](README_JP.md)
[🌟 English](#english) | [🌏 中文](#chinese)
<img src="https://ai-cursor.com/wp-content/uploads/2024/09/logo-cursor-ai-png.webp" alt="Cursor Logo" width="120"/>
</div>
> ⚠️ **IMPORTANT NOTICE**
>
> This tool currently supports:
> - ✅ Windows: Latest 0.50.x versions (Supported)
> - ✅ Mac/Linux: Latest 0.50.x versions (Supported, feedback welcome)
>
> Please check your Cursor version before using this tool.
<details open>
<summary><b>📦 Version History & Downloads</b></summary>
<div class="version-card" style="background: linear-gradient(135deg, #6e8efb, #a777e3); border-radius: 8px; padding: 15px; margin: 10px 0; color: white;">
### 🌟 Latest Versions
[View Full Version History]([CursorHistoryDown.md](https://github.com/oslook/cursor-ai-downloads?tab=readme-ov-file))
</div>
</details>
⚠️ **General Solutions for Cursor**
> 1. Close Cursor, log out of your account, and delete your account in the official website Settings (refresh IP node: Japan, Singapore, USA, Hong Kong, prioritizing low latency - not necessarily required but change if conditions allow; Windows users are recommended to refresh DNS cache: `ipconfig /flushdns`)
> Go to the Cursor official website to delete your current account
> Steps: User avatar -> Setting -> Advanced▼ in the bottom left -> Delete Account
>
> 2. Run the machine code refresh script, see the script address below, available in China
>
> 3. Re-register an account, log in, and open Cursor to resume normal use.
>
> 4. Alternative solution: If still unusable after step [**3**], or if you encounter problems such as account registration failure or inability to delete an account, this usually means your browser has been identified or restricted by the target website (risk control). In this case, try switching browsers, such as: Edge, Google Chrome, Firefox. (Or, consider using a browser that can modify or randomize browser fingerprint information).
---
⚠️ **MAC Address Modification Warning**
>
> For Mac users: This script includes a MAC address modification feature that will:
> - Modify your network interface's MAC address
> - Backup original MAC addresses before modification
> - This modification may temporarily affect network connectivity
> - You can skip this step when prompted during execution
>
<details >
<summary><b>🔒 Disable Auto-Update Feature</b></summary>
> To prevent Cursor from automatically updating to unsupported new versions, you can choose to disable the auto-update feature.
#### Method 1: Using Built-in Script (Recommended)
When running the reset tool, the script will ask if you want to disable auto-updates:
```text
[Question] Do you want to disable Cursor auto-update feature?
0) No - Keep default settings (Press Enter)
1) Yes - Disable auto-update
```
Select `1` to automatically complete the disable operation.
#### Method 2: Manual Disable
**Windows:**
1. Close all Cursor processes
2. Delete directory: `%LOCALAPPDATA%\cursor-updater`
3. Create a file with the same name (without extension) in the same location
**macOS:**
```bash
# NOTE: As tested, this method only works for version 0.45.11 and below.
# Close Cursor
pkill -f "Cursor"
# Replacing app-update.yml with a blank/read-only file
cd /Applications/Cursor.app/Contents/Resources
mv app-update.yml app-update.yml.bak
touch app-update.yml
chmod 444 app-update.yml
# Go to Settings -> Application -> Update, set Mode to none.
# This must be done to prevent Cursor from checking for updates.
# NOTE: The cursor-updater modification method may no longer be effective
# In any case, remove update directory and create blocking file
rm -rf ~/Library/Application\ Support/Caches/cursor-updater
touch ~/Library/Application\ Support/Caches/cursor-updater
```
**Linux:**
```bash
# Close Cursor
pkill -f "Cursor"
# Remove update directory and create blocking file
rm -rf ~/.config/cursor-updater
touch ~/.config/cursor-updater
```
> ⚠️ **Note:** After disabling auto-updates, you'll need to manually download and install new versions. It's recommended to update only after confirming the new version is compatible.
</details>
---
## 🌟 English
### 📝 Description
> When you encounter any of these messages:
#### Issue 1: Trial Account Limit <p align="right"><a href="#issue1"><img src="https://img.shields.io/badge/Move%20to%20Solution-Blue?style=plastic" alt="Back To Top"></a></p>
> Resets Cursor's free trial limitation when you see:
```text
Too many free trial accounts used on this machine.
@ -130,81 +27,6 @@ to prevent abuse. Please let us know if you believe
this is a mistake.
```
#### Issue 2: API Key Limitation <p align="right"><a href="#issue2"><img src="https://img.shields.io/badge/Move%20to%20Solution-green?style=plastic" alt="Back To Top"></a></p>
```text
[New Issue]
Composer relies on custom models that cannot be billed to an API key.
Please disable API keys and use a Pro or Business subscription.
Request ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
```
#### Issue 3: Trial Request Limit
> This indicates you've reached the usage limit during the VIP free trial period:
```text
You've reached your trial request limit.
```
#### Issue 4: Claude 3.7 High Load <p align="right"><a href="#issue4"><img src="https://img.shields.io/badge/Move%20to%20Solution-purple?style=plastic" alt="Back To Top"></a></p>
```text
High Load
We're experiencing high demand for Claude 3.7 Sonnet right now. Please upgrade to Pro, or switch to the
'default' model, Claude 3.5 sonnet, another model, or try again in a few moments.
```
<br>
<p id="issue2"></p>
#### Solution : Uninstall Cursor Completely And Reinstall (API key Issue)
1. Download [Geek.exe Uninstaller[Free]](https://geekuninstaller.com/download)
2. Uninstall Cursor app completely
3. Re-Install Cursor app
4. Continue to Solution 1
<br>
<p id="issue1"></p>
> Temporary Solution:
#### Solution 1: Quick Reset (Recommended)
1. Close Cursor application
2. Run the machine code reset script (see installation instructions below)
3. Reopen Cursor to continue using
#### Solution 2: Account Switch
1. File -> Cursor Settings -> Sign Out
2. Close Cursor
3. Run the machine code reset script
4. Login with a new account
#### Solution 3: Network Optimization
If the above solutions don't work, try:
- Switch to low-latency nodes (Recommended regions: Japan, Singapore, US, Hong Kong)
- Ensure network stability
- Clear browser cache and retry
#### Solution 4: Claude 3.7 Access Issue (High Load)
If you see the "High Load" message for Claude 3.7 Sonnet, this indicates Cursor is limiting free trial accounts from using the 3.7 model during certain times of the day. Try:
1. Switch to a new account created with Gmail, possibly connecting through a different IP address
2. Try accessing during off-peak hours (typically 5-10 AM or 3-7 PM when restrictions are often lighter)
3. Consider upgrading to Pro for guaranteed access
4. Use Claude 3.5 Sonnet as a fallback option
> Note: These access patterns may change as Cursor adjusts their resource allocation policies.
### 💻 System Support
<table>
@ -212,7 +34,6 @@ If you see the "High Load" message for Claude 3.7 Sonnet, this indicates Cursor
<td>
**Windows** ✅
- x64 (64-bit)
- x86 (32-bit)
@ -220,7 +41,6 @@ If you see the "High Load" message for Claude 3.7 Sonnet, this indicates Cursor
<td>
**macOS** ✅
- Intel (x64)
- Apple Silicon (M1/M2)
@ -228,7 +48,6 @@ If you see the "High Load" message for Claude 3.7 Sonnet, this indicates Cursor
<td>
**Linux** ✅
- x64 (64-bit)
- x86 (32-bit)
- ARM64
@ -239,136 +58,29 @@ If you see the "High Load" message for Claude 3.7 Sonnet, this indicates Cursor
### 🚀 One-Click Solution
<details open>
<summary><b>Global Users</b></summary>
**macOS**
**Linux/macOS**: Copy and paste in terminal
```bash
# Method two
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_mac_id_modifier.sh -o ./cursor_mac_id_modifier.sh && sudo bash ./cursor_mac_id_modifier.sh && rm ./cursor_mac_id_modifier.sh
curl -fsSL https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.sh | sudo bash
```
**Linux**
```bash
curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_linux_id_modifier.sh | sudo bash
```
> **Note for Linux users:** The script attempts to find your Cursor installation by checking common paths (`/usr/bin`, `/usr/local/bin`, `$HOME/.local/bin`, `/opt/cursor`, `/snap/bin`), using the `which cursor` command, and searching within `/usr`, `/opt`, and `$HOME/.local`. If Cursor is installed elsewhere or not found via these methods, the script may fail. Ensure Cursor is accessible via one of these standard locations or methods.
**Windows**
**Windows**: Copy and paste in PowerShell
```powershell
irm https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
irm https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.ps1 | iex
```
<div align="center">
<img src="img/run_success.png" alt="Run Success" width="600"/>
</div>
</details>
<details open>
<summary><b>China Users (Recommended)</b></summary>
**macOS**
```bash
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_mac_id_modifier.sh -o ./cursor_mac_id_modifier.sh && sudo bash ./cursor_mac_id_modifier.sh && rm ./cursor_mac_id_modifier.sh
```
**Linux**
```bash
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_linux_id_modifier.sh | sudo bash
```
**Windows**
```powershell
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
</details>
<details open>
<summary><b>Windows Terminal Run and Configuration</b></summary>
#### How to Open Administrator Terminal in Windows:
##### Method 1: Using Win + X Shortcut
```md
1. Press Win + X key combination
2. Select one of these options from the menu:
- "Windows PowerShell (Administrator)"
- "Windows Terminal (Administrator)"
- "Terminal (Administrator)"
(Options may vary depending on Windows version)
```
##### Method 2: Using Win + R Run Command
```md
1. Press Win + R key combination
2. Type powershell or pwsh in the Run dialog
3. Press Ctrl + Shift + Enter to run as administrator
or type in the opened window: Start-Process pwsh -Verb RunAs
4. Enter the reset script in the administrator terminal:
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
##### Method 3: Using Search
>![Search PowerShell](img/pwsh_1.png)
>
>Type pwsh in the search box, right-click and select "Run as administrator"
>![Run as Administrator](img/pwsh_2.png)
Enter the reset script in the administrator terminal:
```powershell
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
### 🔧 PowerShell Installation Guide
If PowerShell is not installed on your system, you can install it using one of these methods:
#### Method 1: Install via Winget (Recommended)
1. Open Command Prompt or PowerShell
2. Run the following command:
```powershell
winget install --id Microsoft.PowerShell --source winget
```
#### Method 2: Manual Installation
1. Download the installer for your system:
- [PowerShell-7.4.6-win-x64.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x64.msi) (64-bit systems)
- [PowerShell-7.4.6-win-x86.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x86.msi) (32-bit systems)
- [PowerShell-7.4.6-win-arm64.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-arm64.msi) (ARM64 systems)
2. Double-click the downloaded installer and follow the installation prompts
> 💡 If you encounter any issues, please refer to the [Microsoft Official Installation Guide](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows)
</details>
#### Windows 安装特性:
#### Windows Installation Features:
- 🔍 Automatically detects and uses PowerShell 7 if available
- 🛡️ Requests administrator privileges via UAC prompt
- 📝 Falls back to Windows PowerShell if PS7 isn't found
- 💡 Provides manual instructions if elevation fails
That's it! The script will:
1. ✨ Install the tool automatically
2. 🔄 Reset your Cursor trial immediately
### 📦 Manual Installation
> Download the appropriate file for your system from [releases](https://github.com/yuaotian/go-cursor-help/releases/latest)
> Download the appropriate file for your system from [releases](https://github.com/dacrab/go-cursor-help/releases/latest)
<details>
<summary>Windows Packages</summary>
@ -408,26 +120,12 @@ The program modifies Cursor's `storage.json` config file located at:
<summary><b>Modified Fields</b></summary>
The tool generates new unique identifiers for:
- `telemetry.machineId`
- `telemetry.macMachineId`
- `telemetry.devDeviceId`
- `telemetry.sqmId`
</details>
<details>
<summary><b>Manual Auto-Update Disable</b></summary>
Windows users can manually disable the auto-update feature:
1. Close all Cursor processes
2. Delete directory: `C:\Users\username\AppData\Local\cursor-updater`
3. Create a file with the same name: `cursor-updater` (without extension)
macOS/Linux users can try to locate similar `cursor-updater` directory in their system and perform the same operation.
</details>
<details>
<summary><b>Safety Features</b></summary>
@ -436,87 +134,128 @@ macOS/Linux users can try to locate similar `cursor-updater` directory in their
- ✅ Error handling and recovery
</details>
<details>
<summary><b>Registry Modification Notice</b></summary>
> ⚠️ **Important: This tool modifies the Windows Registry**
#### Modified Registry
- Path: `Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`
- Key: `MachineGuid`
#### Potential Impact
Modifying this registry key may affect:
- Windows system's unique device identification
- Device recognition and authorization status of certain software
- System features based on hardware identification
#### Safety Measures
1. Automatic Backup
- Original value is automatically backed up before modification
- Backup location: `%APPDATA%\Cursor\User\globalStorage\backups`
- Backup file format: `MachineGuid.backup_YYYYMMDD_HHMMSS`
2. Manual Recovery Steps
- Open Registry Editor (regedit)
- Navigate to: `Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`
- Right-click on `MachineGuid`
- Select "Modify"
- Paste the value from backup file
#### Important Notes
- Verify backup file existence before modification
- Use backup file to restore original value if needed
- Administrator privileges required for registry modification
</details>
---
### 📚 Recommended Reading
## 🌏 Chinese
- [Cursor Issues Collection and Solutions](https://mp.weixin.qq.com/s/pnJrH7Ifx4WZvseeP1fcEA)
- [AI Universal Development Assistant Prompt Guide](https://mp.weixin.qq.com/s/PRPz-qVkFJSgkuEKkTdzwg)
### 📝 问题描述
---
> 当看到以下提示时重置Cursor试用期
## Support
```text
Too many free trial accounts used on this machine.
Please upgrade to pro. We have this limit in place
to prevent abuse. Please let us know if you believe
this is a mistake.
```
### 💻 系统支持
<div align="center">
<b>If you find this helpful, consider buying me a spicy gluten snack (Latiao) as appreciation~ 💁☕️</b>
<table>
<tr>
<td>
**Windows** ✅
- x64 & x86
<td align="center">
<b>微信赞赏</b><br>
<img src="img/wx_zsm2.png" width="500" alt="微信赞赏码"><br>
<small>要到饭咧?啊咧?啊咧?不给也没事~ 请随意打赏</small>
</td>
<td align="center">
<b>支付宝赞赏</b><br>
<img src="img/alipay.png" width="500" alt="支付宝赞赏码"><br>
<small>如果觉得有帮助,来包辣条犒劳一下吧~</small>
<td>
**macOS** ✅
- Intel & M-series
</td>
<td align="center">
<b>Alipay</b><br>
<img src="img/alipay_scan_pay.jpg" width="500" alt="Alipay"><br>
<em>1 Latiao = 1 AI thought cycle</em>
</td>
<td align="center">
<b>WeChat</b><br>
<img src="img/qun13.png" width="500" alt="WeChat"><br>
<em>二维码7天内(5月30日前)有效,过期请加微信</em>
</td>
<!-- <td align="center">
<b>ETC</b><br>
<img src="img/etc.png" width="100" alt="ETC Address"><br>
ETC: 0xa2745f4CD5d32310AC01694ABDB28bA32D125a6b
</td>
<td align="center"> -->
<td>
**Linux** ✅
- x64 & ARM64
</td>
</tr>
</table>
</div>
### 🚀 一键解决
**Linux/macOS**: 在终端中复制粘贴
```bash
curl -fsSL https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.sh | sudo bash
```
**Windows**: 在PowerShell中复制粘贴
```powershell
irm https://raw.githubusercontent.com/dacrab/go-cursor-help/master/scripts/install.ps1 | iex
```
#### Windows 安装特性:
- 🔍 自动检测并使用 PowerShell 7如果可用
- 🛡️ 通过 UAC 提示请求管理员权限
- 📝 如果没有 PS7 则使用 Windows PowerShell
- 💡 如果提权失败会提供手动说明
That's it! The script will:
1. ✨ 自动安装工具
2. 🔄 立即重置Cursor试用期
### 📦 Manual Installation
> Download the appropriate file for your system from [releases](https://github.com/dacrab/go-cursor-help/releases/latest)
<details>
<summary>Windows Packages</summary>
- 64-bit: `cursor-id-modifier_windows_x64.exe`
- 32-bit: `cursor-id-modifier_windows_x86.exe`
</details>
<details>
<summary>macOS Packages</summary>
- Intel: `cursor-id-modifier_darwin_x64_intel`
- M1/M2: `cursor-id-modifier_darwin_arm64_apple_silicon`
</details>
<details>
<summary>Linux Packages</summary>
- 64-bit: `cursor-id-modifier_linux_x64`
- 32-bit: `cursor-id-modifier_linux_x86`
- ARM64: `cursor-id-modifier_linux_arm64`
</details>
### 🔧 技术细节
<details>
<summary><b>配置文件</b></summary>
程序修改Cursor的`storage.json`配置文件,位于:
- Windows: `%APPDATA%\Cursor\User\globalStorage\`
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/`
- Linux: `~/.config/Cursor/User/globalStorage/`
</details>
<details>
<summary><b>修改字段</b></summary>
工具会生成新的唯一标识符:
- `telemetry.machineId`
- `telemetry.macMachineId`
- `telemetry.devDeviceId`
- `telemetry.sqmId`
</details>
<details>
<summary><b>安全特性</b></summary>
## 🔔 关注公众号
#### 获取更多精彩内容
- 第一时间获取最新版本更新
- CursorAI使用技巧和最佳实践
- 利用AI提升编程效率
- 更多AI工具和开发资源
![微信公众号二维码](img/wx_public_2.png)
---
## ⭐ Project Stats
@ -545,6 +284,4 @@ furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
</details>

View File

@ -1,503 +0,0 @@
# 🚀 Cursor 免费试用重置工具
<div align="center">
[![Release](https://img.shields.io/github/v/release/yuaotian/go-cursor-help?style=flat-square&logo=github&color=blue)](https://github.com/yuaotian/go-cursor-help/releases/latest)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&logo=bookstack)](https://github.com/yuaotian/go-cursor-help/blob/master/LICENSE)
[![Stars](https://img.shields.io/github/stars/yuaotian/go-cursor-help?style=flat-square&logo=github)](https://github.com/yuaotian/go-cursor-help/stargazers)
[🌟 English](README.md) | [🌏 中文](README_CN.md) | [🌏 日本語](README_JP.md)
<img src="https://ai-cursor.com/wp-content/uploads/2024/09/logo-cursor-ai-png.webp" alt="Cursor Logo" width="120"/>
</div>
> ⚠️ **重要提示**
>
> 本工具当前支持版本:
> - ✅ Windows: 最新的 0.50.x 版本(已支持)
> - ✅ Mac/Linux: 最新的 0.50.x 版本(已支持,欢迎测试并反馈问题)
> 使用前请确认您的 Cursor 版本。
<details open>
<summary><b>📦 版本历史与下载</b></summary>
<div class="version-card" style="background: linear-gradient(135deg, #6e8efb, #a777e3); border-radius: 8px; padding: 15px; margin: 10px 0; color: white;">
[查看完整版本历史]([CursorHistoryDown.md](https://github.com/oslook/cursor-ai-downloads?tab=readme-ov-file))
</div>
</details>
⚠️ **Cursor通用解决方案**
> 1. 关闭Cursor、退出账号、官网Setting删除账号(刷新节点IP日本、新加坡、 美国、香港低延迟为主不一定需要但是有条件就换Windows用户建议刷新DNS缓存`ipconfig /flushdns`)
> 前往Cursor官网删除当前账号
> 步骤:用户头像->Setting-左下角Advanced▼->Delete Account
>
> 2. 刷新机器码脚本,看下面脚本地址,国内可用
>
> 3. 重新注册账号、登录、打开Cursor即可恢复正常使用。
>
> 4. 备用方案:如果步骤 [**3**] 后仍不可用或者遇到注册账号失败、无法删除账号等问题这通常意味着您的浏览器被目标网站识别或限制风控。此时请尝试更换浏览器例如Edge、Google Chrome、Firefox。或者可以尝试使用能够修改或随机化浏览器指纹信息的浏览器
关注大佬公众号煎饼果子卷AI
---
> ⚠️ **MAC地址修改警告**
>
> Mac用户请注意: 本脚本包含MAC地址修改功能将会:
> - 修改您的网络接口MAC地址
> - 在修改前备份原始MAC地址
> - 此修改可能会暂时影响网络连接
> - 执行过程中可以选择跳过此步骤
---
### 📝 问题描述
> 当您遇到以下任何消息时:
#### 问题 1: 试用账号限制 <p align="right"><a href="#solution1"><img src="https://img.shields.io/badge/跳转到解决方案-Blue?style=plastic" alt="跳转到顶部"></a></p>
```text
Too many free trial accounts used on this machine.
Please upgrade to pro. We have this limit in place
to prevent abuse. Please let us know if you believe
this is a mistake.
```
#### 问题 2: API密钥限制 <p align="right"><a href="#solution2"><img src="https://img.shields.io/badge/跳转到解决方案-green?style=plastic" alt="跳转到顶部"></a></p>
```text
[New Issue]
Composer relies on custom models that cannot be billed to an API key.
Please disable API keys and use a Pro or Business subscription.
Request ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
```
#### 问题 3: 试用请求限制
> 这表明您在VIP免费试用期间已达到使用限制
```text
You've reached your trial request limit.
```
#### 问题 4: Claude 3.7 高负载 High Load <p align="right"><a href="#solution4"><img src="https://img.shields.io/badge/跳转到解决方案-purple?style=plastic" alt="跳转到顶部"></a></p>
```text
High Load
We're experiencing high demand for Claude 3.7 Sonnet right now. Please upgrade to Pro, or switch to the
'default' model, Claude 3.5 sonnet, another model, or try again in a few moments.
```
<br>
<p id="solution2"></p>
#### 解决方案完全卸载Cursor并重新安装API密钥问题
1. 下载 [Geek.exe 卸载工具[免费]](https://geekuninstaller.com/download)
2. 完全卸载Cursor应用
3. 重新安装Cursor应用
4. 继续执行解决方案1
<br>
<p id="solution1"></p>
> 临时解决方案:
#### 解决方案 1: 快速重置(推荐)
1. 关闭Cursor应用
2. 运行机器码重置脚本(见下方安装说明)
3. 重新打开Cursor继续使用
#### 解决方案 2: 切换账号
1. 文件 -> Cursor设置 -> 退出登录
2. 关闭Cursor
3. 运行机器码重置脚本
4. 使用新账号登录
#### 解决方案 3: 网络优化
如果上述解决方案不起作用,请尝试:
- 切换到低延迟节点(推荐区域:日本、新加坡、美国、香港)
- 确保网络稳定性
- 清除浏览器缓存并重试
<p id="solution4"></p>
#### 解决方案 4: Claude 3.7 访问问题High Load
如果您看到Claude 3.7 Sonnet的"High Load"高负载消息这表明Cursor在一天中某些时段限制免费试用账号使用3.7模型。请尝试:
1. 使用Gmail邮箱创建新账号可能需要通过不同IP地址连接
2. 尝试在非高峰时段访问通常在早上5-10点或下午3-7点之间限制较少
3. 考虑升级到Pro版本获取保证访问权限
4. 使用Claude 3.5 Sonnet作为备选方案
> 注意随着Cursor调整资源分配策略这些访问模式可能会发生变化。
### 🚀 系统支持
<table>
<tr>
<td>
**Windows** ✅
- x64 & x86
</td>
<td>
**macOS** ✅
- Intel & M-series
</td>
<td>
**Linux** ✅
- x64 & ARM64
</td>
</tr>
</table>
### 🚀 一键解决方案
<details open>
<summary><b>国内用户(推荐)</b></summary>
**macOS**
```bash
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_mac_id_modifier.sh -o ./cursor_mac_id_modifier.sh && sudo bash ./cursor_mac_id_modifier.sh && rm ./cursor_mac_id_modifier.sh
```
**Linux**
```bash
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_linux_id_modifier.sh | sudo bash
```
> **Linux 用户请注意:** 该脚本通过检查常用路径(`/usr/bin`, `/usr/local/bin`, `$HOME/.local/bin`, `/opt/cursor`, `/snap/bin`)、使用 `which cursor` 命令以及在 `/usr``/opt``$HOME/.local` 目录内搜索,来尝试定位您的 Cursor 安装。如果 Cursor 安装在其他位置或通过这些方法无法找到,脚本可能会失败。请确保可以通过这些标准位置或方法之一访问到 Cursor。
**Windows**
```powershell
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
<div align="center">
<img src="img/run_success.png" alt="运行成功" width="600"/>
</div>
</details>
<details open>
<summary><b>Windows 管理员终端运行和手动安装</b></summary>
#### Windows 系统打开管理员终端的方法:
##### 方法一:使用 Win + X 快捷键
```md
1. 按下 Win + X 组合键
2. 在弹出的菜单中选择以下任一选项:
- "Windows PowerShell (管理员)"
- "Windows Terminal (管理员)"
- "终端(管理员)"
(具体选项因Windows版本而异)
```
##### 方法二:使用 Win + R 运行命令
```md
1. 按下 Win + R 组合键
2. 在运行框中输入 powershell 或 pwsh
3. 按 Ctrl + Shift + Enter 以管理员身份运行
或在打开的窗口中输入: Start-Process pwsh -Verb RunAs
4. 在管理员终端中输入以下重置脚本:
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
##### 方法三:通过搜索启动
>![搜索 PowerShell](img/pwsh_1.png)
>
>在搜索框中输入 pwsh右键选择"以管理员身份运行"
>![管理员运行](img/pwsh_2.png)
在管理员终端中输入重置脚本:
```powershell
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
### 🔧 PowerShell 安装指南
如果您的系统没有安装 PowerShell,可以通过以下方法安装:
#### 方法一:使用 Winget 安装(推荐)
1. 打开命令提示符或 PowerShell
2. 运行以下命令:
```powershell
winget install --id Microsoft.PowerShell --source winget
```
#### 方法二:手动下载安装
1. 下载对应系统的安装包:
- [PowerShell-7.4.6-win-x64.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x64.msi) (64位系统)
- [PowerShell-7.4.6-win-x86.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x86.msi) (32位系统)
- [PowerShell-7.4.6-win-arm64.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-arm64.msi) (ARM64系统)
2. 双击下载的安装包,按提示完成安装
> 💡 如果仍然遇到问题,可以参考 [Microsoft 官方安装指南](https://learn.microsoft.com/zh-cn/powershell/scripting/install/installing-powershell-on-windows)
</details>
#### Windows 安装特性:
- 🔍 自动检测并使用 PowerShell 7如果可用
- 🛡️ 通过 UAC 提示请求管理员权限
- 📝 如果没有 PS7 则使用 Windows PowerShell
- 💡 如果提权失败会提供手动说明
完成后,脚本将:
1. ✨ 自动安装工具
2. 🔄 立即重置 Cursor 试用期
### 📦 手动安装
> 从 [releases](https://github.com/yuaotian/go-cursor-help/releases/latest) 下载适合您系统的文件
<details>
<summary>Windows 安装包</summary>
- 64 位: `cursor-id-modifier_windows_x64.exe`
- 32 位: `cursor-id-modifier_windows_x86.exe`
</details>
<details>
<summary>macOS 安装包</summary>
- Intel: `cursor-id-modifier_darwin_x64_intel`
- M1/M2: `cursor-id-modifier_darwin_arm64_apple_silicon`
</details>
<details>
<summary>Linux 安装包</summary>
- 64 位: `cursor-id-modifier_linux_x64`
- 32 位: `cursor-id-modifier_linux_x86`
- ARM64: `cursor-id-modifier_linux_arm64`
</details>
### 🔧 技术细节
<details>
<summary><b>注册表修改说明</b></summary>
> ⚠️ **重要提示:本工具会修改系统注册表**
#### 修改内容
- 路径:`计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`
- 项目:`MachineGuid`
#### 潜在影响
修改此注册表项可能会影响:
- Windows 系统对设备的唯一标识
- 某些软件的设备识别和授权状态
- 基于硬件标识的系统功能
#### 安全措施
1. 自动备份
- 每次修改前会自动备份原始值
- 备份保存在:`%APPDATA%\Cursor\User\globalStorage\backups`
- 备份文件格式:`MachineGuid.backup_YYYYMMDD_HHMMSS`
2. 手动恢复方法
- 打开注册表编辑器regedit
- 定位到:`计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`
- 右键点击 `MachineGuid`
- 选择"修改"
- 粘贴备份文件中的值
#### 注意事项
- 建议在修改前先确认备份文件的存在
- 如遇问题可通过备份文件恢复原始值
- 必须以管理员权限运行才能修改注册表
</details>
<details>
<summary><b>配置文件</b></summary>
程序修改 Cursor 的`storage.json`配置文件,位于:
- Windows: `%APPDATA%\Cursor\User\globalStorage\`
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/`
- Linux: `~/.config/Cursor/User/globalStorage/`
</details>
<details>
<summary><b>修改字段</b></summary>
工具会生成新的唯一标识符:
- `telemetry.machineId`
- `telemetry.macMachineId`
- `telemetry.devDeviceId`
- `telemetry.sqmId`
</details>
<details>
<summary><b>手动禁用自动更新</b></summary>
Windows 用户可以手动禁用自动更新功能:
1. 关闭所有 Cursor 进程
2. 删除目录:`C:\Users\用户名\AppData\Local\cursor-updater`
3. 创建同名文件:`cursor-updater`(不带扩展名)
Linux用户可以尝试在系统中找到类似的`cursor-updater`目录进行相同操作。
MacOS用户按照以下步骤操作
```bash
# 注意经测试此方法仅适用于0.45.11及以下版本不支持0.46.*版本
# 关闭所有 Cursor 进程
pkill -f "Cursor"
# 备份app-update.yml并创建空的只读文件代替原文件
cd /Applications/Cursor.app/Contents/Resources
mv app-update.yml app-update.yml.bak
touch app-update.yml
chmod 444 app-update.yml
# 打开Cursor设置将更新模式设置为"无"该步骤必须执行否则Cursor依然会自动检查更新
# 步骤Settings -> Application -> Update, 将Mode设置为none
# 注意: cursor-updater修改方法可能已失效。但为了以防万一还是删除更新目录并创建阻止文件
rm -rf ~/Library/Application\ Support/Caches/cursor-updater
touch ~/Library/Application\ Support/Caches/cursor-updater
```
</details>
<details>
<summary><b>安全特性</b></summary>
- ✅ 安全的进程终止
- ✅ 原子文件操作
- ✅ 错误处理和恢复
</details>
<details>
<summary><b>重置 Cursor 免费试用</b></summary>
### 使用 `cursor_free_trial_reset.sh` 脚本
#### macOS
```bash
curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_free_trial_reset.sh -o ./cursor_free_trial_reset.sh && sudo bash ./cursor_free_trial_reset.sh && rm ./cursor_free_trial_reset.sh
```
#### Linux
```bash
curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_free_trial_reset.sh | sudo bash
```
#### Windows
```powershell
irm https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_free_trial_reset.sh | iex
```
</details>
## 联系方式
<div align="center">
<table>
<tr>
<td align="center">
<b>个人微信</b><br>
<img src="img/wx_me.png" width="250" alt="作者微信"><br>
<b>微信JavaRookie666</b>
</td>
<td align="center">
<b>微信交流群</b><br>
<img src="img/qun13.png" width="500" alt="WeChat"><br>
<small>二维码7天内(5月30日前)有效,过期请加微信</small>
</td>
<td align="center">
<b>公众号</b><br>
<img src="img/wx_public_2.png" width="250" alt="微信公众号"><br>
<small>获取更多AI开发资源</small>
</td>
<td align="center">
<b>微信赞赏</b><br>
<img src="img/wx_zsm2.png" width="500" alt="微信赞赏码"><br>
<small>要到饭咧?啊咧?啊咧?不给也没事~ 请随意打赏</small>
</td>
<td align="center">
<b>支付宝赞赏</b><br>
<img src="img/alipay.png" width="500" alt="支付宝赞赏码"><br>
<small>如果觉得有帮助,来包辣条犒劳一下吧~</small>
</td>
</tr>
</table>
</div>
---
### 📚 推荐阅读
- [Cursor 异常问题收集和解决方案](https://mp.weixin.qq.com/s/pnJrH7Ifx4WZvseeP1fcEA)
- [AI 通用开发助手提示词指南](https://mp.weixin.qq.com/s/PRPz-qVkFJSgkuEKkTdzwg)
---
## ⭐ 项目统计
<div align="center">
[![Star History Chart](https://api.star-history.com/svg?repos=yuaotian/go-cursor-help&type=Date)](https://star-history.com/#yuaotian/go-cursor-help&Date)
![Repobeats analytics image](https://repobeats.axiom.co/api/embed/ddaa9df9a94b0029ec3fad399e1c1c4e75755477.svg "Repobeats analytics image")
</div>
## 📄 许可证
<details>
<summary><b>MIT 许可证</b></summary>
Copyright (c) 2024
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
</details>

View File

@ -1,546 +0,0 @@
# 🚀 Cursor 無料試用リセットツール
<div align="center">
[![Release](https://img.shields.io/github/v/release/yuaotian/go-cursor-help?style=flat-square&logo=github&color=blue)](https://github.com/yuaotian/go-cursor-help/releases/latest)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&logo=bookstack)](https://github.com/yuaotian/go-cursor-help/blob/master/LICENSE)
[![Stars](https://img.shields.io/github/stars/yuaotian/go-cursor-help?style=flat-square&logo=github)](https://github.com/yuaotian/go-cursor-help/stargazers)
[🌟 English](README.md) | [🌏 中文](README_CN.md) | [🌏 日本語](README_JP.md)
<img src="https://ai-cursor.com/wp-content/uploads/2024/09/logo-cursor-ai-png.webp" alt="Cursor Logo" width="120"/>
</div>
> ⚠️ **重要なお知らせ**
>
> このツールは現在以下のバージョンをサポートしています:
> - ✅ Windows: 最新の0.50.xバージョンサポート済み
> - ✅ Mac/Linux: 最新の0.50.xバージョンサポート済み、フィードバック歓迎
>
> このツールを使用する前に、Cursorのバージョンを確認してください。
<details open>
<summary><b>📦 バージョン履歴とダウンロード</b></summary>
<div class="version-card" style="background: linear-gradient(135deg, #6e8efb, #a777e3); border-radius: 8px; padding: 15px; margin: 10px 0; color: white;">
### 🌟 最新バージョン
[完全なバージョン履歴を見る]([CursorHistoryDown.md](https://github.com/oslook/cursor-ai-downloads?tab=readme-ov-file))
</div>
</details>
⚠️ **Cursorの一般的な解決策**
> 1. Cursorを閉じ、アカウントからログアウトし、公式サイトの設定からアカウントを削除しますIPードを更新日本、シンガポール、アメリカ、香港など、低遅延を優先。必須ではありませんが条件が整えば変更してください。Windowsユーザーの場合はDNSキャッシュの更新をお勧めします`ipconfig /flushdns`
> Cursor公式サイトで現在のアカウントを削除します
> 手順:ユーザーアイコン->設定->左下のAdvanced▼->Delete Account
>
> 2. マシンコードリセットスクリプトを実行します。下記のスクリプトアドレスを参照してください。
>
> 3. アカウントを再登録し、ログインして、Cursorを開くと、正常に使用できるようになります。
>
> 4. 代替案:ステップ[**3**]の後でもまだ使用できない場合、またはアカウント登録に失敗したり、アカウントを削除できないなどの問題が発生した場合、これは通常、ブラウザがターゲットサイトに識別または制限されているリスク管理ことを意味します。この場合、Edge、Google Chrome、Firefoxなど別のブラウザを試してみてくださいまたは、ブラウザのフィンガープリント情報を変更またはランダム化できるブラウザの使用を検討してください
---
⚠️ **MACアドレス変更警告**
>
> Macユーザーの皆様へ: このスクリプトにはMACアドレス変更機能が含まれています。以下の操作が行われます
> - ネットワークインターフェースのMACアドレスを変更します
> - 変更前に元のMACアドレスをバックアップします
> - この変更により一時的にネットワーク接続が影響を受ける可能性があります
> - 実行中にこのステップをスキップすることができます
>
<details >
<summary><b>🔒 自動更新機能の無効化</b></summary>
> Cursorがサポートされていない新しいバージョンに自動的に更新されるのを防ぐために、自動更新機能を無効にすることができます。
#### 方法1: 組み込みスクリプトを使用する(推奨)
リセットツールを実行するとき、スクリプトは自動更新を無効にするかどうかを尋ねます:
```text
[質問] Cursorの自動更新機能を無効にしますか
0) いいえ - デフォルト設定を維持Enterキーを押す
1) はい - 自動更新を無効にする
```
`1`を選択して無効化操作を自動的に完了します。
#### 方法2: 手動で無効化
**Windows:**
1. すべてのCursorプロセスを閉じます
2. ディレクトリを削除します: `%LOCALAPPDATA%\cursor-updater`
3. 同じ名前のファイルを作成します(拡張子なし)
**macOS:**
```bash
# 注意: テスト済みでは、この方法はバージョン0.45.11およびそれ以前のバージョンでのみ機能します。
# Cursorを閉じます
pkill -f "Cursor"
# app-update.ymlを空の読み取り専用ファイルに置き換えます
cd /Applications/Cursor.app/Contents/Resources
mv app-update.yml app-update.yml.bak
touch app-update.yml
chmod 444 app-update.yml
# 設定 -> アプリケーション -> 更新、モードをnoneに設定します。
# これを行わないと、Cursorは更新をチェックし続けます。
# 注意: cursor-updaterの変更方法はもはや有効ではないかもしれません
# いずれにせよ、更新ディレクトリを削除し、ブロックファイルを作成します
rm -rf ~/Library/Application\ Support/Caches/cursor-updater
touch ~/Library/Application\ Support/Caches/cursor-updater
```
**Linux:**
```bash
# Cursorを閉じます
pkill -f "Cursor"
# 更新ディレクトリを削除し、ブロックファイルを作成します
rm -rf ~/.config/cursor-updater
touch ~/.config/cursor-updater
```
> ⚠️ **注意:** 自動更新を無効にした後、新しいバージョンを手動でダウンロードしてインストールする必要があります。新しいバージョンが互換性があることを確認した後に更新することをお勧めします。
</details>
---
### 📝 説明
> これらのメッセージのいずれかに遭遇した場合:
#### 問題1: 試用アカウント制限 <p align="right"><a href="#issue1"><img src="https://img.shields.io/badge/Move%20to%20Solution-Blue?style=plastic" alt="Back To Top"></a></p>
```text
Too many free trial accounts used on this machine.
Please upgrade to pro. We have this limit in place
to prevent abuse. Please let us know if you believe
this is a mistake.
```
#### 問題2: APIキー制限 <p align="right"><a href="#issue2"><img src="https://img.shields.io/badge/Move%20to%20Solution-green?style=plastic" alt="Back To Top"></a></p>
```text
[New Issue]
Composer relies on custom models that cannot be billed to an API key.
Please disable API keys and use a Pro or Business subscription.
Request ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
```
#### 問題3: 試用リクエスト制限
> これは、VIP無料試用期間中に使用制限に達したことを示しています
```text
You've reached your trial request limit.
```
#### 問題4: Claude 3.7 高負荷 <p align="right"><a href="#issue4"><img src="https://img.shields.io/badge/Move%20to%20Solution-purple?style=plastic" alt="Back To Top"></a></p>
```text
High Load
We're experiencing high demand for Claude 3.7 Sonnet right now. Please upgrade to Pro, or switch to the
'default' model, Claude 3.5 sonnet, another model, or try again in a few moments.
```
<br>
<p id="issue2"></p>
#### 解決策 : Cursorを完全にアンインストールして再インストールするAPIキーの問題
1. [Geek.exeアンインストーラー[無料]](https://geekuninstaller.com/download)をダウンロードします
2. Cursorアプリを完全にアンインストールします
3. Cursorアプリを再インストールします
4. 解決策1を続行します
<br>
<p id="issue1"></p>
> 一時的な解決策:
#### 解決策1: クイックリセット(推奨)
1. Cursorアプリケーションを閉じます
2. マシンコードリセットスクリプトを実行します(以下のインストール手順を参照)
3. Cursorを再度開いて使用を続けます
#### 解決策2: アカウントの切り替え
1. ファイル -> Cursor設定 -> サインアウト
2. Cursorを閉じます
3. マシンコードリセットスクリプトを実行します
4. 新しいアカウントでログインします
#### 解決策3: ネットワークの最適化
上記の解決策が機能しない場合は、次のことを試してください:
- 低遅延ノードに切り替えます(推奨地域:日本、シンガポール、米国、香港)
- ネットワークの安定性を確保します
- ブラウザのキャッシュをクリアして再試行します
#### 解決策4: Claude 3.7 アクセス問題(高負荷)
Claude 3.7 Sonnetの"High Load"メッセージが表示された場合、これはCursorが特定の時間帯に無料試用アカウントの3.7モデルの使用を制限していることを示しています。次のことを試してください:
1. Gmailで作成した新しいアカウントに切り替えます。異なるIPアドレスを使用して接続することをお勧めします
2. 非ピーク時間帯にアクセスを試みます通常、5-10 AMまたは3-7 PMの間に制限が少ないです
3. Proにアップグレードしてアクセスを保証します
4. Claude 3.5 Sonnetを代替オプションとして使用します
> 注意: Cursorがリソース配分ポリシーを調整するにつれて、これらのアクセスパターンは変更される可能性があります。
### 💻 システムサポート
<table>
<tr>
<td>
**Windows** ✅
- x64 (64ビット)
- x86 (32ビット)
</td>
<td>
**macOS** ✅
- Intel (x64)
- Apple Silicon (M1/M2)
</td>
<td>
**Linux** ✅
- x64 (64ビット)
- x86 (32ビット)
- ARM64
</td>
</tr>
</table>
### 🚀 ワンクリックソリューション
<details open>
<summary><b>グローバルユーザー</b></summary>
**macOS**
```bash
# 方法2
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_mac_id_modifier.sh -o ./cursor_mac_id_modifier.sh && sudo bash ./cursor_mac_id_modifier.sh && rm ./cursor_mac_id_modifier.sh
```
**Linux**
```bash
curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_linux_id_modifier.sh | sudo bash
```
**Windows**
```powershell
irm https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
<div align="center">
<img src="img/run_success.png" alt="Run Success" width="600"/>
</div>
</details>
<details open>
<summary><b>中国ユーザー(推奨)</b></summary>
**macOS**
```bash
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_mac_id_modifier.sh -o ./cursor_mac_id_modifier.sh && sudo bash ./cursor_mac_id_modifier.sh && rm ./cursor_mac_id_modifier.sh
```
**Linux**
```bash
curl -fsSL https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_linux_id_modifier.sh | sudo bash
```
> **Linuxユーザーへの注意** スクリプトは、一般的なパス(`/usr/bin`, `/usr/local/bin`, `$HOME/.local/bin`, `/opt/cursor`, `/snap/bin`)の確認、`which cursor` コマンドの使用、および `/usr``/opt``$HOME/.local` ディレクトリ内の検索によって、Cursor のインストールを見つけようとします。Cursorが他の場所にインストールされているか、これらの方法で見つからない場合、スクリプトは失敗する可能性があります。これらの標準的な場所または方法のいずれかを通じてCursorにアクセスできることを確認してください。
**Windows**
```powershell
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
</details>
<details open>
<summary><b>Windowsターミナルの実行と構成</b></summary>
#### Windowsで管理者ターミナルを開く方法
##### 方法1: Win + Xショートカットを使用する
```md
1. Win + Xキーの組み合わせを押します
2. メニューから次のオプションのいずれかを選択します:
- "Windows PowerShell (管理者)"
- "Windows Terminal (管理者)"
- "ターミナル (管理者)"
Windowsのバージョンによってオプションが異なる場合があります
```
##### 方法2: Win + R実行コマンドを使用する
```md
1. Win + Rキーの組み合わせを押します
2. 実行ダイアログにpowershellまたはpwshと入力します
3. Ctrl + Shift + Enterを押して管理者として実行します
または開いたウィンドウに次のように入力します: Start-Process pwsh -Verb RunAs
4. 管理者ターミナルにリセットスクリプトを入力します:
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
##### 方法3: 検索を使用する
>![PowerShellを検索](img/pwsh_1.png)
>
>検索ボックスにpwshと入力し、右クリックして「管理者として実行」を選択します
>![管理者として実行](img/pwsh_2.png)
管理者ターミナルにリセットスクリプトを入力します:
```powershell
irm https://aizaozao.com/accelerate.php/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1 | iex
```
### 🔧 PowerShellインストールガイド
システムにPowerShellがインストールされていない場合は、次の方法でインストールできます
#### 方法1: Wingetを使用してインストール推奨
1. コマンドプロンプトまたはPowerShellを開きます
2. 次のコマンドを実行します:
```powershell
winget install --id Microsoft.PowerShell --source winget
```
#### 方法2: 手動でインストール
1. システムに適したインストーラーをダウンロードします:
- [PowerShell-7.4.6-win-x64.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x64.msi)64ビットシステム用
- [PowerShell-7.4.6-win-x86.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x86.msi)32ビットシステム用
- [PowerShell-7.4.6-win-arm64.msi](https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-arm64.msi)ARM64システム用
2. ダウンロードしたインストーラーをダブルクリックし、インストールの指示に従います
> 💡 問題が発生した場合は、[Microsoft公式インストールガイド](https://learn.microsoft.com/ja-jp/powershell/scripting/install/installing-powershell-on-windows)を参照してください
</details>
#### Windowsインストール機能
- 🔍 PowerShell 7が利用可能な場合は自動的に検出して使用します
- 🛡️ UACプロンプトを介して管理者権限を要求します
- 📝 PS7が見つからない場合はWindows PowerShellにフォールバックします
- 💡 権限昇格に失敗した場合は手動の指示を提供します
これで完了です!スクリプトは次のことを行います:
1. ✨ ツールを自動的にインストールします
2. 🔄 Cursorの試用期間を即座にリセットします
### 📦 手動インストール
> [リリース](https://github.com/yuaotian/go-cursor-help/releases/latest)からシステムに適したファイルをダウンロードします
<details>
<summary>Windowsパッケージ</summary>
- 64ビット: `cursor-id-modifier_windows_x64.exe`
- 32ビット: `cursor-id-modifier_windows_x86.exe`
</details>
<details>
<summary>macOSパッケージ</summary>
- Intel: `cursor-id-modifier_darwin_x64_intel`
- M1/M2: `cursor-id-modifier_darwin_arm64_apple_silicon`
</details>
<details>
<summary>Linuxパッケージ</summary>
- 64ビット: `cursor-id-modifier_linux_x64`
- 32ビット: `cursor-id-modifier_linux_x86`
- ARM64: `cursor-id-modifier_linux_arm64`
</details>
### 🔧 技術的詳細
<details>
<summary><b>構成ファイル</b></summary>
プログラムはCursorの`storage.json`構成ファイルを変更します。場所は次のとおりです:
- Windows: `%APPDATA%\Cursor\User\globalStorage\storage.json`
- macOS: `~/Library/Application Support/Cursor/User/globalStorage/storage.json`
- Linux: `~/.config/Cursor/User/globalStorage/storage.json`
</details>
<details>
<summary><b>変更されたフィールド</b></summary>
ツールは次の新しい一意の識別子を生成します:
- `telemetry.machineId`
- `telemetry.macMachineId`
- `telemetry.devDeviceId`
- `telemetry.sqmId`
</details>
<details>
<summary><b>手動自動更新無効化</b></summary>
Windowsユーザーは自動更新機能を手動で無効にすることができます
1. すべてのCursorプロセスを閉じます
2. ディレクトリを削除します: `C:\Users\username\AppData\Local\cursor-updater`
3. 同じ名前のファイルを作成します: `cursor-updater`(拡張子なし)
macOS/Linuxユーザーはシステム内で同様の`cursor-updater`ディレクトリを見つけて同じ操作を行うことができます。
</details>
<details>
<summary><b>安全機能</b></summary>
- ✅ 安全なプロセス終了
- ✅ アトミックファイル操作
- ✅ エラーハンドリングとリカバリ
</details>
<details>
<summary><b>レジストリ変更通知</b></summary>
> ⚠️ **重要: このツールはWindowsレジストリを変更します**
#### 変更されたレジストリ
- パス: `コンピュータ\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`
- キー: `MachineGuid`
#### 潜在的な影響
このレジストリキーを変更すると、次のことに影響を与える可能性があります:
- Windowsシステムの一意のデバイス識別
- 特定のソフトウェアのデバイス認識と認証状態
- ハードウェア識別に基づくシステム機能
#### 安全対策
1. 自動バックアップ
- 変更前に元の値が自動的にバックアップされます
- バックアップ場所: `%APPDATA%\Cursor\User\globalStorage\backups`
- バックアップファイル形式: `MachineGuid.backup_YYYYMMDD_HHMMSS`
2. 手動復元手順
- レジストリエディタregeditを開きます
- 次の場所に移動します: `コンピュータ\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`
- `MachineGuid`を右クリックします
- 「修正」を選択します
- バックアップファイルの値を貼り付けます
#### 重要な注意事項
- 変更前にバックアップファイルの存在を確認します
- 必要に応じてバックアップファイルを使用して元の値を復元します
- レジストリの変更には管理者権限が必要です
</details>
---
### 📚 推奨読書
- [Cursorの問題収集と解決策](https://mp.weixin.qq.com/s/pnJrH7Ifx4WZvseeP1fcEA)
- [AIユニバーサル開発アシスタントプロンプトガイド](https://mp.weixin.qq.com/s/PRPz-qVkFJSgkuEKkTdzwg)
---
## サポート
<div align="center">
<b>このツールが役立つと感じた場合、スパイシーグルテンのおやつLatiaoを買っていただけると嬉しいです~ 💁☕️</b>
<table>
<tr>
<td align="center">
<b>WeChat Pay</b><br>
<img src="img/wx_zsm2.png" width="500" alt="WeChat Pay"><br>
<small>要到饭咧?啊咧?啊咧?不给也没事~ 请随意打赏</small>
</td>
<td align="center">
<b>Alipay</b><br>
<img src="img/alipay.png" width="500" alt="Alipay"><br>
<small>如果觉得有帮助,来包辣条犒劳一下吧~</small>
</td>
<td align="center">
<b>Alipay</b><br>
<img src="img/alipay_scan_pay.jpg" width="500" alt="Alipay"><br>
<em>1 Latiao = 1 AI thought cycle</em>
</td>
<td align="center">
<b>WeChat</b><br>
<img src="img/qun13.png" width="500" alt="WeChat"><br>
<em>二维码7天内(5月30日前)有效,过期请加微信</em>
</td>
<!-- <td align="center">
<b>ETC</b><br>
<img src="img/etc.png" width="100" alt="ETC Address"><br>
ETC: 0xa2745f4CD5d32310AC01694ABDB28bA32D125a6b
</td>
<td align="center"> -->
</td>
</tr>
</table>
</div>
---
## ⭐ プロジェクト統計
<div align="center">
[![Star History Chart](https://api.star-history.com/svg?repos=yuaotian/go-cursor-help&type=Date)](https://star-history.com/#yuaotian/go-cursor-help&Date)
![Repobeats analytics image](https://repobeats.axiom.co/api/embed/ddaa9df9a94b0029ec3fad399e1c1c4e75755477.svg "Repobeats analytics image")
</div>
## 📄 ライセンス
<details>
<summary><b>MITライセンス</b></summary>
Copyright (c) 2024
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
</details>

View File

@ -11,13 +11,13 @@ import (
"runtime/debug"
"strings"
"github.com/sirupsen/logrus"
"github.com/dacrab/go-cursor-help/internal/config"
"github.com/dacrab/go-cursor-help/internal/lang"
"github.com/dacrab/go-cursor-help/internal/process"
"github.com/dacrab/go-cursor-help/internal/ui"
"github.com/dacrab/go-cursor-help/pkg/idgen"
"github.com/yuaotian/go-cursor-help/internal/config"
"github.com/yuaotian/go-cursor-help/internal/lang"
"github.com/yuaotian/go-cursor-help/internal/process"
"github.com/yuaotian/go-cursor-help/internal/ui"
"github.com/yuaotian/go-cursor-help/pkg/idgen"
"github.com/sirupsen/logrus"
)
// Global variables
@ -29,15 +29,7 @@ var (
)
func main() {
// Place defer at the beginning of main to ensure it can catch panics from all subsequent function calls
defer func() {
if r := recover(); r != nil {
log.Errorf("Panic recovered: %v\n", r)
debug.PrintStack()
waitExit()
}
}()
setupErrorRecovery()
handleFlags()
setupLogger()
@ -81,6 +73,16 @@ func main() {
}
}
func setupErrorRecovery() {
defer func() {
if r := recover(); r != nil {
log.Errorf("Panic recovered: %v\n", r)
debug.PrintStack()
waitExit()
}
}()
}
func handleFlags() {
flag.Parse()
if *showVersion {
@ -238,7 +240,7 @@ func generateNewConfig(display *ui.Display, generator *idgen.Generator, oldConfi
if oldConfig != nil && oldConfig.TelemetrySqmId != "" {
newConfig.TelemetrySqmId = oldConfig.TelemetrySqmId
} else if sqmID, err := generator.GenerateSQMID(); err != nil {
} else if sqmID, err := generator.GenerateMacMachineID(); err != nil {
log.Fatal("Failed to generate SQM ID:", err)
} else {
newConfig.TelemetrySqmId = sqmID

View File

@ -1,877 +0,0 @@
Version,Platform,Architecture,Download URL
0.45.11,windows,x64,https://downloader.cursor.sh/builds/250207y6nbaw5qc/windows/nsis/x64
0.45.11,windows,arm64,https://downloader.cursor.sh/builds/250207y6nbaw5qc/windows/nsis/arm64
0.45.11,mac,universal,https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/universal
0.45.11,mac,arm64,https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/arm64
0.45.11,mac,x64,https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/x64
0.45.11,linux,x64,https://downloader.cursor.sh/builds/250207y6nbaw5qc/linux/appImage/x64
0.45.10,windows,x64,https://downloader.cursor.sh/builds/250205buadkzpea/windows/nsis/x64
0.45.10,windows,arm64,https://downloader.cursor.sh/builds/250205buadkzpea/windows/nsis/arm64
0.45.10,mac,universal,https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/universal
0.45.10,mac,arm64,https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/arm64
0.45.10,mac,x64,https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/x64
0.45.10,linux,x64,https://downloader.cursor.sh/builds/250205buadkzpea/linux/appImage/x64
0.45.9,windows,x64,https://downloader.cursor.sh/builds/250202tgstl42dt/windows/nsis/x64
0.45.9,windows,arm64,https://downloader.cursor.sh/builds/250202tgstl42dt/windows/nsis/arm64
0.45.9,mac,universal,https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/universal
0.45.9,mac,arm64,https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/arm64
0.45.9,mac,x64,https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/x64
0.45.9,linux,x64,https://downloader.cursor.sh/builds/250202tgstl42dt/linux/appImage/x64
0.45.8,windows,x64,https://downloader.cursor.sh/builds/250201b44xw1x2k/windows/nsis/x64
0.45.8,windows,arm64,https://downloader.cursor.sh/builds/250201b44xw1x2k/windows/nsis/arm64
0.45.8,mac,universal,https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/universal
0.45.8,mac,arm64,https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/arm64
0.45.8,mac,x64,https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/x64
0.45.8,linux,x64,https://downloader.cursor.sh/builds/250201b44xw1x2k/linux/appImage/x64
0.45.7,windows,x64,https://downloader.cursor.sh/builds/250130nr6eorv84/windows/nsis/x64
0.45.7,windows,arm64,https://downloader.cursor.sh/builds/250130nr6eorv84/windows/nsis/arm64
0.45.7,mac,universal,https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/universal
0.45.7,mac,arm64,https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/arm64
0.45.7,mac,x64,https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/x64
0.45.7,linux,x64,https://downloader.cursor.sh/builds/250130nr6eorv84/linux/appImage/x64
0.45.6,windows,x64,https://downloader.cursor.sh/builds/25013021lv9say3/windows/nsis/x64
0.45.6,windows,arm64,https://downloader.cursor.sh/builds/25013021lv9say3/windows/nsis/arm64
0.45.6,mac,universal,https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/universal
0.45.6,mac,arm64,https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/arm64
0.45.6,mac,x64,https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/x64
0.45.6,linux,x64,https://downloader.cursor.sh/builds/25013021lv9say3/linux/appImage/x64
0.45.5,windows,x64,https://downloader.cursor.sh/builds/250128loaeyulq8/windows/nsis/x64
0.45.5,windows,arm64,https://downloader.cursor.sh/builds/250128loaeyulq8/windows/nsis/arm64
0.45.5,mac,universal,https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/universal
0.45.5,mac,arm64,https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/arm64
0.45.5,mac,x64,https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/x64
0.45.5,linux,x64,https://downloader.cursor.sh/builds/250128loaeyulq8/linux/appImage/x64
0.45.4,windows,x64,https://downloader.cursor.sh/builds/250126vgr3vztvj/windows/nsis/x64
0.45.4,windows,arm64,https://downloader.cursor.sh/builds/250126vgr3vztvj/windows/nsis/arm64
0.45.4,mac,universal,https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/universal
0.45.4,mac,arm64,https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/arm64
0.45.4,mac,x64,https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/x64
0.45.4,linux,x64,https://downloader.cursor.sh/builds/250126vgr3vztvj/linux/appImage/x64
0.45.3,windows,x64,https://downloader.cursor.sh/builds/250124b0rcj0qql/windows/nsis/x64
0.45.3,windows,arm64,https://downloader.cursor.sh/builds/250124b0rcj0qql/windows/nsis/arm64
0.45.3,mac,universal,https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/universal
0.45.3,mac,arm64,https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/arm64
0.45.3,mac,x64,https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/x64
0.45.3,linux,x64,https://downloader.cursor.sh/builds/250124b0rcj0qql/linux/appImage/x64
0.45.2,windows,x64,https://downloader.cursor.sh/builds/250123mhituoa6o/windows/nsis/x64
0.45.2,windows,arm64,https://downloader.cursor.sh/builds/250123mhituoa6o/windows/nsis/arm64
0.45.2,mac,universal,https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/universal
0.45.2,mac,arm64,https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/arm64
0.45.2,mac,x64,https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/x64
0.45.2,linux,x64,https://downloader.cursor.sh/builds/250123mhituoa6o/linux/appImage/x64
0.45.1,windows,x64,https://downloader.cursor.sh/builds/2501213ljml5byg/windows/nsis/x64
0.45.1,windows,arm64,https://downloader.cursor.sh/builds/2501213ljml5byg/windows/nsis/arm64
0.45.1,mac,universal,https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/universal
0.45.1,mac,arm64,https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/arm64
0.45.1,mac,x64,https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/x64
0.45.1,linux,x64,https://downloader.cursor.sh/builds/2501213ljml5byg/linux/appImage/x64
0.45.0,windows,x64,https://downloader.cursor.sh/builds/250120dh9ezx9pg/windows/nsis/x64
0.45.0,windows,arm64,https://downloader.cursor.sh/builds/250120dh9ezx9pg/windows/nsis/arm64
0.45.0,mac,universal,https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/universal
0.45.0,mac,arm64,https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/arm64
0.45.0,mac,x64,https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/x64
0.45.0,linux,x64,https://downloader.cursor.sh/builds/250120dh9ezx9pg/linux/appImage/x64
0.44.11,windows,x64,https://downloader.cursor.sh/builds/250103fqxdt5u9z/windows/nsis/x64
0.44.11,windows,arm64,https://downloader.cursor.sh/builds/250103fqxdt5u9z/windows/nsis/arm64
0.44.11,mac,universal,https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/universal
0.44.11,mac,arm64,https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/arm64
0.44.11,mac,x64,https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/x64
0.44.11,linux,x64,https://downloader.cursor.sh/builds/250103fqxdt5u9z/linux/appImage/x64
0.44.10,windows,x64,https://downloader.cursor.sh/builds/250102ys80vtnud/windows/nsis/x64
0.44.10,windows,arm64,https://downloader.cursor.sh/builds/250102ys80vtnud/windows/nsis/arm64
0.44.10,mac,universal,https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/universal
0.44.10,mac,arm64,https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/arm64
0.44.10,mac,x64,https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/x64
0.44.10,linux,x64,https://downloader.cursor.sh/builds/250102ys80vtnud/linux/appImage/x64
0.44.9,windows,x64,https://downloader.cursor.sh/builds/2412268nc6pfzgo/windows/nsis/x64
0.44.9,windows,arm64,https://downloader.cursor.sh/builds/2412268nc6pfzgo/windows/nsis/arm64
0.44.9,mac,universal,https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/universal
0.44.9,mac,arm64,https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/arm64
0.44.9,mac,x64,https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/x64
0.44.9,linux,x64,https://downloader.cursor.sh/builds/2412268nc6pfzgo/linux/appImage/x64
0.44.8,windows,x64,https://downloader.cursor.sh/builds/241222ooktny8mh/windows/nsis/x64
0.44.8,windows,arm64,https://downloader.cursor.sh/builds/241222ooktny8mh/windows/nsis/arm64
0.44.8,mac,universal,https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/universal
0.44.8,mac,arm64,https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/arm64
0.44.8,mac,x64,https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/x64
0.44.8,linux,x64,https://downloader.cursor.sh/builds/241222ooktny8mh/linux/appImage/x64
0.44.7,windows,x64,https://downloader.cursor.sh/builds/2412219nhracv01/windows/nsis/x64
0.44.7,windows,arm64,https://downloader.cursor.sh/builds/2412219nhracv01/windows/nsis/arm64
0.44.7,mac,universal,https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/universal
0.44.7,mac,arm64,https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/arm64
0.44.7,mac,x64,https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/x64
0.44.7,linux,x64,https://downloader.cursor.sh/builds/2412219nhracv01/linux/appImage/x64
0.44.6,windows,x64,https://downloader.cursor.sh/builds/2412214pmryneua/windows/nsis/x64
0.44.6,windows,arm64,https://downloader.cursor.sh/builds/2412214pmryneua/windows/nsis/arm64
0.44.6,mac,universal,https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/universal
0.44.6,mac,arm64,https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/arm64
0.44.6,mac,x64,https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/x64
0.44.6,linux,x64,https://downloader.cursor.sh/builds/2412214pmryneua/linux/appImage/x64
0.44.5,windows,x64,https://downloader.cursor.sh/builds/241220s3ux0e1tv/windows/nsis/x64
0.44.5,windows,arm64,https://downloader.cursor.sh/builds/241220s3ux0e1tv/windows/nsis/arm64
0.44.5,mac,universal,https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/universal
0.44.5,mac,arm64,https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/arm64
0.44.5,mac,x64,https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/x64
0.44.5,linux,x64,https://downloader.cursor.sh/builds/241220s3ux0e1tv/linux/appImage/x64
0.44.4,windows,x64,https://downloader.cursor.sh/builds/241219117fcvexy/windows/nsis/x64
0.44.4,windows,arm64,https://downloader.cursor.sh/builds/241219117fcvexy/windows/nsis/arm64
0.44.4,mac,universal,https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/universal
0.44.4,mac,arm64,https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/arm64
0.44.4,mac,x64,https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/x64
0.44.4,linux,x64,https://downloader.cursor.sh/builds/241219117fcvexy/linux/appImage/x64
0.44.3,windows,x64,https://downloader.cursor.sh/builds/241218sybfbogmq/windows/nsis/x64
0.44.3,windows,arm64,https://downloader.cursor.sh/builds/241218sybfbogmq/windows/nsis/arm64
0.44.3,mac,universal,https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/universal
0.44.3,mac,arm64,https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/arm64
0.44.3,mac,x64,https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/x64
0.44.3,linux,x64,https://downloader.cursor.sh/builds/241218sybfbogmq/linux/appImage/x64
0.44.2,windows,x64,https://downloader.cursor.sh/builds/241218ntls52u8v/windows/nsis/x64
0.44.2,windows,arm64,https://downloader.cursor.sh/builds/241218ntls52u8v/windows/nsis/arm64
0.44.2,mac,universal,https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/universal
0.44.2,mac,arm64,https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/arm64
0.44.2,mac,x64,https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/x64
0.44.2,linux,x64,https://downloader.cursor.sh/builds/241218ntls52u8v/linux/appImage/x64
0.44.0,windows,x64,https://downloader.cursor.sh/builds/2412187f9v0nffu/windows/nsis/x64
0.44.0,windows,arm64,https://downloader.cursor.sh/builds/2412187f9v0nffu/windows/nsis/arm64
0.44.0,mac,universal,https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/universal
0.44.0,mac,arm64,https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/arm64
0.44.0,mac,x64,https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/x64
0.44.0,linux,x64,https://downloader.cursor.sh/builds/2412187f9v0nffu/linux/appImage/x64
0.43.6,windows,x64,https://downloader.cursor.sh/builds/241206z7j6me2e2/windows/nsis/x64
0.43.6,windows,arm64,https://downloader.cursor.sh/builds/241206z7j6me2e2/windows/nsis/arm64
0.43.6,mac,universal,https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/universal
0.43.6,mac,arm64,https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/arm64
0.43.6,mac,x64,https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/x64
0.43.6,linux,x64,https://downloader.cursor.sh/builds/241206z7j6me2e2/linux/appImage/x64
0.43.5,windows,x64,https://downloader.cursor.sh/builds/241127pdg4cnbu2/windows/nsis/x64
0.43.5,windows,arm64,https://downloader.cursor.sh/builds/241127pdg4cnbu2/windows/nsis/arm64
0.43.5,mac,universal,https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/universal
0.43.5,mac,arm64,https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/arm64
0.43.5,mac,x64,https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/x64
0.43.5,linux,x64,https://downloader.cursor.sh/builds/241127pdg4cnbu2/linux/appImage/x64
0.43.4,windows,x64,https://downloader.cursor.sh/builds/241126w13goyvrs/windows/nsis/x64
0.43.4,windows,arm64,https://downloader.cursor.sh/builds/241126w13goyvrs/windows/nsis/arm64
0.43.4,mac,universal,https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/universal
0.43.4,mac,arm64,https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/arm64
0.43.4,mac,x64,https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/x64
0.43.4,linux,x64,https://downloader.cursor.sh/builds/241126w13goyvrs/linux/appImage/x64
0.43.3,windows,x64,https://downloader.cursor.sh/builds/2411246yqzx1jmm/windows/nsis/x64
0.43.3,windows,arm64,https://downloader.cursor.sh/builds/2411246yqzx1jmm/windows/nsis/arm64
0.43.3,mac,universal,https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/universal
0.43.3,mac,arm64,https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/arm64
0.43.3,mac,x64,https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/x64
0.43.3,linux,x64,https://downloader.cursor.sh/builds/2411246yqzx1jmm/linux/appImage/x64
0.43.1,windows,x64,https://downloader.cursor.sh/builds/241124gsiwb66nc/windows/nsis/x64
0.43.1,windows,arm64,https://downloader.cursor.sh/builds/241124gsiwb66nc/windows/nsis/arm64
0.43.1,mac,universal,https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/universal
0.43.1,mac,arm64,https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/arm64
0.43.1,mac,x64,https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/x64
0.43.1,linux,x64,https://downloader.cursor.sh/builds/241124gsiwb66nc/linux/appImage/x64
0.42.5,windows,x64,https://downloader.cursor.sh/builds/24111460bf2loz1/windows/nsis/x64
0.42.5,windows,arm64,https://downloader.cursor.sh/builds/24111460bf2loz1/windows/nsis/arm64
0.42.5,mac,universal,https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/universal
0.42.5,mac,arm64,https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/arm64
0.42.5,mac,x64,https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/x64
0.42.5,linux,x64,https://downloader.cursor.sh/builds/24111460bf2loz1/linux/appImage/x64
0.42.4,windows,x64,https://downloader.cursor.sh/builds/2410291z3bdg1dy/windows/nsis/x64
0.42.4,windows,arm64,https://downloader.cursor.sh/builds/2410291z3bdg1dy/windows/nsis/arm64
0.42.4,mac,universal,https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/universal
0.42.4,mac,arm64,https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/arm64
0.42.4,mac,x64,https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/x64
0.42.4,linux,x64,https://downloader.cursor.sh/builds/2410291z3bdg1dy/linux/appImage/x64
0.42.3,windows,x64,https://downloader.cursor.sh/builds/241016kxu9umuir/windows/nsis/x64
0.42.3,windows,arm64,https://downloader.cursor.sh/builds/241016kxu9umuir/windows/nsis/arm64
0.42.3,mac,universal,https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/universal
0.42.3,mac,arm64,https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/arm64
0.42.3,mac,x64,https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/x64
0.42.3,linux,x64,https://downloader.cursor.sh/builds/241016kxu9umuir/linux/appImage/x64
0.42.2,windows,x64,https://downloader.cursor.sh/builds/2410127mj66lvaq/windows/nsis/x64
0.42.2,windows,arm64,https://downloader.cursor.sh/builds/2410127mj66lvaq/windows/nsis/arm64
0.42.2,mac,universal,https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/universal
0.42.2,mac,arm64,https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/arm64
0.42.2,mac,x64,https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/x64
0.42.2,linux,x64,https://downloader.cursor.sh/builds/2410127mj66lvaq/linux/appImage/x64
0.42.1,windows,x64,https://downloader.cursor.sh/builds/241011i66p9fuvm/windows/nsis/x64
0.42.1,windows,arm64,https://downloader.cursor.sh/builds/241011i66p9fuvm/windows/nsis/arm64
0.42.1,mac,universal,https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/universal
0.42.1,mac,arm64,https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/arm64
0.42.1,mac,x64,https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/x64
0.42.1,linux,x64,https://downloader.cursor.sh/builds/241011i66p9fuvm/linux/appImage/x64
0.42.0,windows,x64,https://downloader.cursor.sh/builds/241009fij7nohn5/windows/nsis/x64
0.42.0,windows,arm64,https://downloader.cursor.sh/builds/241009fij7nohn5/windows/nsis/arm64
0.42.0,mac,universal,https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/universal
0.42.0,mac,arm64,https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/arm64
0.42.0,mac,x64,https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/x64
0.42.0,linux,x64,https://downloader.cursor.sh/builds/241009fij7nohn5/linux/appImage/x64
0.41.3,windows,x64,https://downloader.cursor.sh/builds/240925fkhcqg263/windows/nsis/x64
0.41.3,windows,arm64,https://downloader.cursor.sh/builds/240925fkhcqg263/windows/nsis/arm64
0.41.3,mac,universal,https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/universal
0.41.3,mac,arm64,https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/arm64
0.41.3,mac,x64,https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/x64
0.41.3,linux,x64,https://downloader.cursor.sh/builds/240925fkhcqg263/linux/appImage/x64
0.41.2,windows,x64,https://downloader.cursor.sh/builds/240921llnho65ov/windows/nsis/x64
0.41.2,windows,arm64,https://downloader.cursor.sh/builds/240921llnho65ov/windows/nsis/arm64
0.41.2,mac,universal,https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/universal
0.41.2,mac,arm64,https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/arm64
0.41.2,mac,x64,https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/x64
0.41.2,linux,x64,https://downloader.cursor.sh/builds/240921llnho65ov/linux/appImage/x64
0.41.1,windows,x64,https://downloader.cursor.sh/builds/2409189xe3envg5/windows/nsis/x64
0.41.1,windows,arm64,https://downloader.cursor.sh/builds/2409189xe3envg5/windows/nsis/arm64
0.41.1,mac,universal,https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/universal
0.41.1,mac,arm64,https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/arm64
0.41.1,mac,x64,https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/x64
0.41.1,linux,x64,https://downloader.cursor.sh/builds/2409189xe3envg5/linux/appImage/x64
0.40.4,windows,x64,https://downloader.cursor.sh/builds/2409052yfcjagw2/windows/nsis/x64
0.40.4,windows,arm64,https://downloader.cursor.sh/builds/2409052yfcjagw2/windows/nsis/arm64
0.40.4,mac,universal,https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/universal
0.40.4,mac,arm64,https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/arm64
0.40.4,mac,x64,https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/x64
0.40.4,linux,x64,https://downloader.cursor.sh/builds/2409052yfcjagw2/linux/appImage/x64
0.40.3,windows,x64,https://downloader.cursor.sh/builds/240829epqamqp7h/windows/nsis/x64
0.40.3,windows,arm64,https://downloader.cursor.sh/builds/240829epqamqp7h/windows/nsis/arm64
0.40.3,mac,universal,https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/universal
0.40.3,mac,arm64,https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/arm64
0.40.3,mac,x64,https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/x64
0.40.3,linux,x64,https://downloader.cursor.sh/builds/240829epqamqp7h/linux/appImage/x64
0.40.2,windows,x64,https://downloader.cursor.sh/builds/240828c021k3aib/windows/nsis/x64
0.40.2,windows,arm64,https://downloader.cursor.sh/builds/240828c021k3aib/windows/nsis/arm64
0.40.2,mac,universal,https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/universal
0.40.2,mac,arm64,https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/arm64
0.40.2,mac,x64,https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/x64
0.40.2,linux,x64,https://downloader.cursor.sh/builds/240828c021k3aib/linux/appImage/x64
0.40.1,windows,x64,https://downloader.cursor.sh/builds/2408245thnycuzj/windows/nsis/x64
0.40.1,windows,arm64,https://downloader.cursor.sh/builds/2408245thnycuzj/windows/nsis/arm64
0.40.1,mac,universal,https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/universal
0.40.1,mac,arm64,https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/arm64
0.40.1,mac,x64,https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/x64
0.40.1,linux,x64,https://downloader.cursor.sh/builds/2408245thnycuzj/linux/appImage/x64
0.40.0,windows,x64,https://downloader.cursor.sh/builds/24082202sreugb2/windows/nsis/x64
0.40.0,windows,arm64,https://downloader.cursor.sh/builds/24082202sreugb2/windows/nsis/arm64
0.40.0,mac,universal,https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/universal
0.40.0,mac,arm64,https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/arm64
0.40.0,mac,x64,https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/x64
0.40.0,linux,x64,https://downloader.cursor.sh/builds/24082202sreugb2/linux/appImage/x64
0.39.6,windows,x64,https://downloader.cursor.sh/builds/240819ih4ta2fye/windows/nsis/x64
0.39.6,windows,arm64,https://downloader.cursor.sh/builds/240819ih4ta2fye/windows/nsis/arm64
0.39.6,mac,universal,https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/universal
0.39.6,mac,arm64,https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/arm64
0.39.6,mac,x64,https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/x64
0.39.6,linux,x64,https://downloader.cursor.sh/builds/240819ih4ta2fye/linux/appImage/x64
0.39.5,windows,x64,https://downloader.cursor.sh/builds/240814y9rhzmu7h/windows/nsis/x64
0.39.5,windows,arm64,https://downloader.cursor.sh/builds/240814y9rhzmu7h/windows/nsis/arm64
0.39.5,mac,universal,https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/universal
0.39.5,mac,arm64,https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/arm64
0.39.5,mac,x64,https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/x64
0.39.5,linux,x64,https://downloader.cursor.sh/builds/240814y9rhzmu7h/linux/appImage/x64
0.39.4,windows,x64,https://downloader.cursor.sh/builds/240810elmeg3seq/windows/nsis/x64
0.39.4,windows,arm64,https://downloader.cursor.sh/builds/240810elmeg3seq/windows/nsis/arm64
0.39.4,mac,universal,https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/universal
0.39.4,mac,arm64,https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/arm64
0.39.4,mac,x64,https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/x64
0.39.4,linux,x64,https://downloader.cursor.sh/builds/240810elmeg3seq/linux/appImage/x64
0.39.3,windows,x64,https://downloader.cursor.sh/builds/2408092hoyaxt9m/windows/nsis/x64
0.39.3,windows,arm64,https://downloader.cursor.sh/builds/2408092hoyaxt9m/windows/nsis/arm64
0.39.3,mac,universal,https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/universal
0.39.3,mac,arm64,https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/arm64
0.39.3,mac,x64,https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/x64
0.39.3,linux,x64,https://downloader.cursor.sh/builds/2408092hoyaxt9m/linux/appImage/x64
0.39.2,windows,x64,https://downloader.cursor.sh/builds/240808phaxh4b5r/windows/nsis/x64
0.39.2,windows,arm64,https://downloader.cursor.sh/builds/240808phaxh4b5r/windows/nsis/arm64
0.39.2,mac,universal,https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/universal
0.39.2,mac,arm64,https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/arm64
0.39.2,mac,x64,https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/x64
0.39.2,linux,x64,https://downloader.cursor.sh/builds/240808phaxh4b5r/linux/appImage/x64
0.39.1,windows,x64,https://downloader.cursor.sh/builds/240807g919tr4ly/windows/nsis/x64
0.39.1,windows,arm64,https://downloader.cursor.sh/builds/240807g919tr4ly/windows/nsis/arm64
0.39.1,mac,universal,https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/universal
0.39.1,mac,arm64,https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/arm64
0.39.1,mac,x64,https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/x64
0.39.1,linux,x64,https://downloader.cursor.sh/builds/240807g919tr4ly/linux/appImage/x64
0.39.0,windows,x64,https://downloader.cursor.sh/builds/240802cdixtv9a6/windows/nsis/x64
0.39.0,windows,arm64,https://downloader.cursor.sh/builds/240802cdixtv9a6/windows/nsis/arm64
0.39.0,mac,universal,https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/universal
0.39.0,mac,arm64,https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/arm64
0.39.0,mac,x64,https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/x64
0.39.0,linux,x64,https://downloader.cursor.sh/builds/240802cdixtv9a6/linux/appImage/x64
0.38.1,windows,x64,https://downloader.cursor.sh/builds/240725f0ti25os7/windows/nsis/x64
0.38.1,windows,arm64,https://downloader.cursor.sh/builds/240725f0ti25os7/windows/nsis/arm64
0.38.1,mac,universal,https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/universal
0.38.1,mac,arm64,https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/arm64
0.38.1,mac,x64,https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/x64
0.38.1,linux,x64,https://downloader.cursor.sh/builds/240725f0ti25os7/linux/appImage/x64
0.38.0,windows,x64,https://downloader.cursor.sh/builds/240723790oxe4a2/windows/nsis/x64
0.38.0,windows,arm64,https://downloader.cursor.sh/builds/240723790oxe4a2/windows/nsis/arm64
0.38.0,mac,universal,https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/universal
0.38.0,mac,arm64,https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/arm64
0.38.0,mac,x64,https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/x64
0.38.0,linux,x64,https://downloader.cursor.sh/builds/240723790oxe4a2/linux/appImage/x64
0.37.1,windows,x64,https://downloader.cursor.sh/builds/240714yrr3gmv3k/windows/nsis/x64
0.37.1,windows,arm64,https://downloader.cursor.sh/builds/240714yrr3gmv3k/windows/nsis/arm64
0.37.1,mac,universal,https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/universal
0.37.1,mac,arm64,https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/arm64
0.37.1,mac,x64,https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/x64
0.37.1,linux,x64,https://downloader.cursor.sh/builds/240714yrr3gmv3k/linux/appImage/x64
0.36.2,windows,x64,https://downloader.cursor.sh/builds/2407077n6pzboby/windows/nsis/x64
0.36.2,windows,arm64,https://downloader.cursor.sh/builds/2407077n6pzboby/windows/nsis/arm64
0.36.2,mac,universal,https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/universal
0.36.2,mac,arm64,https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/arm64
0.36.2,mac,x64,https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/x64
0.36.2,linux,x64,https://downloader.cursor.sh/builds/2407077n6pzboby/linux/appImage/x64
0.36.1,windows,x64,https://downloader.cursor.sh/builds/240706uekt2eaft/windows/nsis/x64
0.36.1,windows,arm64,https://downloader.cursor.sh/builds/240706uekt2eaft/windows/nsis/arm64
0.36.1,mac,universal,https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/universal
0.36.1,mac,arm64,https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/arm64
0.36.1,mac,x64,https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/x64
0.36.1,linux,x64,https://downloader.cursor.sh/builds/240706uekt2eaft/linux/appImage/x64
0.36.0,windows,x64,https://downloader.cursor.sh/builds/240703xqkjv5aqa/windows/nsis/x64
0.36.0,windows,arm64,https://downloader.cursor.sh/builds/240703xqkjv5aqa/windows/nsis/arm64
0.36.0,mac,universal,https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/universal
0.36.0,mac,arm64,https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/arm64
0.36.0,mac,x64,https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/x64
0.36.0,linux,x64,https://downloader.cursor.sh/builds/240703xqkjv5aqa/linux/appImage/x64
0.35.1,windows,x64,https://downloader.cursor.sh/builds/240621pc2f7rl8a/windows/nsis/x64
0.35.1,windows,arm64,https://downloader.cursor.sh/builds/240621pc2f7rl8a/windows/nsis/arm64
0.35.1,mac,universal,https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/universal
0.35.1,mac,arm64,https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/arm64
0.35.1,mac,x64,https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/x64
0.35.1,linux,x64,https://downloader.cursor.sh/builds/240621pc2f7rl8a/linux/appImage/x64
0.35.0,windows,x64,https://downloader.cursor.sh/builds/240608cv11mfsjl/windows/nsis/x64
0.35.0,windows,arm64,https://downloader.cursor.sh/builds/240608cv11mfsjl/windows/nsis/arm64
0.35.0,mac,universal,https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/universal
0.35.0,mac,arm64,https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/arm64
0.35.0,mac,x64,https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/x64
0.35.0,linux,x64,https://downloader.cursor.sh/builds/240608cv11mfsjl/linux/appImage/x64
0.34.6,windows,x64,https://downloader.cursor.sh/builds/240606kgzq24cfb/windows/nsis/x64
0.34.6,windows,arm64,https://downloader.cursor.sh/builds/240606kgzq24cfb/windows/nsis/arm64
0.34.6,mac,universal,https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/universal
0.34.6,mac,arm64,https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/arm64
0.34.6,mac,x64,https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/x64
0.34.6,linux,x64,https://downloader.cursor.sh/builds/240606kgzq24cfb/linux/appImage/x64
0.34.6,windows,x64,https://downloader.cursor.sh/builds/240605r495newcf/windows/nsis/x64
0.34.6,windows,arm64,https://downloader.cursor.sh/builds/240605r495newcf/windows/nsis/arm64
0.34.6,mac,universal,https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/universal
0.34.6,mac,arm64,https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/arm64
0.34.6,mac,x64,https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/x64
0.34.6,linux,x64,https://downloader.cursor.sh/builds/240605r495newcf/linux/appImage/x64
0.34.5,windows,x64,https://downloader.cursor.sh/builds/240602rq6xovt3a/windows/nsis/x64
0.34.5,windows,arm64,https://downloader.cursor.sh/builds/240602rq6xovt3a/windows/nsis/arm64
0.34.5,mac,universal,https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/universal
0.34.5,mac,arm64,https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/arm64
0.34.5,mac,x64,https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/x64
0.34.5,linux,x64,https://downloader.cursor.sh/builds/240602rq6xovt3a/linux/appImage/x64
0.34.4,windows,x64,https://downloader.cursor.sh/builds/2406014h0rgjghe/windows/nsis/x64
0.34.4,windows,arm64,https://downloader.cursor.sh/builds/2406014h0rgjghe/windows/nsis/arm64
0.34.4,mac,universal,https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/universal
0.34.4,mac,arm64,https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/arm64
0.34.4,mac,x64,https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/x64
0.34.4,linux,x64,https://downloader.cursor.sh/builds/2406014h0rgjghe/linux/appImage/x64
0.34.3,windows,x64,https://downloader.cursor.sh/builds/240529baisuyd2e/windows/nsis/x64
0.34.3,windows,arm64,https://downloader.cursor.sh/builds/240529baisuyd2e/windows/nsis/arm64
0.34.3,mac,universal,https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/universal
0.34.3,mac,arm64,https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/arm64
0.34.3,mac,x64,https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/x64
0.34.3,linux,x64,https://downloader.cursor.sh/builds/240529baisuyd2e/linux/appImage/x64
0.34.2,windows,x64,https://downloader.cursor.sh/builds/240528whh1qyo9h/windows/nsis/x64
0.34.2,windows,arm64,https://downloader.cursor.sh/builds/240528whh1qyo9h/windows/nsis/arm64
0.34.2,mac,universal,https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/universal
0.34.2,mac,arm64,https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/arm64
0.34.2,mac,x64,https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/x64
0.34.2,linux,x64,https://downloader.cursor.sh/builds/240528whh1qyo9h/linux/appImage/x64
0.34.1,windows,x64,https://downloader.cursor.sh/builds/24052838ygfselt/windows/nsis/x64
0.34.1,windows,arm64,https://downloader.cursor.sh/builds/24052838ygfselt/windows/nsis/arm64
0.34.1,mac,universal,https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/universal
0.34.1,mac,arm64,https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/arm64
0.34.1,mac,x64,https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/x64
0.34.1,linux,x64,https://downloader.cursor.sh/builds/24052838ygfselt/linux/appImage/x64
0.34.0,windows,x64,https://downloader.cursor.sh/builds/240527xus72jmkj/windows/nsis/x64
0.34.0,windows,arm64,https://downloader.cursor.sh/builds/240527xus72jmkj/windows/nsis/arm64
0.34.0,mac,universal,https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/universal
0.34.0,mac,arm64,https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/arm64
0.34.0,mac,x64,https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/x64
0.34.0,linux,x64,https://downloader.cursor.sh/builds/240527xus72jmkj/linux/appImage/x64
0.33.4,windows,x64,https://downloader.cursor.sh/builds/240511kb8wt1tms/windows/nsis/x64
0.33.4,windows,arm64,https://downloader.cursor.sh/builds/240511kb8wt1tms/windows/nsis/arm64
0.33.4,mac,universal,https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/universal
0.33.4,mac,arm64,https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/arm64
0.33.4,mac,x64,https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/x64
0.33.4,linux,x64,https://downloader.cursor.sh/builds/240511kb8wt1tms/linux/appImage/x64
0.33.3,windows,x64,https://downloader.cursor.sh/builds/2405103lx8342ta/windows/nsis/x64
0.33.3,windows,arm64,https://downloader.cursor.sh/builds/2405103lx8342ta/windows/nsis/arm64
0.33.3,mac,universal,https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/universal
0.33.3,mac,arm64,https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/arm64
0.33.3,mac,x64,https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/x64
0.33.3,linux,x64,https://downloader.cursor.sh/builds/2405103lx8342ta/linux/appImage/x64
0.33.2,windows,x64,https://downloader.cursor.sh/builds/240510dwmw395qe/windows/nsis/x64
0.33.2,windows,arm64,https://downloader.cursor.sh/builds/240510dwmw395qe/windows/nsis/arm64
0.33.2,mac,universal,https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/universal
0.33.2,mac,arm64,https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/arm64
0.33.2,mac,x64,https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/x64
0.33.2,linux,x64,https://downloader.cursor.sh/builds/240510dwmw395qe/linux/appImage/x64
0.33.1,windows,x64,https://downloader.cursor.sh/builds/2405039a9h2fqc9/windows/nsis/x64
0.33.1,windows,arm64,https://downloader.cursor.sh/builds/2405039a9h2fqc9/windows/nsis/arm64
0.33.1,mac,universal,https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/universal
0.33.1,mac,arm64,https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/arm64
0.33.1,mac,x64,https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/x64
0.33.1,linux,x64,https://downloader.cursor.sh/builds/2405039a9h2fqc9/linux/appImage/x64
0.33.0,windows,x64,https://downloader.cursor.sh/builds/240503hyjsnhazo/windows/nsis/x64
0.33.0,windows,arm64,https://downloader.cursor.sh/builds/240503hyjsnhazo/windows/nsis/arm64
0.33.0,mac,universal,https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/universal
0.33.0,mac,arm64,https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/arm64
0.33.0,mac,x64,https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/x64
0.33.0,linux,x64,https://downloader.cursor.sh/builds/240503hyjsnhazo/linux/appImage/x64
0.32.8,windows,x64,https://downloader.cursor.sh/builds/240428d499o6zja/windows/nsis/x64
0.32.8,windows,arm64,https://downloader.cursor.sh/builds/240428d499o6zja/windows/nsis/arm64
0.32.8,mac,universal,https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/universal
0.32.8,mac,arm64,https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/arm64
0.32.8,mac,x64,https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/x64
0.32.8,linux,x64,https://downloader.cursor.sh/builds/240428d499o6zja/linux/appImage/x64
0.32.7,windows,x64,https://downloader.cursor.sh/builds/240427w5guozr0l/windows/nsis/x64
0.32.7,windows,arm64,https://downloader.cursor.sh/builds/240427w5guozr0l/windows/nsis/arm64
0.32.7,mac,universal,https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/universal
0.32.7,mac,arm64,https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/arm64
0.32.7,mac,x64,https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/x64
0.32.7,linux,x64,https://downloader.cursor.sh/builds/240427w5guozr0l/linux/appImage/x64
0.32.2,windows,x64,https://downloader.cursor.sh/builds/240417ab4wag7sx/windows/nsis/x64
0.32.2,windows,arm64,https://downloader.cursor.sh/builds/240417ab4wag7sx/windows/nsis/arm64
0.32.2,mac,universal,https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/universal
0.32.2,mac,arm64,https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/arm64
0.32.2,mac,x64,https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/x64
0.32.2,linux,x64,https://downloader.cursor.sh/builds/240417ab4wag7sx/linux/appImage/x64
0.32.1,windows,x64,https://downloader.cursor.sh/builds/2404152czor73fk/windows/nsis/x64
0.32.1,windows,arm64,https://downloader.cursor.sh/builds/2404152czor73fk/windows/nsis/arm64
0.32.1,mac,universal,https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/universal
0.32.1,mac,arm64,https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/arm64
0.32.1,mac,x64,https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/x64
0.32.1,linux,x64,https://downloader.cursor.sh/builds/2404152czor73fk/linux/appImage/x64
0.32.0,windows,x64,https://downloader.cursor.sh/builds/240412ugli06ue0/windows/nsis/x64
0.32.0,windows,arm64,https://downloader.cursor.sh/builds/240412ugli06ue0/windows/nsis/arm64
0.32.0,mac,universal,https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/universal
0.32.0,mac,arm64,https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/arm64
0.32.0,mac,x64,https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/x64
0.32.0,linux,x64,https://downloader.cursor.sh/builds/240412ugli06ue0/linux/appImage/x64
0.31.3,windows,x64,https://downloader.cursor.sh/builds/240402rq154jw46/windows/nsis/x64
0.31.3,windows,arm64,https://downloader.cursor.sh/builds/240402rq154jw46/windows/nsis/arm64
0.31.3,mac,universal,https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/universal
0.31.3,mac,arm64,https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/arm64
0.31.3,mac,x64,https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/x64
0.31.3,linux,x64,https://downloader.cursor.sh/builds/240402rq154jw46/linux/appImage/x64
0.31.1,windows,x64,https://downloader.cursor.sh/builds/240402pkwfm2ps6/windows/nsis/x64
0.31.1,windows,arm64,https://downloader.cursor.sh/builds/240402pkwfm2ps6/windows/nsis/arm64
0.31.1,mac,universal,https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/universal
0.31.1,mac,arm64,https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/arm64
0.31.1,mac,x64,https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/x64
0.31.1,linux,x64,https://downloader.cursor.sh/builds/240402pkwfm2ps6/linux/appImage/x64
0.31.0,windows,x64,https://downloader.cursor.sh/builds/2404018j7z0xv2g/windows/nsis/x64
0.31.0,windows,arm64,https://downloader.cursor.sh/builds/2404018j7z0xv2g/windows/nsis/arm64
0.31.0,mac,universal,https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/universal
0.31.0,mac,arm64,https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/arm64
0.31.0,mac,x64,https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/x64
0.31.0,linux,x64,https://downloader.cursor.sh/builds/2404018j7z0xv2g/linux/appImage/x64
0.30.5,windows,x64,https://downloader.cursor.sh/builds/240327tmd2ozdc7/windows/nsis/x64
0.30.5,windows,arm64,https://downloader.cursor.sh/builds/240327tmd2ozdc7/windows/nsis/arm64
0.30.5,mac,universal,https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/universal
0.30.5,mac,arm64,https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/arm64
0.30.5,mac,x64,https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/x64
0.30.5,linux,x64,https://downloader.cursor.sh/builds/240327tmd2ozdc7/linux/appImage/x64
0.30.4,windows,x64,https://downloader.cursor.sh/builds/240325dezy8ziab/windows/nsis/x64
0.30.4,windows,arm64,https://downloader.cursor.sh/builds/240325dezy8ziab/windows/nsis/arm64
0.30.4,mac,universal,https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/universal
0.30.4,mac,arm64,https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/arm64
0.30.4,mac,x64,https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/x64
0.30.4,linux,x64,https://downloader.cursor.sh/builds/240325dezy8ziab/linux/appImage/x64
0.30.3,windows,x64,https://downloader.cursor.sh/builds/2403229gtuhto9g/windows/nsis/x64
0.30.3,windows,arm64,https://downloader.cursor.sh/builds/2403229gtuhto9g/windows/nsis/arm64
0.30.3,mac,universal,https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/universal
0.30.3,mac,arm64,https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/arm64
0.30.3,mac,x64,https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/x64
0.30.3,linux,x64,https://downloader.cursor.sh/builds/2403229gtuhto9g/linux/appImage/x64
0.30.2,windows,x64,https://downloader.cursor.sh/builds/240322gzqjm3p0d/windows/nsis/x64
0.30.2,windows,arm64,https://downloader.cursor.sh/builds/240322gzqjm3p0d/windows/nsis/arm64
0.30.2,mac,universal,https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/universal
0.30.2,mac,arm64,https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/arm64
0.30.2,mac,x64,https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/x64
0.30.2,linux,x64,https://downloader.cursor.sh/builds/240322gzqjm3p0d/linux/appImage/x64
0.30.1,windows,x64,https://downloader.cursor.sh/builds/2403212w1ejubt8/windows/nsis/x64
0.30.1,windows,arm64,https://downloader.cursor.sh/builds/2403212w1ejubt8/windows/nsis/arm64
0.30.1,mac,universal,https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/universal
0.30.1,mac,arm64,https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/arm64
0.30.1,mac,x64,https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/x64
0.30.1,linux,x64,https://downloader.cursor.sh/builds/2403212w1ejubt8/linux/appImage/x64
0.30.0,windows,x64,https://downloader.cursor.sh/builds/240320tpx86e7hk/windows/nsis/x64
0.30.0,windows,arm64,https://downloader.cursor.sh/builds/240320tpx86e7hk/windows/nsis/arm64
0.30.0,mac,universal,https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/universal
0.30.0,mac,arm64,https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/arm64
0.30.0,mac,x64,https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/x64
0.30.0,linux,x64,https://downloader.cursor.sh/builds/240320tpx86e7hk/linux/appImage/x64
0.29.1,windows,x64,https://downloader.cursor.sh/builds/2403027twmz0d1t/windows/nsis/x64
0.29.1,windows,arm64,https://downloader.cursor.sh/builds/2403027twmz0d1t/windows/nsis/arm64
0.29.1,mac,universal,https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/universal
0.29.1,mac,arm64,https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/arm64
0.29.1,mac,x64,https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/x64
0.29.1,linux,x64,https://downloader.cursor.sh/builds/2403027twmz0d1t/linux/appImage/x64
0.29.0,windows,x64,https://downloader.cursor.sh/builds/240301kpqvacw2h/windows/nsis/x64
0.29.0,windows,arm64,https://downloader.cursor.sh/builds/240301kpqvacw2h/windows/nsis/arm64
0.29.0,mac,universal,https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/universal
0.29.0,mac,arm64,https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/arm64
0.29.0,mac,x64,https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/x64
0.29.0,linux,x64,https://downloader.cursor.sh/builds/240301kpqvacw2h/linux/appImage/x64
0.28.1,windows,x64,https://downloader.cursor.sh/builds/240226tstim4evd/windows/nsis/x64
0.28.1,windows,arm64,https://downloader.cursor.sh/builds/240226tstim4evd/windows/nsis/arm64
0.28.1,mac,universal,https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/universal
0.28.1,mac,arm64,https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/arm64
0.28.1,mac,x64,https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/x64
0.28.1,linux,x64,https://downloader.cursor.sh/builds/240226tstim4evd/linux/appImage/x64
0.28.0,windows,x64,https://downloader.cursor.sh/builds/240224g2d7jazcq/windows/nsis/x64
0.28.0,windows,arm64,https://downloader.cursor.sh/builds/240224g2d7jazcq/windows/nsis/arm64
0.28.0,mac,universal,https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/universal
0.28.0,mac,arm64,https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/arm64
0.28.0,mac,x64,https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/x64
0.28.0,linux,x64,https://downloader.cursor.sh/builds/240224g2d7jazcq/linux/appImage/x64
0.27.4,windows,x64,https://downloader.cursor.sh/builds/240219qdbagglqz/windows/nsis/x64
0.27.4,windows,arm64,https://downloader.cursor.sh/builds/240219qdbagglqz/windows/nsis/arm64
0.27.4,mac,universal,https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/universal
0.27.4,mac,arm64,https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/arm64
0.27.4,mac,x64,https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/x64
0.27.4,linux,x64,https://downloader.cursor.sh/builds/240219qdbagglqz/linux/appImage/x64
0.27.3,windows,x64,https://downloader.cursor.sh/builds/240218dxhc6y8os/windows/nsis/x64
0.27.3,windows,arm64,https://downloader.cursor.sh/builds/240218dxhc6y8os/windows/nsis/arm64
0.27.3,mac,universal,https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/universal
0.27.3,mac,arm64,https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/arm64
0.27.3,mac,x64,https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/x64
0.27.3,linux,x64,https://downloader.cursor.sh/builds/240218dxhc6y8os/linux/appImage/x64
0.27.2,windows,x64,https://downloader.cursor.sh/builds/240216kkzl9nhxi/windows/nsis/x64
0.27.2,windows,arm64,https://downloader.cursor.sh/builds/240216kkzl9nhxi/windows/nsis/arm64
0.27.2,mac,universal,https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/universal
0.27.2,mac,arm64,https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/arm64
0.27.2,mac,x64,https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/x64
0.27.2,linux,x64,https://downloader.cursor.sh/builds/240216kkzl9nhxi/linux/appImage/x64
0.27.1,windows,x64,https://downloader.cursor.sh/builds/240215l4ooehnyl/windows/nsis/x64
0.27.1,windows,arm64,https://downloader.cursor.sh/builds/240215l4ooehnyl/windows/nsis/arm64
0.27.1,mac,universal,https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/universal
0.27.1,mac,arm64,https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/arm64
0.27.1,mac,x64,https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/x64
0.27.1,linux,x64,https://downloader.cursor.sh/builds/240215l4ooehnyl/linux/appImage/x64
0.27.0,windows,x64,https://downloader.cursor.sh/builds/240215at6ewkd59/windows/nsis/x64
0.27.0,windows,arm64,https://downloader.cursor.sh/builds/240215at6ewkd59/windows/nsis/arm64
0.27.0,mac,universal,https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/universal
0.27.0,mac,arm64,https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/arm64
0.27.0,mac,x64,https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/x64
0.27.0,linux,x64,https://downloader.cursor.sh/builds/240215at6ewkd59/linux/appImage/x64
0.26.2,windows,x64,https://downloader.cursor.sh/builds/240212o6r9qxtcg/windows/nsis/x64
0.26.2,windows,arm64,https://downloader.cursor.sh/builds/240212o6r9qxtcg/windows/nsis/arm64
0.26.2,mac,universal,https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/universal
0.26.2,mac,arm64,https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/arm64
0.26.2,mac,x64,https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/x64
0.26.2,linux,x64,https://downloader.cursor.sh/builds/240212o6r9qxtcg/linux/appImage/x64
0.26.1,windows,x64,https://downloader.cursor.sh/builds/2402107t904hing/windows/nsis/x64
0.26.1,windows,arm64,https://downloader.cursor.sh/builds/2402107t904hing/windows/nsis/arm64
0.26.1,mac,universal,https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/universal
0.26.1,mac,arm64,https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/arm64
0.26.1,mac,x64,https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/x64
0.26.1,linux,x64,https://downloader.cursor.sh/builds/2402107t904hing/linux/appImage/x64
0.26.0,windows,x64,https://downloader.cursor.sh/builds/240210k8is5xr6v/windows/nsis/x64
0.26.0,windows,arm64,https://downloader.cursor.sh/builds/240210k8is5xr6v/windows/nsis/arm64
0.26.0,mac,universal,https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/universal
0.26.0,mac,arm64,https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/arm64
0.26.0,mac,x64,https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/x64
0.26.0,linux,x64,https://downloader.cursor.sh/builds/240210k8is5xr6v/linux/appImage/x64
0.25.3,windows,x64,https://downloader.cursor.sh/builds/240207aacboj1k8/windows/nsis/x64
0.25.3,windows,arm64,https://downloader.cursor.sh/builds/240207aacboj1k8/windows/nsis/arm64
0.25.3,mac,universal,https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/universal
0.25.3,mac,arm64,https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/arm64
0.25.3,mac,x64,https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/x64
0.25.3,linux,x64,https://downloader.cursor.sh/builds/240207aacboj1k8/linux/appImage/x64
0.25.2,windows,x64,https://downloader.cursor.sh/builds/240206p3708uc9z/windows/nsis/x64
0.25.2,windows,arm64,https://downloader.cursor.sh/builds/240206p3708uc9z/windows/nsis/arm64
0.25.2,mac,universal,https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/universal
0.25.2,mac,arm64,https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/arm64
0.25.2,mac,x64,https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/x64
0.25.2,linux,x64,https://downloader.cursor.sh/builds/240206p3708uc9z/linux/appImage/x64
0.25.1,windows,x64,https://downloader.cursor.sh/builds/2402033t030rprh/windows/nsis/x64
0.25.1,windows,arm64,https://downloader.cursor.sh/builds/2402033t030rprh/windows/nsis/arm64
0.25.1,mac,universal,https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/universal
0.25.1,mac,arm64,https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/arm64
0.25.1,mac,x64,https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/x64
0.25.1,linux,x64,https://downloader.cursor.sh/builds/2402033t030rprh/linux/appImage/x64
0.25.0,windows,x64,https://downloader.cursor.sh/builds/240203kh86t91q8/windows/nsis/x64
0.25.0,windows,arm64,https://downloader.cursor.sh/builds/240203kh86t91q8/windows/nsis/arm64
0.25.0,mac,universal,https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/universal
0.25.0,mac,arm64,https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/arm64
0.25.0,mac,x64,https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/x64
0.25.0,linux,x64,https://downloader.cursor.sh/builds/240203kh86t91q8/linux/appImage/x64
0.24.4,windows,x64,https://downloader.cursor.sh/builds/240129iecm3e33w/windows/nsis/x64
0.24.4,windows,arm64,https://downloader.cursor.sh/builds/240129iecm3e33w/windows/nsis/arm64
0.24.4,mac,universal,https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/universal
0.24.4,mac,arm64,https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/arm64
0.24.4,mac,x64,https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/x64
0.24.4,linux,x64,https://downloader.cursor.sh/builds/240129iecm3e33w/linux/appImage/x64
0.24.3,windows,x64,https://downloader.cursor.sh/builds/2401289dx79qsc0/windows/nsis/x64
0.24.3,windows,arm64,https://downloader.cursor.sh/builds/2401289dx79qsc0/windows/nsis/arm64
0.24.3,mac,universal,https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/universal
0.24.3,mac,arm64,https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/arm64
0.24.3,mac,x64,https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/x64
0.24.3,linux,x64,https://downloader.cursor.sh/builds/2401289dx79qsc0/linux/appImage/x64
0.24.1,windows,x64,https://downloader.cursor.sh/builds/240127cad17436d/windows/nsis/x64
0.24.1,windows,arm64,https://downloader.cursor.sh/builds/240127cad17436d/windows/nsis/arm64
0.24.1,mac,universal,https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/universal
0.24.1,mac,arm64,https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/arm64
0.24.1,mac,x64,https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/x64
0.24.1,linux,x64,https://downloader.cursor.sh/builds/240127cad17436d/linux/appImage/x64
0.24.0,windows,x64,https://downloader.cursor.sh/builds/240126wp9irhmza/windows/nsis/x64
0.24.0,windows,arm64,https://downloader.cursor.sh/builds/240126wp9irhmza/windows/nsis/arm64
0.24.0,mac,universal,https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/universal
0.24.0,mac,arm64,https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/arm64
0.24.0,mac,x64,https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/x64
0.24.0,linux,x64,https://downloader.cursor.sh/builds/240126wp9irhmza/linux/appImage/x64
0.23.9,windows,x64,https://downloader.cursor.sh/builds/240124dsmraeml3/windows/nsis/x64
0.23.9,windows,arm64,https://downloader.cursor.sh/builds/240124dsmraeml3/windows/nsis/arm64
0.23.9,mac,universal,https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/universal
0.23.9,mac,arm64,https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/arm64
0.23.9,mac,x64,https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/x64
0.23.9,linux,x64,https://downloader.cursor.sh/builds/240124dsmraeml3/linux/appImage/x64
0.23.8,windows,x64,https://downloader.cursor.sh/builds/240123fnn1hj1fg/windows/nsis/x64
0.23.8,windows,arm64,https://downloader.cursor.sh/builds/240123fnn1hj1fg/windows/nsis/arm64
0.23.8,mac,universal,https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/universal
0.23.8,mac,arm64,https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/arm64
0.23.8,mac,x64,https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/x64
0.23.8,linux,x64,https://downloader.cursor.sh/builds/240123fnn1hj1fg/linux/appImage/x64
0.23.7,windows,x64,https://downloader.cursor.sh/builds/240123xsfe7ywcv/windows/nsis/x64
0.23.7,windows,arm64,https://downloader.cursor.sh/builds/240123xsfe7ywcv/windows/nsis/arm64
0.23.7,mac,universal,https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/universal
0.23.7,mac,arm64,https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/arm64
0.23.7,mac,x64,https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/x64
0.23.7,linux,x64,https://downloader.cursor.sh/builds/240123xsfe7ywcv/linux/appImage/x64
0.23.6,windows,x64,https://downloader.cursor.sh/builds/240121m1740elox/windows/nsis/x64
0.23.6,windows,arm64,https://downloader.cursor.sh/builds/240121m1740elox/windows/nsis/arm64
0.23.6,mac,universal,https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/universal
0.23.6,mac,arm64,https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/arm64
0.23.6,mac,x64,https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/x64
0.23.6,linux,x64,https://downloader.cursor.sh/builds/240121m1740elox/linux/appImage/x64
0.23.5,windows,x64,https://downloader.cursor.sh/builds/2401215utj6tx6q/windows/nsis/x64
0.23.5,windows,arm64,https://downloader.cursor.sh/builds/2401215utj6tx6q/windows/nsis/arm64
0.23.5,mac,universal,https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/universal
0.23.5,mac,arm64,https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/arm64
0.23.5,mac,x64,https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/x64
0.23.5,linux,x64,https://downloader.cursor.sh/builds/2401215utj6tx6q/linux/appImage/x64
0.23.4,windows,x64,https://downloader.cursor.sh/builds/240121f4qy6ba2y/windows/nsis/x64
0.23.4,windows,arm64,https://downloader.cursor.sh/builds/240121f4qy6ba2y/windows/nsis/arm64
0.23.4,mac,universal,https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/universal
0.23.4,mac,arm64,https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/arm64
0.23.4,mac,x64,https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/x64
0.23.4,linux,x64,https://downloader.cursor.sh/builds/240121f4qy6ba2y/linux/appImage/x64
0.23.3,windows,x64,https://downloader.cursor.sh/builds/2401201und3ytom/windows/nsis/x64
0.23.3,windows,arm64,https://downloader.cursor.sh/builds/2401201und3ytom/windows/nsis/arm64
0.23.3,mac,universal,https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/universal
0.23.3,mac,arm64,https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/arm64
0.23.3,mac,x64,https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/x64
0.23.3,linux,x64,https://downloader.cursor.sh/builds/2401201und3ytom/linux/appImage/x64
0.23.2,windows,x64,https://downloader.cursor.sh/builds/240120an2k2hf1i/windows/nsis/x64
0.23.2,windows,arm64,https://downloader.cursor.sh/builds/240120an2k2hf1i/windows/nsis/arm64
0.23.2,mac,universal,https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/universal
0.23.2,mac,arm64,https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/arm64
0.23.2,mac,x64,https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/x64
0.23.2,linux,x64,https://downloader.cursor.sh/builds/240120an2k2hf1i/linux/appImage/x64
0.23.1,windows,x64,https://downloader.cursor.sh/builds/240119fgzxwudn9/windows/nsis/x64
0.23.1,windows,arm64,https://downloader.cursor.sh/builds/240119fgzxwudn9/windows/nsis/arm64
0.23.1,mac,universal,https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/universal
0.23.1,mac,arm64,https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/arm64
0.23.1,mac,x64,https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/x64
0.23.1,linux,x64,https://downloader.cursor.sh/builds/240119fgzxwudn9/linux/appImage/x64
0.22.2,windows,x64,https://downloader.cursor.sh/builds/24011721vsch1l1/windows/nsis/x64
0.22.2,windows,arm64,https://downloader.cursor.sh/builds/24011721vsch1l1/windows/nsis/arm64
0.22.2,mac,universal,https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/universal
0.22.2,mac,arm64,https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/arm64
0.22.2,mac,x64,https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/x64
0.22.2,linux,x64,https://downloader.cursor.sh/builds/24011721vsch1l1/linux/appImage/x64
0.22.1,windows,x64,https://downloader.cursor.sh/builds/2401083eyk8kmzc/windows/nsis/x64
0.22.1,windows,arm64,https://downloader.cursor.sh/builds/2401083eyk8kmzc/windows/nsis/arm64
0.22.1,mac,universal,https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/universal
0.22.1,mac,arm64,https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/arm64
0.22.1,mac,x64,https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/x64
0.22.1,linux,x64,https://downloader.cursor.sh/builds/2401083eyk8kmzc/linux/appImage/x64
0.22.0,windows,x64,https://downloader.cursor.sh/builds/240107qk62kvva3/windows/nsis/x64
0.22.0,windows,arm64,https://downloader.cursor.sh/builds/240107qk62kvva3/windows/nsis/arm64
0.22.0,mac,universal,https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/universal
0.22.0,mac,arm64,https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/arm64
0.22.0,mac,x64,https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/x64
0.22.0,linux,x64,https://downloader.cursor.sh/builds/240107qk62kvva3/linux/appImage/x64
0.21.1,windows,x64,https://downloader.cursor.sh/builds/231230h0vi6srww/windows/nsis/x64
0.21.1,windows,arm64,https://downloader.cursor.sh/builds/231230h0vi6srww/windows/nsis/arm64
0.21.1,mac,universal,https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/universal
0.21.1,mac,arm64,https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/arm64
0.21.1,mac,x64,https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/x64
0.21.1,linux,x64,https://downloader.cursor.sh/builds/231230h0vi6srww/linux/appImage/x64
0.21.0,windows,x64,https://downloader.cursor.sh/builds/231229ezidnxiu3/windows/nsis/x64
0.21.0,windows,arm64,https://downloader.cursor.sh/builds/231229ezidnxiu3/windows/nsis/arm64
0.21.0,mac,universal,https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/universal
0.21.0,mac,arm64,https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/arm64
0.21.0,mac,x64,https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/x64
0.21.0,linux,x64,https://downloader.cursor.sh/builds/231229ezidnxiu3/linux/appImage/x64
0.20.2,windows,x64,https://downloader.cursor.sh/builds/231219aksf83aad/windows/nsis/x64
0.20.2,windows,arm64,https://downloader.cursor.sh/builds/231219aksf83aad/windows/nsis/arm64
0.20.2,mac,universal,https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/universal
0.20.2,mac,arm64,https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/arm64
0.20.2,mac,x64,https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/x64
0.20.2,linux,x64,https://downloader.cursor.sh/builds/231219aksf83aad/linux/appImage/x64
0.20.1,windows,x64,https://downloader.cursor.sh/builds/231218ywfaxax09/windows/nsis/x64
0.20.1,windows,arm64,https://downloader.cursor.sh/builds/231218ywfaxax09/windows/nsis/arm64
0.20.1,mac,universal,https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/universal
0.20.1,mac,arm64,https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/arm64
0.20.1,mac,x64,https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/x64
0.20.1,linux,x64,https://downloader.cursor.sh/builds/231218ywfaxax09/linux/appImage/x64
0.20.0,windows,x64,https://downloader.cursor.sh/builds/231216nsyfew5j1/windows/nsis/x64
0.20.0,windows,arm64,https://downloader.cursor.sh/builds/231216nsyfew5j1/windows/nsis/arm64
0.20.0,mac,universal,https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/universal
0.20.0,mac,arm64,https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/arm64
0.20.0,mac,x64,https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/x64
0.20.0,linux,x64,https://downloader.cursor.sh/builds/231216nsyfew5j1/linux/appImage/x64
0.19.1,windows,x64,https://downloader.cursor.sh/builds/2312156z2ric57n/windows/nsis/x64
0.19.1,windows,arm64,https://downloader.cursor.sh/builds/2312156z2ric57n/windows/nsis/arm64
0.19.1,mac,universal,https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/universal
0.19.1,mac,arm64,https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/arm64
0.19.1,mac,x64,https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/x64
0.19.1,linux,x64,https://downloader.cursor.sh/builds/2312156z2ric57n/linux/appImage/x64
0.19.0,windows,x64,https://downloader.cursor.sh/builds/231214per9qal2p/windows/nsis/x64
0.19.0,windows,arm64,https://downloader.cursor.sh/builds/231214per9qal2p/windows/nsis/arm64
0.19.0,mac,universal,https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/universal
0.19.0,mac,arm64,https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/arm64
0.19.0,mac,x64,https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/x64
0.19.0,linux,x64,https://downloader.cursor.sh/builds/231214per9qal2p/linux/appImage/x64
0.18.8,windows,x64,https://downloader.cursor.sh/builds/2312098ffjr3ign/windows/nsis/x64
0.18.8,windows,arm64,https://downloader.cursor.sh/builds/2312098ffjr3ign/windows/nsis/arm64
0.18.8,mac,universal,https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/universal
0.18.8,mac,arm64,https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/arm64
0.18.8,mac,x64,https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/x64
0.18.8,linux,x64,https://downloader.cursor.sh/builds/2312098ffjr3ign/linux/appImage/x64
0.18.7,windows,x64,https://downloader.cursor.sh/builds/23120880aolip2i/windows/nsis/x64
0.18.7,windows,arm64,https://downloader.cursor.sh/builds/23120880aolip2i/windows/nsis/arm64
0.18.7,mac,universal,https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/universal
0.18.7,mac,arm64,https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/arm64
0.18.7,mac,x64,https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/x64
0.18.7,linux,x64,https://downloader.cursor.sh/builds/23120880aolip2i/linux/appImage/x64
0.18.6,windows,x64,https://downloader.cursor.sh/builds/231207ueqazwde8/windows/nsis/x64
0.18.6,windows,arm64,https://downloader.cursor.sh/builds/231207ueqazwde8/windows/nsis/arm64
0.18.6,mac,universal,https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/universal
0.18.6,mac,arm64,https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/arm64
0.18.6,mac,x64,https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/x64
0.18.6,linux,x64,https://downloader.cursor.sh/builds/231207ueqazwde8/linux/appImage/x64
0.18.5,windows,x64,https://downloader.cursor.sh/builds/231206jzy2n2sbi/windows/nsis/x64
0.18.5,windows,arm64,https://downloader.cursor.sh/builds/231206jzy2n2sbi/windows/nsis/arm64
0.18.5,mac,universal,https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/universal
0.18.5,mac,arm64,https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/arm64
0.18.5,mac,x64,https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/x64
0.18.5,linux,x64,https://downloader.cursor.sh/builds/231206jzy2n2sbi/linux/appImage/x64
0.18.4,windows,x64,https://downloader.cursor.sh/builds/2312033zjv5fqai/windows/nsis/x64
0.18.4,windows,arm64,https://downloader.cursor.sh/builds/2312033zjv5fqai/windows/nsis/arm64
0.18.4,mac,universal,https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/universal
0.18.4,mac,arm64,https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/arm64
0.18.4,mac,x64,https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/x64
0.18.4,linux,x64,https://downloader.cursor.sh/builds/2312033zjv5fqai/linux/appImage/x64
0.18.3,windows,x64,https://downloader.cursor.sh/builds/231203k2vnkxq2m/windows/nsis/x64
0.18.3,windows,arm64,https://downloader.cursor.sh/builds/231203k2vnkxq2m/windows/nsis/arm64
0.18.3,mac,universal,https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/universal
0.18.3,mac,arm64,https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/arm64
0.18.3,mac,x64,https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/x64
0.18.3,linux,x64,https://downloader.cursor.sh/builds/231203k2vnkxq2m/linux/appImage/x64
0.18.1,windows,x64,https://downloader.cursor.sh/builds/23120176kaer07t/windows/nsis/x64
0.18.1,windows,arm64,https://downloader.cursor.sh/builds/23120176kaer07t/windows/nsis/arm64
0.18.1,mac,universal,https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/universal
0.18.1,mac,arm64,https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/arm64
0.18.1,mac,x64,https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/x64
0.18.1,linux,x64,https://downloader.cursor.sh/builds/23120176kaer07t/linux/appImage/x64
0.17.0,windows,x64,https://downloader.cursor.sh/builds/231127p7iyxn8rg/windows/nsis/x64
0.17.0,windows,arm64,https://downloader.cursor.sh/builds/231127p7iyxn8rg/windows/nsis/arm64
0.17.0,mac,universal,https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/universal
0.17.0,mac,arm64,https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/arm64
0.17.0,mac,x64,https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/x64
0.17.0,linux,x64,https://downloader.cursor.sh/builds/231127p7iyxn8rg/linux/appImage/x64
0.16.0,windows,x64,https://downloader.cursor.sh/builds/231116rek2xuq6a/windows/nsis/x64
0.16.0,windows,arm64,https://downloader.cursor.sh/builds/231116rek2xuq6a/windows/nsis/arm64
0.16.0,mac,universal,https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/universal
0.16.0,mac,arm64,https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/arm64
0.16.0,mac,x64,https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/x64
0.16.0,linux,x64,https://downloader.cursor.sh/builds/231116rek2xuq6a/linux/appImage/x64
0.15.5,windows,x64,https://downloader.cursor.sh/builds/231115a5mv63u9f/windows/nsis/x64
0.15.5,windows,arm64,https://downloader.cursor.sh/builds/231115a5mv63u9f/windows/nsis/arm64
0.15.5,mac,universal,https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/universal
0.15.5,mac,arm64,https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/arm64
0.15.5,mac,x64,https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/x64
0.15.5,linux,x64,https://downloader.cursor.sh/builds/231115a5mv63u9f/linux/appImage/x64
0.15.4,windows,x64,https://downloader.cursor.sh/builds/23111469e1i3xyi/windows/nsis/x64
0.15.4,windows,arm64,https://downloader.cursor.sh/builds/23111469e1i3xyi/windows/nsis/arm64
0.15.4,mac,universal,https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/universal
0.15.4,mac,arm64,https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/arm64
0.15.4,mac,x64,https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/x64
0.15.4,linux,x64,https://downloader.cursor.sh/builds/23111469e1i3xyi/linux/appImage/x64
0.15.3,windows,x64,https://downloader.cursor.sh/builds/231113b0yv3uqem/windows/nsis/x64
0.15.3,windows,arm64,https://downloader.cursor.sh/builds/231113b0yv3uqem/windows/nsis/arm64
0.15.3,mac,universal,https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/universal
0.15.3,mac,arm64,https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/arm64
0.15.3,mac,x64,https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/x64
0.15.3,linux,x64,https://downloader.cursor.sh/builds/231113b0yv3uqem/linux/appImage/x64
0.15.2,windows,x64,https://downloader.cursor.sh/builds/231113ah0kuf3pf/windows/nsis/x64
0.15.2,windows,arm64,https://downloader.cursor.sh/builds/231113ah0kuf3pf/windows/nsis/arm64
0.15.2,mac,universal,https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/universal
0.15.2,mac,arm64,https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/arm64
0.15.2,mac,x64,https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/x64
0.15.2,linux,x64,https://downloader.cursor.sh/builds/231113ah0kuf3pf/linux/appImage/x64
0.15.1,windows,x64,https://downloader.cursor.sh/builds/231111yanyyovap/windows/nsis/x64
0.15.1,windows,arm64,https://downloader.cursor.sh/builds/231111yanyyovap/windows/nsis/arm64
0.15.1,mac,universal,https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/universal
0.15.1,mac,arm64,https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/arm64
0.15.1,mac,x64,https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/x64
0.15.1,linux,x64,https://downloader.cursor.sh/builds/231111yanyyovap/linux/appImage/x64
0.15.0,windows,x64,https://downloader.cursor.sh/builds/231110mdkomczmw/windows/nsis/x64
0.15.0,windows,arm64,https://downloader.cursor.sh/builds/231110mdkomczmw/windows/nsis/arm64
0.15.0,mac,universal,https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/universal
0.15.0,mac,arm64,https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/arm64
0.15.0,mac,x64,https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/x64
0.15.0,linux,x64,https://downloader.cursor.sh/builds/231110mdkomczmw/linux/appImage/x64
0.14.1,windows,x64,https://downloader.cursor.sh/builds/231109xitrgihlk/windows/nsis/x64
0.14.1,windows,arm64,https://downloader.cursor.sh/builds/231109xitrgihlk/windows/nsis/arm64
0.14.1,mac,universal,https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/universal
0.14.1,mac,arm64,https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/arm64
0.14.1,mac,x64,https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/x64
0.14.1,linux,x64,https://downloader.cursor.sh/builds/231109xitrgihlk/linux/appImage/x64
0.14.0,windows,x64,https://downloader.cursor.sh/builds/231102m6tuamwbx/windows/nsis/x64
0.14.0,windows,arm64,https://downloader.cursor.sh/builds/231102m6tuamwbx/windows/nsis/arm64
0.14.0,mac,universal,https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/universal
0.14.0,mac,arm64,https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/arm64
0.14.0,mac,x64,https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/x64
0.14.0,linux,x64,https://downloader.cursor.sh/builds/231102m6tuamwbx/linux/appImage/x64
0.13.4,windows,x64,https://downloader.cursor.sh/builds/231029rso7pso8l/windows/nsis/x64
0.13.4,windows,arm64,https://downloader.cursor.sh/builds/231029rso7pso8l/windows/nsis/arm64
0.13.4,mac,universal,https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/universal
0.13.4,mac,arm64,https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/arm64
0.13.4,mac,x64,https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/x64
0.13.4,linux,x64,https://downloader.cursor.sh/builds/231029rso7pso8l/linux/appImage/x64
0.13.3,windows,x64,https://downloader.cursor.sh/builds/231025uihnjkh9v/windows/nsis/x64
0.13.3,windows,arm64,https://downloader.cursor.sh/builds/231025uihnjkh9v/windows/nsis/arm64
0.13.3,mac,universal,https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/universal
0.13.3,mac,arm64,https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/arm64
0.13.3,mac,x64,https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/x64
0.13.3,linux,x64,https://downloader.cursor.sh/builds/231025uihnjkh9v/linux/appImage/x64
0.13.2,windows,x64,https://downloader.cursor.sh/builds/231024w4iv7xlm6/windows/nsis/x64
0.13.2,windows,arm64,https://downloader.cursor.sh/builds/231024w4iv7xlm6/windows/nsis/arm64
0.13.2,mac,universal,https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/universal
0.13.2,mac,arm64,https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/arm64
0.13.2,mac,x64,https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/x64
0.13.2,linux,x64,https://downloader.cursor.sh/builds/231024w4iv7xlm6/linux/appImage/x64
0.13.1,windows,x64,https://downloader.cursor.sh/builds/231022f3j0ubckv/windows/nsis/x64
0.13.1,windows,arm64,https://downloader.cursor.sh/builds/231022f3j0ubckv/windows/nsis/arm64
0.13.1,mac,universal,https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/universal
0.13.1,mac,arm64,https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/arm64
0.13.1,mac,x64,https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/x64
0.13.1,linux,x64,https://downloader.cursor.sh/builds/231022f3j0ubckv/linux/appImage/x64
0.13.0,windows,x64,https://downloader.cursor.sh/builds/231022ptw6i4j42/windows/nsis/x64
0.13.0,windows,arm64,https://downloader.cursor.sh/builds/231022ptw6i4j42/windows/nsis/arm64
0.13.0,mac,universal,https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/universal
0.13.0,mac,arm64,https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/arm64
0.13.0,mac,x64,https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/x64
0.13.0,linux,x64,https://downloader.cursor.sh/builds/231022ptw6i4j42/linux/appImage/x64
0.12.3,windows,x64,https://downloader.cursor.sh/builds/231008c5ursm0oj/windows/nsis/x64
0.12.3,windows,arm64,https://downloader.cursor.sh/builds/231008c5ursm0oj/windows/nsis/arm64
0.12.3,mac,universal,https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/universal
0.12.3,mac,arm64,https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/arm64
0.12.3,mac,x64,https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/x64
0.12.3,linux,x64,https://downloader.cursor.sh/builds/231008c5ursm0oj/linux/appImage/x64
1 Version Platform Architecture Download URL
2 0.45.11 windows x64 https://downloader.cursor.sh/builds/250207y6nbaw5qc/windows/nsis/x64
3 0.45.11 windows arm64 https://downloader.cursor.sh/builds/250207y6nbaw5qc/windows/nsis/arm64
4 0.45.11 mac universal https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/universal
5 0.45.11 mac arm64 https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/arm64
6 0.45.11 mac x64 https://downloader.cursor.sh/builds/250207y6nbaw5qc/mac/installer/x64
7 0.45.11 linux x64 https://downloader.cursor.sh/builds/250207y6nbaw5qc/linux/appImage/x64
8 0.45.10 windows x64 https://downloader.cursor.sh/builds/250205buadkzpea/windows/nsis/x64
9 0.45.10 windows arm64 https://downloader.cursor.sh/builds/250205buadkzpea/windows/nsis/arm64
10 0.45.10 mac universal https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/universal
11 0.45.10 mac arm64 https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/arm64
12 0.45.10 mac x64 https://downloader.cursor.sh/builds/250205buadkzpea/mac/installer/x64
13 0.45.10 linux x64 https://downloader.cursor.sh/builds/250205buadkzpea/linux/appImage/x64
14 0.45.9 windows x64 https://downloader.cursor.sh/builds/250202tgstl42dt/windows/nsis/x64
15 0.45.9 windows arm64 https://downloader.cursor.sh/builds/250202tgstl42dt/windows/nsis/arm64
16 0.45.9 mac universal https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/universal
17 0.45.9 mac arm64 https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/arm64
18 0.45.9 mac x64 https://downloader.cursor.sh/builds/250202tgstl42dt/mac/installer/x64
19 0.45.9 linux x64 https://downloader.cursor.sh/builds/250202tgstl42dt/linux/appImage/x64
20 0.45.8 windows x64 https://downloader.cursor.sh/builds/250201b44xw1x2k/windows/nsis/x64
21 0.45.8 windows arm64 https://downloader.cursor.sh/builds/250201b44xw1x2k/windows/nsis/arm64
22 0.45.8 mac universal https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/universal
23 0.45.8 mac arm64 https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/arm64
24 0.45.8 mac x64 https://downloader.cursor.sh/builds/250201b44xw1x2k/mac/installer/x64
25 0.45.8 linux x64 https://downloader.cursor.sh/builds/250201b44xw1x2k/linux/appImage/x64
26 0.45.7 windows x64 https://downloader.cursor.sh/builds/250130nr6eorv84/windows/nsis/x64
27 0.45.7 windows arm64 https://downloader.cursor.sh/builds/250130nr6eorv84/windows/nsis/arm64
28 0.45.7 mac universal https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/universal
29 0.45.7 mac arm64 https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/arm64
30 0.45.7 mac x64 https://downloader.cursor.sh/builds/250130nr6eorv84/mac/installer/x64
31 0.45.7 linux x64 https://downloader.cursor.sh/builds/250130nr6eorv84/linux/appImage/x64
32 0.45.6 windows x64 https://downloader.cursor.sh/builds/25013021lv9say3/windows/nsis/x64
33 0.45.6 windows arm64 https://downloader.cursor.sh/builds/25013021lv9say3/windows/nsis/arm64
34 0.45.6 mac universal https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/universal
35 0.45.6 mac arm64 https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/arm64
36 0.45.6 mac x64 https://downloader.cursor.sh/builds/25013021lv9say3/mac/installer/x64
37 0.45.6 linux x64 https://downloader.cursor.sh/builds/25013021lv9say3/linux/appImage/x64
38 0.45.5 windows x64 https://downloader.cursor.sh/builds/250128loaeyulq8/windows/nsis/x64
39 0.45.5 windows arm64 https://downloader.cursor.sh/builds/250128loaeyulq8/windows/nsis/arm64
40 0.45.5 mac universal https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/universal
41 0.45.5 mac arm64 https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/arm64
42 0.45.5 mac x64 https://downloader.cursor.sh/builds/250128loaeyulq8/mac/installer/x64
43 0.45.5 linux x64 https://downloader.cursor.sh/builds/250128loaeyulq8/linux/appImage/x64
44 0.45.4 windows x64 https://downloader.cursor.sh/builds/250126vgr3vztvj/windows/nsis/x64
45 0.45.4 windows arm64 https://downloader.cursor.sh/builds/250126vgr3vztvj/windows/nsis/arm64
46 0.45.4 mac universal https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/universal
47 0.45.4 mac arm64 https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/arm64
48 0.45.4 mac x64 https://downloader.cursor.sh/builds/250126vgr3vztvj/mac/installer/x64
49 0.45.4 linux x64 https://downloader.cursor.sh/builds/250126vgr3vztvj/linux/appImage/x64
50 0.45.3 windows x64 https://downloader.cursor.sh/builds/250124b0rcj0qql/windows/nsis/x64
51 0.45.3 windows arm64 https://downloader.cursor.sh/builds/250124b0rcj0qql/windows/nsis/arm64
52 0.45.3 mac universal https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/universal
53 0.45.3 mac arm64 https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/arm64
54 0.45.3 mac x64 https://downloader.cursor.sh/builds/250124b0rcj0qql/mac/installer/x64
55 0.45.3 linux x64 https://downloader.cursor.sh/builds/250124b0rcj0qql/linux/appImage/x64
56 0.45.2 windows x64 https://downloader.cursor.sh/builds/250123mhituoa6o/windows/nsis/x64
57 0.45.2 windows arm64 https://downloader.cursor.sh/builds/250123mhituoa6o/windows/nsis/arm64
58 0.45.2 mac universal https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/universal
59 0.45.2 mac arm64 https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/arm64
60 0.45.2 mac x64 https://downloader.cursor.sh/builds/250123mhituoa6o/mac/installer/x64
61 0.45.2 linux x64 https://downloader.cursor.sh/builds/250123mhituoa6o/linux/appImage/x64
62 0.45.1 windows x64 https://downloader.cursor.sh/builds/2501213ljml5byg/windows/nsis/x64
63 0.45.1 windows arm64 https://downloader.cursor.sh/builds/2501213ljml5byg/windows/nsis/arm64
64 0.45.1 mac universal https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/universal
65 0.45.1 mac arm64 https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/arm64
66 0.45.1 mac x64 https://downloader.cursor.sh/builds/2501213ljml5byg/mac/installer/x64
67 0.45.1 linux x64 https://downloader.cursor.sh/builds/2501213ljml5byg/linux/appImage/x64
68 0.45.0 windows x64 https://downloader.cursor.sh/builds/250120dh9ezx9pg/windows/nsis/x64
69 0.45.0 windows arm64 https://downloader.cursor.sh/builds/250120dh9ezx9pg/windows/nsis/arm64
70 0.45.0 mac universal https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/universal
71 0.45.0 mac arm64 https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/arm64
72 0.45.0 mac x64 https://downloader.cursor.sh/builds/250120dh9ezx9pg/mac/installer/x64
73 0.45.0 linux x64 https://downloader.cursor.sh/builds/250120dh9ezx9pg/linux/appImage/x64
74 0.44.11 windows x64 https://downloader.cursor.sh/builds/250103fqxdt5u9z/windows/nsis/x64
75 0.44.11 windows arm64 https://downloader.cursor.sh/builds/250103fqxdt5u9z/windows/nsis/arm64
76 0.44.11 mac universal https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/universal
77 0.44.11 mac arm64 https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/arm64
78 0.44.11 mac x64 https://downloader.cursor.sh/builds/250103fqxdt5u9z/mac/installer/x64
79 0.44.11 linux x64 https://downloader.cursor.sh/builds/250103fqxdt5u9z/linux/appImage/x64
80 0.44.10 windows x64 https://downloader.cursor.sh/builds/250102ys80vtnud/windows/nsis/x64
81 0.44.10 windows arm64 https://downloader.cursor.sh/builds/250102ys80vtnud/windows/nsis/arm64
82 0.44.10 mac universal https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/universal
83 0.44.10 mac arm64 https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/arm64
84 0.44.10 mac x64 https://downloader.cursor.sh/builds/250102ys80vtnud/mac/installer/x64
85 0.44.10 linux x64 https://downloader.cursor.sh/builds/250102ys80vtnud/linux/appImage/x64
86 0.44.9 windows x64 https://downloader.cursor.sh/builds/2412268nc6pfzgo/windows/nsis/x64
87 0.44.9 windows arm64 https://downloader.cursor.sh/builds/2412268nc6pfzgo/windows/nsis/arm64
88 0.44.9 mac universal https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/universal
89 0.44.9 mac arm64 https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/arm64
90 0.44.9 mac x64 https://downloader.cursor.sh/builds/2412268nc6pfzgo/mac/installer/x64
91 0.44.9 linux x64 https://downloader.cursor.sh/builds/2412268nc6pfzgo/linux/appImage/x64
92 0.44.8 windows x64 https://downloader.cursor.sh/builds/241222ooktny8mh/windows/nsis/x64
93 0.44.8 windows arm64 https://downloader.cursor.sh/builds/241222ooktny8mh/windows/nsis/arm64
94 0.44.8 mac universal https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/universal
95 0.44.8 mac arm64 https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/arm64
96 0.44.8 mac x64 https://downloader.cursor.sh/builds/241222ooktny8mh/mac/installer/x64
97 0.44.8 linux x64 https://downloader.cursor.sh/builds/241222ooktny8mh/linux/appImage/x64
98 0.44.7 windows x64 https://downloader.cursor.sh/builds/2412219nhracv01/windows/nsis/x64
99 0.44.7 windows arm64 https://downloader.cursor.sh/builds/2412219nhracv01/windows/nsis/arm64
100 0.44.7 mac universal https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/universal
101 0.44.7 mac arm64 https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/arm64
102 0.44.7 mac x64 https://downloader.cursor.sh/builds/2412219nhracv01/mac/installer/x64
103 0.44.7 linux x64 https://downloader.cursor.sh/builds/2412219nhracv01/linux/appImage/x64
104 0.44.6 windows x64 https://downloader.cursor.sh/builds/2412214pmryneua/windows/nsis/x64
105 0.44.6 windows arm64 https://downloader.cursor.sh/builds/2412214pmryneua/windows/nsis/arm64
106 0.44.6 mac universal https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/universal
107 0.44.6 mac arm64 https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/arm64
108 0.44.6 mac x64 https://downloader.cursor.sh/builds/2412214pmryneua/mac/installer/x64
109 0.44.6 linux x64 https://downloader.cursor.sh/builds/2412214pmryneua/linux/appImage/x64
110 0.44.5 windows x64 https://downloader.cursor.sh/builds/241220s3ux0e1tv/windows/nsis/x64
111 0.44.5 windows arm64 https://downloader.cursor.sh/builds/241220s3ux0e1tv/windows/nsis/arm64
112 0.44.5 mac universal https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/universal
113 0.44.5 mac arm64 https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/arm64
114 0.44.5 mac x64 https://downloader.cursor.sh/builds/241220s3ux0e1tv/mac/installer/x64
115 0.44.5 linux x64 https://downloader.cursor.sh/builds/241220s3ux0e1tv/linux/appImage/x64
116 0.44.4 windows x64 https://downloader.cursor.sh/builds/241219117fcvexy/windows/nsis/x64
117 0.44.4 windows arm64 https://downloader.cursor.sh/builds/241219117fcvexy/windows/nsis/arm64
118 0.44.4 mac universal https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/universal
119 0.44.4 mac arm64 https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/arm64
120 0.44.4 mac x64 https://downloader.cursor.sh/builds/241219117fcvexy/mac/installer/x64
121 0.44.4 linux x64 https://downloader.cursor.sh/builds/241219117fcvexy/linux/appImage/x64
122 0.44.3 windows x64 https://downloader.cursor.sh/builds/241218sybfbogmq/windows/nsis/x64
123 0.44.3 windows arm64 https://downloader.cursor.sh/builds/241218sybfbogmq/windows/nsis/arm64
124 0.44.3 mac universal https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/universal
125 0.44.3 mac arm64 https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/arm64
126 0.44.3 mac x64 https://downloader.cursor.sh/builds/241218sybfbogmq/mac/installer/x64
127 0.44.3 linux x64 https://downloader.cursor.sh/builds/241218sybfbogmq/linux/appImage/x64
128 0.44.2 windows x64 https://downloader.cursor.sh/builds/241218ntls52u8v/windows/nsis/x64
129 0.44.2 windows arm64 https://downloader.cursor.sh/builds/241218ntls52u8v/windows/nsis/arm64
130 0.44.2 mac universal https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/universal
131 0.44.2 mac arm64 https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/arm64
132 0.44.2 mac x64 https://downloader.cursor.sh/builds/241218ntls52u8v/mac/installer/x64
133 0.44.2 linux x64 https://downloader.cursor.sh/builds/241218ntls52u8v/linux/appImage/x64
134 0.44.0 windows x64 https://downloader.cursor.sh/builds/2412187f9v0nffu/windows/nsis/x64
135 0.44.0 windows arm64 https://downloader.cursor.sh/builds/2412187f9v0nffu/windows/nsis/arm64
136 0.44.0 mac universal https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/universal
137 0.44.0 mac arm64 https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/arm64
138 0.44.0 mac x64 https://downloader.cursor.sh/builds/2412187f9v0nffu/mac/installer/x64
139 0.44.0 linux x64 https://downloader.cursor.sh/builds/2412187f9v0nffu/linux/appImage/x64
140 0.43.6 windows x64 https://downloader.cursor.sh/builds/241206z7j6me2e2/windows/nsis/x64
141 0.43.6 windows arm64 https://downloader.cursor.sh/builds/241206z7j6me2e2/windows/nsis/arm64
142 0.43.6 mac universal https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/universal
143 0.43.6 mac arm64 https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/arm64
144 0.43.6 mac x64 https://downloader.cursor.sh/builds/241206z7j6me2e2/mac/installer/x64
145 0.43.6 linux x64 https://downloader.cursor.sh/builds/241206z7j6me2e2/linux/appImage/x64
146 0.43.5 windows x64 https://downloader.cursor.sh/builds/241127pdg4cnbu2/windows/nsis/x64
147 0.43.5 windows arm64 https://downloader.cursor.sh/builds/241127pdg4cnbu2/windows/nsis/arm64
148 0.43.5 mac universal https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/universal
149 0.43.5 mac arm64 https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/arm64
150 0.43.5 mac x64 https://downloader.cursor.sh/builds/241127pdg4cnbu2/mac/installer/x64
151 0.43.5 linux x64 https://downloader.cursor.sh/builds/241127pdg4cnbu2/linux/appImage/x64
152 0.43.4 windows x64 https://downloader.cursor.sh/builds/241126w13goyvrs/windows/nsis/x64
153 0.43.4 windows arm64 https://downloader.cursor.sh/builds/241126w13goyvrs/windows/nsis/arm64
154 0.43.4 mac universal https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/universal
155 0.43.4 mac arm64 https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/arm64
156 0.43.4 mac x64 https://downloader.cursor.sh/builds/241126w13goyvrs/mac/installer/x64
157 0.43.4 linux x64 https://downloader.cursor.sh/builds/241126w13goyvrs/linux/appImage/x64
158 0.43.3 windows x64 https://downloader.cursor.sh/builds/2411246yqzx1jmm/windows/nsis/x64
159 0.43.3 windows arm64 https://downloader.cursor.sh/builds/2411246yqzx1jmm/windows/nsis/arm64
160 0.43.3 mac universal https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/universal
161 0.43.3 mac arm64 https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/arm64
162 0.43.3 mac x64 https://downloader.cursor.sh/builds/2411246yqzx1jmm/mac/installer/x64
163 0.43.3 linux x64 https://downloader.cursor.sh/builds/2411246yqzx1jmm/linux/appImage/x64
164 0.43.1 windows x64 https://downloader.cursor.sh/builds/241124gsiwb66nc/windows/nsis/x64
165 0.43.1 windows arm64 https://downloader.cursor.sh/builds/241124gsiwb66nc/windows/nsis/arm64
166 0.43.1 mac universal https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/universal
167 0.43.1 mac arm64 https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/arm64
168 0.43.1 mac x64 https://downloader.cursor.sh/builds/241124gsiwb66nc/mac/installer/x64
169 0.43.1 linux x64 https://downloader.cursor.sh/builds/241124gsiwb66nc/linux/appImage/x64
170 0.42.5 windows x64 https://downloader.cursor.sh/builds/24111460bf2loz1/windows/nsis/x64
171 0.42.5 windows arm64 https://downloader.cursor.sh/builds/24111460bf2loz1/windows/nsis/arm64
172 0.42.5 mac universal https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/universal
173 0.42.5 mac arm64 https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/arm64
174 0.42.5 mac x64 https://downloader.cursor.sh/builds/24111460bf2loz1/mac/installer/x64
175 0.42.5 linux x64 https://downloader.cursor.sh/builds/24111460bf2loz1/linux/appImage/x64
176 0.42.4 windows x64 https://downloader.cursor.sh/builds/2410291z3bdg1dy/windows/nsis/x64
177 0.42.4 windows arm64 https://downloader.cursor.sh/builds/2410291z3bdg1dy/windows/nsis/arm64
178 0.42.4 mac universal https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/universal
179 0.42.4 mac arm64 https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/arm64
180 0.42.4 mac x64 https://downloader.cursor.sh/builds/2410291z3bdg1dy/mac/installer/x64
181 0.42.4 linux x64 https://downloader.cursor.sh/builds/2410291z3bdg1dy/linux/appImage/x64
182 0.42.3 windows x64 https://downloader.cursor.sh/builds/241016kxu9umuir/windows/nsis/x64
183 0.42.3 windows arm64 https://downloader.cursor.sh/builds/241016kxu9umuir/windows/nsis/arm64
184 0.42.3 mac universal https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/universal
185 0.42.3 mac arm64 https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/arm64
186 0.42.3 mac x64 https://downloader.cursor.sh/builds/241016kxu9umuir/mac/installer/x64
187 0.42.3 linux x64 https://downloader.cursor.sh/builds/241016kxu9umuir/linux/appImage/x64
188 0.42.2 windows x64 https://downloader.cursor.sh/builds/2410127mj66lvaq/windows/nsis/x64
189 0.42.2 windows arm64 https://downloader.cursor.sh/builds/2410127mj66lvaq/windows/nsis/arm64
190 0.42.2 mac universal https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/universal
191 0.42.2 mac arm64 https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/arm64
192 0.42.2 mac x64 https://downloader.cursor.sh/builds/2410127mj66lvaq/mac/installer/x64
193 0.42.2 linux x64 https://downloader.cursor.sh/builds/2410127mj66lvaq/linux/appImage/x64
194 0.42.1 windows x64 https://downloader.cursor.sh/builds/241011i66p9fuvm/windows/nsis/x64
195 0.42.1 windows arm64 https://downloader.cursor.sh/builds/241011i66p9fuvm/windows/nsis/arm64
196 0.42.1 mac universal https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/universal
197 0.42.1 mac arm64 https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/arm64
198 0.42.1 mac x64 https://downloader.cursor.sh/builds/241011i66p9fuvm/mac/installer/x64
199 0.42.1 linux x64 https://downloader.cursor.sh/builds/241011i66p9fuvm/linux/appImage/x64
200 0.42.0 windows x64 https://downloader.cursor.sh/builds/241009fij7nohn5/windows/nsis/x64
201 0.42.0 windows arm64 https://downloader.cursor.sh/builds/241009fij7nohn5/windows/nsis/arm64
202 0.42.0 mac universal https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/universal
203 0.42.0 mac arm64 https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/arm64
204 0.42.0 mac x64 https://downloader.cursor.sh/builds/241009fij7nohn5/mac/installer/x64
205 0.42.0 linux x64 https://downloader.cursor.sh/builds/241009fij7nohn5/linux/appImage/x64
206 0.41.3 windows x64 https://downloader.cursor.sh/builds/240925fkhcqg263/windows/nsis/x64
207 0.41.3 windows arm64 https://downloader.cursor.sh/builds/240925fkhcqg263/windows/nsis/arm64
208 0.41.3 mac universal https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/universal
209 0.41.3 mac arm64 https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/arm64
210 0.41.3 mac x64 https://downloader.cursor.sh/builds/240925fkhcqg263/mac/installer/x64
211 0.41.3 linux x64 https://downloader.cursor.sh/builds/240925fkhcqg263/linux/appImage/x64
212 0.41.2 windows x64 https://downloader.cursor.sh/builds/240921llnho65ov/windows/nsis/x64
213 0.41.2 windows arm64 https://downloader.cursor.sh/builds/240921llnho65ov/windows/nsis/arm64
214 0.41.2 mac universal https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/universal
215 0.41.2 mac arm64 https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/arm64
216 0.41.2 mac x64 https://downloader.cursor.sh/builds/240921llnho65ov/mac/installer/x64
217 0.41.2 linux x64 https://downloader.cursor.sh/builds/240921llnho65ov/linux/appImage/x64
218 0.41.1 windows x64 https://downloader.cursor.sh/builds/2409189xe3envg5/windows/nsis/x64
219 0.41.1 windows arm64 https://downloader.cursor.sh/builds/2409189xe3envg5/windows/nsis/arm64
220 0.41.1 mac universal https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/universal
221 0.41.1 mac arm64 https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/arm64
222 0.41.1 mac x64 https://downloader.cursor.sh/builds/2409189xe3envg5/mac/installer/x64
223 0.41.1 linux x64 https://downloader.cursor.sh/builds/2409189xe3envg5/linux/appImage/x64
224 0.40.4 windows x64 https://downloader.cursor.sh/builds/2409052yfcjagw2/windows/nsis/x64
225 0.40.4 windows arm64 https://downloader.cursor.sh/builds/2409052yfcjagw2/windows/nsis/arm64
226 0.40.4 mac universal https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/universal
227 0.40.4 mac arm64 https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/arm64
228 0.40.4 mac x64 https://downloader.cursor.sh/builds/2409052yfcjagw2/mac/installer/x64
229 0.40.4 linux x64 https://downloader.cursor.sh/builds/2409052yfcjagw2/linux/appImage/x64
230 0.40.3 windows x64 https://downloader.cursor.sh/builds/240829epqamqp7h/windows/nsis/x64
231 0.40.3 windows arm64 https://downloader.cursor.sh/builds/240829epqamqp7h/windows/nsis/arm64
232 0.40.3 mac universal https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/universal
233 0.40.3 mac arm64 https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/arm64
234 0.40.3 mac x64 https://downloader.cursor.sh/builds/240829epqamqp7h/mac/installer/x64
235 0.40.3 linux x64 https://downloader.cursor.sh/builds/240829epqamqp7h/linux/appImage/x64
236 0.40.2 windows x64 https://downloader.cursor.sh/builds/240828c021k3aib/windows/nsis/x64
237 0.40.2 windows arm64 https://downloader.cursor.sh/builds/240828c021k3aib/windows/nsis/arm64
238 0.40.2 mac universal https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/universal
239 0.40.2 mac arm64 https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/arm64
240 0.40.2 mac x64 https://downloader.cursor.sh/builds/240828c021k3aib/mac/installer/x64
241 0.40.2 linux x64 https://downloader.cursor.sh/builds/240828c021k3aib/linux/appImage/x64
242 0.40.1 windows x64 https://downloader.cursor.sh/builds/2408245thnycuzj/windows/nsis/x64
243 0.40.1 windows arm64 https://downloader.cursor.sh/builds/2408245thnycuzj/windows/nsis/arm64
244 0.40.1 mac universal https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/universal
245 0.40.1 mac arm64 https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/arm64
246 0.40.1 mac x64 https://downloader.cursor.sh/builds/2408245thnycuzj/mac/installer/x64
247 0.40.1 linux x64 https://downloader.cursor.sh/builds/2408245thnycuzj/linux/appImage/x64
248 0.40.0 windows x64 https://downloader.cursor.sh/builds/24082202sreugb2/windows/nsis/x64
249 0.40.0 windows arm64 https://downloader.cursor.sh/builds/24082202sreugb2/windows/nsis/arm64
250 0.40.0 mac universal https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/universal
251 0.40.0 mac arm64 https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/arm64
252 0.40.0 mac x64 https://downloader.cursor.sh/builds/24082202sreugb2/mac/installer/x64
253 0.40.0 linux x64 https://downloader.cursor.sh/builds/24082202sreugb2/linux/appImage/x64
254 0.39.6 windows x64 https://downloader.cursor.sh/builds/240819ih4ta2fye/windows/nsis/x64
255 0.39.6 windows arm64 https://downloader.cursor.sh/builds/240819ih4ta2fye/windows/nsis/arm64
256 0.39.6 mac universal https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/universal
257 0.39.6 mac arm64 https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/arm64
258 0.39.6 mac x64 https://downloader.cursor.sh/builds/240819ih4ta2fye/mac/installer/x64
259 0.39.6 linux x64 https://downloader.cursor.sh/builds/240819ih4ta2fye/linux/appImage/x64
260 0.39.5 windows x64 https://downloader.cursor.sh/builds/240814y9rhzmu7h/windows/nsis/x64
261 0.39.5 windows arm64 https://downloader.cursor.sh/builds/240814y9rhzmu7h/windows/nsis/arm64
262 0.39.5 mac universal https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/universal
263 0.39.5 mac arm64 https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/arm64
264 0.39.5 mac x64 https://downloader.cursor.sh/builds/240814y9rhzmu7h/mac/installer/x64
265 0.39.5 linux x64 https://downloader.cursor.sh/builds/240814y9rhzmu7h/linux/appImage/x64
266 0.39.4 windows x64 https://downloader.cursor.sh/builds/240810elmeg3seq/windows/nsis/x64
267 0.39.4 windows arm64 https://downloader.cursor.sh/builds/240810elmeg3seq/windows/nsis/arm64
268 0.39.4 mac universal https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/universal
269 0.39.4 mac arm64 https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/arm64
270 0.39.4 mac x64 https://downloader.cursor.sh/builds/240810elmeg3seq/mac/installer/x64
271 0.39.4 linux x64 https://downloader.cursor.sh/builds/240810elmeg3seq/linux/appImage/x64
272 0.39.3 windows x64 https://downloader.cursor.sh/builds/2408092hoyaxt9m/windows/nsis/x64
273 0.39.3 windows arm64 https://downloader.cursor.sh/builds/2408092hoyaxt9m/windows/nsis/arm64
274 0.39.3 mac universal https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/universal
275 0.39.3 mac arm64 https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/arm64
276 0.39.3 mac x64 https://downloader.cursor.sh/builds/2408092hoyaxt9m/mac/installer/x64
277 0.39.3 linux x64 https://downloader.cursor.sh/builds/2408092hoyaxt9m/linux/appImage/x64
278 0.39.2 windows x64 https://downloader.cursor.sh/builds/240808phaxh4b5r/windows/nsis/x64
279 0.39.2 windows arm64 https://downloader.cursor.sh/builds/240808phaxh4b5r/windows/nsis/arm64
280 0.39.2 mac universal https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/universal
281 0.39.2 mac arm64 https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/arm64
282 0.39.2 mac x64 https://downloader.cursor.sh/builds/240808phaxh4b5r/mac/installer/x64
283 0.39.2 linux x64 https://downloader.cursor.sh/builds/240808phaxh4b5r/linux/appImage/x64
284 0.39.1 windows x64 https://downloader.cursor.sh/builds/240807g919tr4ly/windows/nsis/x64
285 0.39.1 windows arm64 https://downloader.cursor.sh/builds/240807g919tr4ly/windows/nsis/arm64
286 0.39.1 mac universal https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/universal
287 0.39.1 mac arm64 https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/arm64
288 0.39.1 mac x64 https://downloader.cursor.sh/builds/240807g919tr4ly/mac/installer/x64
289 0.39.1 linux x64 https://downloader.cursor.sh/builds/240807g919tr4ly/linux/appImage/x64
290 0.39.0 windows x64 https://downloader.cursor.sh/builds/240802cdixtv9a6/windows/nsis/x64
291 0.39.0 windows arm64 https://downloader.cursor.sh/builds/240802cdixtv9a6/windows/nsis/arm64
292 0.39.0 mac universal https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/universal
293 0.39.0 mac arm64 https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/arm64
294 0.39.0 mac x64 https://downloader.cursor.sh/builds/240802cdixtv9a6/mac/installer/x64
295 0.39.0 linux x64 https://downloader.cursor.sh/builds/240802cdixtv9a6/linux/appImage/x64
296 0.38.1 windows x64 https://downloader.cursor.sh/builds/240725f0ti25os7/windows/nsis/x64
297 0.38.1 windows arm64 https://downloader.cursor.sh/builds/240725f0ti25os7/windows/nsis/arm64
298 0.38.1 mac universal https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/universal
299 0.38.1 mac arm64 https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/arm64
300 0.38.1 mac x64 https://downloader.cursor.sh/builds/240725f0ti25os7/mac/installer/x64
301 0.38.1 linux x64 https://downloader.cursor.sh/builds/240725f0ti25os7/linux/appImage/x64
302 0.38.0 windows x64 https://downloader.cursor.sh/builds/240723790oxe4a2/windows/nsis/x64
303 0.38.0 windows arm64 https://downloader.cursor.sh/builds/240723790oxe4a2/windows/nsis/arm64
304 0.38.0 mac universal https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/universal
305 0.38.0 mac arm64 https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/arm64
306 0.38.0 mac x64 https://downloader.cursor.sh/builds/240723790oxe4a2/mac/installer/x64
307 0.38.0 linux x64 https://downloader.cursor.sh/builds/240723790oxe4a2/linux/appImage/x64
308 0.37.1 windows x64 https://downloader.cursor.sh/builds/240714yrr3gmv3k/windows/nsis/x64
309 0.37.1 windows arm64 https://downloader.cursor.sh/builds/240714yrr3gmv3k/windows/nsis/arm64
310 0.37.1 mac universal https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/universal
311 0.37.1 mac arm64 https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/arm64
312 0.37.1 mac x64 https://downloader.cursor.sh/builds/240714yrr3gmv3k/mac/installer/x64
313 0.37.1 linux x64 https://downloader.cursor.sh/builds/240714yrr3gmv3k/linux/appImage/x64
314 0.36.2 windows x64 https://downloader.cursor.sh/builds/2407077n6pzboby/windows/nsis/x64
315 0.36.2 windows arm64 https://downloader.cursor.sh/builds/2407077n6pzboby/windows/nsis/arm64
316 0.36.2 mac universal https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/universal
317 0.36.2 mac arm64 https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/arm64
318 0.36.2 mac x64 https://downloader.cursor.sh/builds/2407077n6pzboby/mac/installer/x64
319 0.36.2 linux x64 https://downloader.cursor.sh/builds/2407077n6pzboby/linux/appImage/x64
320 0.36.1 windows x64 https://downloader.cursor.sh/builds/240706uekt2eaft/windows/nsis/x64
321 0.36.1 windows arm64 https://downloader.cursor.sh/builds/240706uekt2eaft/windows/nsis/arm64
322 0.36.1 mac universal https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/universal
323 0.36.1 mac arm64 https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/arm64
324 0.36.1 mac x64 https://downloader.cursor.sh/builds/240706uekt2eaft/mac/installer/x64
325 0.36.1 linux x64 https://downloader.cursor.sh/builds/240706uekt2eaft/linux/appImage/x64
326 0.36.0 windows x64 https://downloader.cursor.sh/builds/240703xqkjv5aqa/windows/nsis/x64
327 0.36.0 windows arm64 https://downloader.cursor.sh/builds/240703xqkjv5aqa/windows/nsis/arm64
328 0.36.0 mac universal https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/universal
329 0.36.0 mac arm64 https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/arm64
330 0.36.0 mac x64 https://downloader.cursor.sh/builds/240703xqkjv5aqa/mac/installer/x64
331 0.36.0 linux x64 https://downloader.cursor.sh/builds/240703xqkjv5aqa/linux/appImage/x64
332 0.35.1 windows x64 https://downloader.cursor.sh/builds/240621pc2f7rl8a/windows/nsis/x64
333 0.35.1 windows arm64 https://downloader.cursor.sh/builds/240621pc2f7rl8a/windows/nsis/arm64
334 0.35.1 mac universal https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/universal
335 0.35.1 mac arm64 https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/arm64
336 0.35.1 mac x64 https://downloader.cursor.sh/builds/240621pc2f7rl8a/mac/installer/x64
337 0.35.1 linux x64 https://downloader.cursor.sh/builds/240621pc2f7rl8a/linux/appImage/x64
338 0.35.0 windows x64 https://downloader.cursor.sh/builds/240608cv11mfsjl/windows/nsis/x64
339 0.35.0 windows arm64 https://downloader.cursor.sh/builds/240608cv11mfsjl/windows/nsis/arm64
340 0.35.0 mac universal https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/universal
341 0.35.0 mac arm64 https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/arm64
342 0.35.0 mac x64 https://downloader.cursor.sh/builds/240608cv11mfsjl/mac/installer/x64
343 0.35.0 linux x64 https://downloader.cursor.sh/builds/240608cv11mfsjl/linux/appImage/x64
344 0.34.6 windows x64 https://downloader.cursor.sh/builds/240606kgzq24cfb/windows/nsis/x64
345 0.34.6 windows arm64 https://downloader.cursor.sh/builds/240606kgzq24cfb/windows/nsis/arm64
346 0.34.6 mac universal https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/universal
347 0.34.6 mac arm64 https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/arm64
348 0.34.6 mac x64 https://downloader.cursor.sh/builds/240606kgzq24cfb/mac/installer/x64
349 0.34.6 linux x64 https://downloader.cursor.sh/builds/240606kgzq24cfb/linux/appImage/x64
350 0.34.6 windows x64 https://downloader.cursor.sh/builds/240605r495newcf/windows/nsis/x64
351 0.34.6 windows arm64 https://downloader.cursor.sh/builds/240605r495newcf/windows/nsis/arm64
352 0.34.6 mac universal https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/universal
353 0.34.6 mac arm64 https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/arm64
354 0.34.6 mac x64 https://downloader.cursor.sh/builds/240605r495newcf/mac/installer/x64
355 0.34.6 linux x64 https://downloader.cursor.sh/builds/240605r495newcf/linux/appImage/x64
356 0.34.5 windows x64 https://downloader.cursor.sh/builds/240602rq6xovt3a/windows/nsis/x64
357 0.34.5 windows arm64 https://downloader.cursor.sh/builds/240602rq6xovt3a/windows/nsis/arm64
358 0.34.5 mac universal https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/universal
359 0.34.5 mac arm64 https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/arm64
360 0.34.5 mac x64 https://downloader.cursor.sh/builds/240602rq6xovt3a/mac/installer/x64
361 0.34.5 linux x64 https://downloader.cursor.sh/builds/240602rq6xovt3a/linux/appImage/x64
362 0.34.4 windows x64 https://downloader.cursor.sh/builds/2406014h0rgjghe/windows/nsis/x64
363 0.34.4 windows arm64 https://downloader.cursor.sh/builds/2406014h0rgjghe/windows/nsis/arm64
364 0.34.4 mac universal https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/universal
365 0.34.4 mac arm64 https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/arm64
366 0.34.4 mac x64 https://downloader.cursor.sh/builds/2406014h0rgjghe/mac/installer/x64
367 0.34.4 linux x64 https://downloader.cursor.sh/builds/2406014h0rgjghe/linux/appImage/x64
368 0.34.3 windows x64 https://downloader.cursor.sh/builds/240529baisuyd2e/windows/nsis/x64
369 0.34.3 windows arm64 https://downloader.cursor.sh/builds/240529baisuyd2e/windows/nsis/arm64
370 0.34.3 mac universal https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/universal
371 0.34.3 mac arm64 https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/arm64
372 0.34.3 mac x64 https://downloader.cursor.sh/builds/240529baisuyd2e/mac/installer/x64
373 0.34.3 linux x64 https://downloader.cursor.sh/builds/240529baisuyd2e/linux/appImage/x64
374 0.34.2 windows x64 https://downloader.cursor.sh/builds/240528whh1qyo9h/windows/nsis/x64
375 0.34.2 windows arm64 https://downloader.cursor.sh/builds/240528whh1qyo9h/windows/nsis/arm64
376 0.34.2 mac universal https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/universal
377 0.34.2 mac arm64 https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/arm64
378 0.34.2 mac x64 https://downloader.cursor.sh/builds/240528whh1qyo9h/mac/installer/x64
379 0.34.2 linux x64 https://downloader.cursor.sh/builds/240528whh1qyo9h/linux/appImage/x64
380 0.34.1 windows x64 https://downloader.cursor.sh/builds/24052838ygfselt/windows/nsis/x64
381 0.34.1 windows arm64 https://downloader.cursor.sh/builds/24052838ygfselt/windows/nsis/arm64
382 0.34.1 mac universal https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/universal
383 0.34.1 mac arm64 https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/arm64
384 0.34.1 mac x64 https://downloader.cursor.sh/builds/24052838ygfselt/mac/installer/x64
385 0.34.1 linux x64 https://downloader.cursor.sh/builds/24052838ygfselt/linux/appImage/x64
386 0.34.0 windows x64 https://downloader.cursor.sh/builds/240527xus72jmkj/windows/nsis/x64
387 0.34.0 windows arm64 https://downloader.cursor.sh/builds/240527xus72jmkj/windows/nsis/arm64
388 0.34.0 mac universal https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/universal
389 0.34.0 mac arm64 https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/arm64
390 0.34.0 mac x64 https://downloader.cursor.sh/builds/240527xus72jmkj/mac/installer/x64
391 0.34.0 linux x64 https://downloader.cursor.sh/builds/240527xus72jmkj/linux/appImage/x64
392 0.33.4 windows x64 https://downloader.cursor.sh/builds/240511kb8wt1tms/windows/nsis/x64
393 0.33.4 windows arm64 https://downloader.cursor.sh/builds/240511kb8wt1tms/windows/nsis/arm64
394 0.33.4 mac universal https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/universal
395 0.33.4 mac arm64 https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/arm64
396 0.33.4 mac x64 https://downloader.cursor.sh/builds/240511kb8wt1tms/mac/installer/x64
397 0.33.4 linux x64 https://downloader.cursor.sh/builds/240511kb8wt1tms/linux/appImage/x64
398 0.33.3 windows x64 https://downloader.cursor.sh/builds/2405103lx8342ta/windows/nsis/x64
399 0.33.3 windows arm64 https://downloader.cursor.sh/builds/2405103lx8342ta/windows/nsis/arm64
400 0.33.3 mac universal https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/universal
401 0.33.3 mac arm64 https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/arm64
402 0.33.3 mac x64 https://downloader.cursor.sh/builds/2405103lx8342ta/mac/installer/x64
403 0.33.3 linux x64 https://downloader.cursor.sh/builds/2405103lx8342ta/linux/appImage/x64
404 0.33.2 windows x64 https://downloader.cursor.sh/builds/240510dwmw395qe/windows/nsis/x64
405 0.33.2 windows arm64 https://downloader.cursor.sh/builds/240510dwmw395qe/windows/nsis/arm64
406 0.33.2 mac universal https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/universal
407 0.33.2 mac arm64 https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/arm64
408 0.33.2 mac x64 https://downloader.cursor.sh/builds/240510dwmw395qe/mac/installer/x64
409 0.33.2 linux x64 https://downloader.cursor.sh/builds/240510dwmw395qe/linux/appImage/x64
410 0.33.1 windows x64 https://downloader.cursor.sh/builds/2405039a9h2fqc9/windows/nsis/x64
411 0.33.1 windows arm64 https://downloader.cursor.sh/builds/2405039a9h2fqc9/windows/nsis/arm64
412 0.33.1 mac universal https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/universal
413 0.33.1 mac arm64 https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/arm64
414 0.33.1 mac x64 https://downloader.cursor.sh/builds/2405039a9h2fqc9/mac/installer/x64
415 0.33.1 linux x64 https://downloader.cursor.sh/builds/2405039a9h2fqc9/linux/appImage/x64
416 0.33.0 windows x64 https://downloader.cursor.sh/builds/240503hyjsnhazo/windows/nsis/x64
417 0.33.0 windows arm64 https://downloader.cursor.sh/builds/240503hyjsnhazo/windows/nsis/arm64
418 0.33.0 mac universal https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/universal
419 0.33.0 mac arm64 https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/arm64
420 0.33.0 mac x64 https://downloader.cursor.sh/builds/240503hyjsnhazo/mac/installer/x64
421 0.33.0 linux x64 https://downloader.cursor.sh/builds/240503hyjsnhazo/linux/appImage/x64
422 0.32.8 windows x64 https://downloader.cursor.sh/builds/240428d499o6zja/windows/nsis/x64
423 0.32.8 windows arm64 https://downloader.cursor.sh/builds/240428d499o6zja/windows/nsis/arm64
424 0.32.8 mac universal https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/universal
425 0.32.8 mac arm64 https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/arm64
426 0.32.8 mac x64 https://downloader.cursor.sh/builds/240428d499o6zja/mac/installer/x64
427 0.32.8 linux x64 https://downloader.cursor.sh/builds/240428d499o6zja/linux/appImage/x64
428 0.32.7 windows x64 https://downloader.cursor.sh/builds/240427w5guozr0l/windows/nsis/x64
429 0.32.7 windows arm64 https://downloader.cursor.sh/builds/240427w5guozr0l/windows/nsis/arm64
430 0.32.7 mac universal https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/universal
431 0.32.7 mac arm64 https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/arm64
432 0.32.7 mac x64 https://downloader.cursor.sh/builds/240427w5guozr0l/mac/installer/x64
433 0.32.7 linux x64 https://downloader.cursor.sh/builds/240427w5guozr0l/linux/appImage/x64
434 0.32.2 windows x64 https://downloader.cursor.sh/builds/240417ab4wag7sx/windows/nsis/x64
435 0.32.2 windows arm64 https://downloader.cursor.sh/builds/240417ab4wag7sx/windows/nsis/arm64
436 0.32.2 mac universal https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/universal
437 0.32.2 mac arm64 https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/arm64
438 0.32.2 mac x64 https://downloader.cursor.sh/builds/240417ab4wag7sx/mac/installer/x64
439 0.32.2 linux x64 https://downloader.cursor.sh/builds/240417ab4wag7sx/linux/appImage/x64
440 0.32.1 windows x64 https://downloader.cursor.sh/builds/2404152czor73fk/windows/nsis/x64
441 0.32.1 windows arm64 https://downloader.cursor.sh/builds/2404152czor73fk/windows/nsis/arm64
442 0.32.1 mac universal https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/universal
443 0.32.1 mac arm64 https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/arm64
444 0.32.1 mac x64 https://downloader.cursor.sh/builds/2404152czor73fk/mac/installer/x64
445 0.32.1 linux x64 https://downloader.cursor.sh/builds/2404152czor73fk/linux/appImage/x64
446 0.32.0 windows x64 https://downloader.cursor.sh/builds/240412ugli06ue0/windows/nsis/x64
447 0.32.0 windows arm64 https://downloader.cursor.sh/builds/240412ugli06ue0/windows/nsis/arm64
448 0.32.0 mac universal https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/universal
449 0.32.0 mac arm64 https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/arm64
450 0.32.0 mac x64 https://downloader.cursor.sh/builds/240412ugli06ue0/mac/installer/x64
451 0.32.0 linux x64 https://downloader.cursor.sh/builds/240412ugli06ue0/linux/appImage/x64
452 0.31.3 windows x64 https://downloader.cursor.sh/builds/240402rq154jw46/windows/nsis/x64
453 0.31.3 windows arm64 https://downloader.cursor.sh/builds/240402rq154jw46/windows/nsis/arm64
454 0.31.3 mac universal https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/universal
455 0.31.3 mac arm64 https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/arm64
456 0.31.3 mac x64 https://downloader.cursor.sh/builds/240402rq154jw46/mac/installer/x64
457 0.31.3 linux x64 https://downloader.cursor.sh/builds/240402rq154jw46/linux/appImage/x64
458 0.31.1 windows x64 https://downloader.cursor.sh/builds/240402pkwfm2ps6/windows/nsis/x64
459 0.31.1 windows arm64 https://downloader.cursor.sh/builds/240402pkwfm2ps6/windows/nsis/arm64
460 0.31.1 mac universal https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/universal
461 0.31.1 mac arm64 https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/arm64
462 0.31.1 mac x64 https://downloader.cursor.sh/builds/240402pkwfm2ps6/mac/installer/x64
463 0.31.1 linux x64 https://downloader.cursor.sh/builds/240402pkwfm2ps6/linux/appImage/x64
464 0.31.0 windows x64 https://downloader.cursor.sh/builds/2404018j7z0xv2g/windows/nsis/x64
465 0.31.0 windows arm64 https://downloader.cursor.sh/builds/2404018j7z0xv2g/windows/nsis/arm64
466 0.31.0 mac universal https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/universal
467 0.31.0 mac arm64 https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/arm64
468 0.31.0 mac x64 https://downloader.cursor.sh/builds/2404018j7z0xv2g/mac/installer/x64
469 0.31.0 linux x64 https://downloader.cursor.sh/builds/2404018j7z0xv2g/linux/appImage/x64
470 0.30.5 windows x64 https://downloader.cursor.sh/builds/240327tmd2ozdc7/windows/nsis/x64
471 0.30.5 windows arm64 https://downloader.cursor.sh/builds/240327tmd2ozdc7/windows/nsis/arm64
472 0.30.5 mac universal https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/universal
473 0.30.5 mac arm64 https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/arm64
474 0.30.5 mac x64 https://downloader.cursor.sh/builds/240327tmd2ozdc7/mac/installer/x64
475 0.30.5 linux x64 https://downloader.cursor.sh/builds/240327tmd2ozdc7/linux/appImage/x64
476 0.30.4 windows x64 https://downloader.cursor.sh/builds/240325dezy8ziab/windows/nsis/x64
477 0.30.4 windows arm64 https://downloader.cursor.sh/builds/240325dezy8ziab/windows/nsis/arm64
478 0.30.4 mac universal https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/universal
479 0.30.4 mac arm64 https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/arm64
480 0.30.4 mac x64 https://downloader.cursor.sh/builds/240325dezy8ziab/mac/installer/x64
481 0.30.4 linux x64 https://downloader.cursor.sh/builds/240325dezy8ziab/linux/appImage/x64
482 0.30.3 windows x64 https://downloader.cursor.sh/builds/2403229gtuhto9g/windows/nsis/x64
483 0.30.3 windows arm64 https://downloader.cursor.sh/builds/2403229gtuhto9g/windows/nsis/arm64
484 0.30.3 mac universal https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/universal
485 0.30.3 mac arm64 https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/arm64
486 0.30.3 mac x64 https://downloader.cursor.sh/builds/2403229gtuhto9g/mac/installer/x64
487 0.30.3 linux x64 https://downloader.cursor.sh/builds/2403229gtuhto9g/linux/appImage/x64
488 0.30.2 windows x64 https://downloader.cursor.sh/builds/240322gzqjm3p0d/windows/nsis/x64
489 0.30.2 windows arm64 https://downloader.cursor.sh/builds/240322gzqjm3p0d/windows/nsis/arm64
490 0.30.2 mac universal https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/universal
491 0.30.2 mac arm64 https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/arm64
492 0.30.2 mac x64 https://downloader.cursor.sh/builds/240322gzqjm3p0d/mac/installer/x64
493 0.30.2 linux x64 https://downloader.cursor.sh/builds/240322gzqjm3p0d/linux/appImage/x64
494 0.30.1 windows x64 https://downloader.cursor.sh/builds/2403212w1ejubt8/windows/nsis/x64
495 0.30.1 windows arm64 https://downloader.cursor.sh/builds/2403212w1ejubt8/windows/nsis/arm64
496 0.30.1 mac universal https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/universal
497 0.30.1 mac arm64 https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/arm64
498 0.30.1 mac x64 https://downloader.cursor.sh/builds/2403212w1ejubt8/mac/installer/x64
499 0.30.1 linux x64 https://downloader.cursor.sh/builds/2403212w1ejubt8/linux/appImage/x64
500 0.30.0 windows x64 https://downloader.cursor.sh/builds/240320tpx86e7hk/windows/nsis/x64
501 0.30.0 windows arm64 https://downloader.cursor.sh/builds/240320tpx86e7hk/windows/nsis/arm64
502 0.30.0 mac universal https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/universal
503 0.30.0 mac arm64 https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/arm64
504 0.30.0 mac x64 https://downloader.cursor.sh/builds/240320tpx86e7hk/mac/installer/x64
505 0.30.0 linux x64 https://downloader.cursor.sh/builds/240320tpx86e7hk/linux/appImage/x64
506 0.29.1 windows x64 https://downloader.cursor.sh/builds/2403027twmz0d1t/windows/nsis/x64
507 0.29.1 windows arm64 https://downloader.cursor.sh/builds/2403027twmz0d1t/windows/nsis/arm64
508 0.29.1 mac universal https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/universal
509 0.29.1 mac arm64 https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/arm64
510 0.29.1 mac x64 https://downloader.cursor.sh/builds/2403027twmz0d1t/mac/installer/x64
511 0.29.1 linux x64 https://downloader.cursor.sh/builds/2403027twmz0d1t/linux/appImage/x64
512 0.29.0 windows x64 https://downloader.cursor.sh/builds/240301kpqvacw2h/windows/nsis/x64
513 0.29.0 windows arm64 https://downloader.cursor.sh/builds/240301kpqvacw2h/windows/nsis/arm64
514 0.29.0 mac universal https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/universal
515 0.29.0 mac arm64 https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/arm64
516 0.29.0 mac x64 https://downloader.cursor.sh/builds/240301kpqvacw2h/mac/installer/x64
517 0.29.0 linux x64 https://downloader.cursor.sh/builds/240301kpqvacw2h/linux/appImage/x64
518 0.28.1 windows x64 https://downloader.cursor.sh/builds/240226tstim4evd/windows/nsis/x64
519 0.28.1 windows arm64 https://downloader.cursor.sh/builds/240226tstim4evd/windows/nsis/arm64
520 0.28.1 mac universal https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/universal
521 0.28.1 mac arm64 https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/arm64
522 0.28.1 mac x64 https://downloader.cursor.sh/builds/240226tstim4evd/mac/installer/x64
523 0.28.1 linux x64 https://downloader.cursor.sh/builds/240226tstim4evd/linux/appImage/x64
524 0.28.0 windows x64 https://downloader.cursor.sh/builds/240224g2d7jazcq/windows/nsis/x64
525 0.28.0 windows arm64 https://downloader.cursor.sh/builds/240224g2d7jazcq/windows/nsis/arm64
526 0.28.0 mac universal https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/universal
527 0.28.0 mac arm64 https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/arm64
528 0.28.0 mac x64 https://downloader.cursor.sh/builds/240224g2d7jazcq/mac/installer/x64
529 0.28.0 linux x64 https://downloader.cursor.sh/builds/240224g2d7jazcq/linux/appImage/x64
530 0.27.4 windows x64 https://downloader.cursor.sh/builds/240219qdbagglqz/windows/nsis/x64
531 0.27.4 windows arm64 https://downloader.cursor.sh/builds/240219qdbagglqz/windows/nsis/arm64
532 0.27.4 mac universal https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/universal
533 0.27.4 mac arm64 https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/arm64
534 0.27.4 mac x64 https://downloader.cursor.sh/builds/240219qdbagglqz/mac/installer/x64
535 0.27.4 linux x64 https://downloader.cursor.sh/builds/240219qdbagglqz/linux/appImage/x64
536 0.27.3 windows x64 https://downloader.cursor.sh/builds/240218dxhc6y8os/windows/nsis/x64
537 0.27.3 windows arm64 https://downloader.cursor.sh/builds/240218dxhc6y8os/windows/nsis/arm64
538 0.27.3 mac universal https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/universal
539 0.27.3 mac arm64 https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/arm64
540 0.27.3 mac x64 https://downloader.cursor.sh/builds/240218dxhc6y8os/mac/installer/x64
541 0.27.3 linux x64 https://downloader.cursor.sh/builds/240218dxhc6y8os/linux/appImage/x64
542 0.27.2 windows x64 https://downloader.cursor.sh/builds/240216kkzl9nhxi/windows/nsis/x64
543 0.27.2 windows arm64 https://downloader.cursor.sh/builds/240216kkzl9nhxi/windows/nsis/arm64
544 0.27.2 mac universal https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/universal
545 0.27.2 mac arm64 https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/arm64
546 0.27.2 mac x64 https://downloader.cursor.sh/builds/240216kkzl9nhxi/mac/installer/x64
547 0.27.2 linux x64 https://downloader.cursor.sh/builds/240216kkzl9nhxi/linux/appImage/x64
548 0.27.1 windows x64 https://downloader.cursor.sh/builds/240215l4ooehnyl/windows/nsis/x64
549 0.27.1 windows arm64 https://downloader.cursor.sh/builds/240215l4ooehnyl/windows/nsis/arm64
550 0.27.1 mac universal https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/universal
551 0.27.1 mac arm64 https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/arm64
552 0.27.1 mac x64 https://downloader.cursor.sh/builds/240215l4ooehnyl/mac/installer/x64
553 0.27.1 linux x64 https://downloader.cursor.sh/builds/240215l4ooehnyl/linux/appImage/x64
554 0.27.0 windows x64 https://downloader.cursor.sh/builds/240215at6ewkd59/windows/nsis/x64
555 0.27.0 windows arm64 https://downloader.cursor.sh/builds/240215at6ewkd59/windows/nsis/arm64
556 0.27.0 mac universal https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/universal
557 0.27.0 mac arm64 https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/arm64
558 0.27.0 mac x64 https://downloader.cursor.sh/builds/240215at6ewkd59/mac/installer/x64
559 0.27.0 linux x64 https://downloader.cursor.sh/builds/240215at6ewkd59/linux/appImage/x64
560 0.26.2 windows x64 https://downloader.cursor.sh/builds/240212o6r9qxtcg/windows/nsis/x64
561 0.26.2 windows arm64 https://downloader.cursor.sh/builds/240212o6r9qxtcg/windows/nsis/arm64
562 0.26.2 mac universal https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/universal
563 0.26.2 mac arm64 https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/arm64
564 0.26.2 mac x64 https://downloader.cursor.sh/builds/240212o6r9qxtcg/mac/installer/x64
565 0.26.2 linux x64 https://downloader.cursor.sh/builds/240212o6r9qxtcg/linux/appImage/x64
566 0.26.1 windows x64 https://downloader.cursor.sh/builds/2402107t904hing/windows/nsis/x64
567 0.26.1 windows arm64 https://downloader.cursor.sh/builds/2402107t904hing/windows/nsis/arm64
568 0.26.1 mac universal https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/universal
569 0.26.1 mac arm64 https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/arm64
570 0.26.1 mac x64 https://downloader.cursor.sh/builds/2402107t904hing/mac/installer/x64
571 0.26.1 linux x64 https://downloader.cursor.sh/builds/2402107t904hing/linux/appImage/x64
572 0.26.0 windows x64 https://downloader.cursor.sh/builds/240210k8is5xr6v/windows/nsis/x64
573 0.26.0 windows arm64 https://downloader.cursor.sh/builds/240210k8is5xr6v/windows/nsis/arm64
574 0.26.0 mac universal https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/universal
575 0.26.0 mac arm64 https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/arm64
576 0.26.0 mac x64 https://downloader.cursor.sh/builds/240210k8is5xr6v/mac/installer/x64
577 0.26.0 linux x64 https://downloader.cursor.sh/builds/240210k8is5xr6v/linux/appImage/x64
578 0.25.3 windows x64 https://downloader.cursor.sh/builds/240207aacboj1k8/windows/nsis/x64
579 0.25.3 windows arm64 https://downloader.cursor.sh/builds/240207aacboj1k8/windows/nsis/arm64
580 0.25.3 mac universal https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/universal
581 0.25.3 mac arm64 https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/arm64
582 0.25.3 mac x64 https://downloader.cursor.sh/builds/240207aacboj1k8/mac/installer/x64
583 0.25.3 linux x64 https://downloader.cursor.sh/builds/240207aacboj1k8/linux/appImage/x64
584 0.25.2 windows x64 https://downloader.cursor.sh/builds/240206p3708uc9z/windows/nsis/x64
585 0.25.2 windows arm64 https://downloader.cursor.sh/builds/240206p3708uc9z/windows/nsis/arm64
586 0.25.2 mac universal https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/universal
587 0.25.2 mac arm64 https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/arm64
588 0.25.2 mac x64 https://downloader.cursor.sh/builds/240206p3708uc9z/mac/installer/x64
589 0.25.2 linux x64 https://downloader.cursor.sh/builds/240206p3708uc9z/linux/appImage/x64
590 0.25.1 windows x64 https://downloader.cursor.sh/builds/2402033t030rprh/windows/nsis/x64
591 0.25.1 windows arm64 https://downloader.cursor.sh/builds/2402033t030rprh/windows/nsis/arm64
592 0.25.1 mac universal https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/universal
593 0.25.1 mac arm64 https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/arm64
594 0.25.1 mac x64 https://downloader.cursor.sh/builds/2402033t030rprh/mac/installer/x64
595 0.25.1 linux x64 https://downloader.cursor.sh/builds/2402033t030rprh/linux/appImage/x64
596 0.25.0 windows x64 https://downloader.cursor.sh/builds/240203kh86t91q8/windows/nsis/x64
597 0.25.0 windows arm64 https://downloader.cursor.sh/builds/240203kh86t91q8/windows/nsis/arm64
598 0.25.0 mac universal https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/universal
599 0.25.0 mac arm64 https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/arm64
600 0.25.0 mac x64 https://downloader.cursor.sh/builds/240203kh86t91q8/mac/installer/x64
601 0.25.0 linux x64 https://downloader.cursor.sh/builds/240203kh86t91q8/linux/appImage/x64
602 0.24.4 windows x64 https://downloader.cursor.sh/builds/240129iecm3e33w/windows/nsis/x64
603 0.24.4 windows arm64 https://downloader.cursor.sh/builds/240129iecm3e33w/windows/nsis/arm64
604 0.24.4 mac universal https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/universal
605 0.24.4 mac arm64 https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/arm64
606 0.24.4 mac x64 https://downloader.cursor.sh/builds/240129iecm3e33w/mac/installer/x64
607 0.24.4 linux x64 https://downloader.cursor.sh/builds/240129iecm3e33w/linux/appImage/x64
608 0.24.3 windows x64 https://downloader.cursor.sh/builds/2401289dx79qsc0/windows/nsis/x64
609 0.24.3 windows arm64 https://downloader.cursor.sh/builds/2401289dx79qsc0/windows/nsis/arm64
610 0.24.3 mac universal https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/universal
611 0.24.3 mac arm64 https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/arm64
612 0.24.3 mac x64 https://downloader.cursor.sh/builds/2401289dx79qsc0/mac/installer/x64
613 0.24.3 linux x64 https://downloader.cursor.sh/builds/2401289dx79qsc0/linux/appImage/x64
614 0.24.1 windows x64 https://downloader.cursor.sh/builds/240127cad17436d/windows/nsis/x64
615 0.24.1 windows arm64 https://downloader.cursor.sh/builds/240127cad17436d/windows/nsis/arm64
616 0.24.1 mac universal https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/universal
617 0.24.1 mac arm64 https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/arm64
618 0.24.1 mac x64 https://downloader.cursor.sh/builds/240127cad17436d/mac/installer/x64
619 0.24.1 linux x64 https://downloader.cursor.sh/builds/240127cad17436d/linux/appImage/x64
620 0.24.0 windows x64 https://downloader.cursor.sh/builds/240126wp9irhmza/windows/nsis/x64
621 0.24.0 windows arm64 https://downloader.cursor.sh/builds/240126wp9irhmza/windows/nsis/arm64
622 0.24.0 mac universal https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/universal
623 0.24.0 mac arm64 https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/arm64
624 0.24.0 mac x64 https://downloader.cursor.sh/builds/240126wp9irhmza/mac/installer/x64
625 0.24.0 linux x64 https://downloader.cursor.sh/builds/240126wp9irhmza/linux/appImage/x64
626 0.23.9 windows x64 https://downloader.cursor.sh/builds/240124dsmraeml3/windows/nsis/x64
627 0.23.9 windows arm64 https://downloader.cursor.sh/builds/240124dsmraeml3/windows/nsis/arm64
628 0.23.9 mac universal https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/universal
629 0.23.9 mac arm64 https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/arm64
630 0.23.9 mac x64 https://downloader.cursor.sh/builds/240124dsmraeml3/mac/installer/x64
631 0.23.9 linux x64 https://downloader.cursor.sh/builds/240124dsmraeml3/linux/appImage/x64
632 0.23.8 windows x64 https://downloader.cursor.sh/builds/240123fnn1hj1fg/windows/nsis/x64
633 0.23.8 windows arm64 https://downloader.cursor.sh/builds/240123fnn1hj1fg/windows/nsis/arm64
634 0.23.8 mac universal https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/universal
635 0.23.8 mac arm64 https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/arm64
636 0.23.8 mac x64 https://downloader.cursor.sh/builds/240123fnn1hj1fg/mac/installer/x64
637 0.23.8 linux x64 https://downloader.cursor.sh/builds/240123fnn1hj1fg/linux/appImage/x64
638 0.23.7 windows x64 https://downloader.cursor.sh/builds/240123xsfe7ywcv/windows/nsis/x64
639 0.23.7 windows arm64 https://downloader.cursor.sh/builds/240123xsfe7ywcv/windows/nsis/arm64
640 0.23.7 mac universal https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/universal
641 0.23.7 mac arm64 https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/arm64
642 0.23.7 mac x64 https://downloader.cursor.sh/builds/240123xsfe7ywcv/mac/installer/x64
643 0.23.7 linux x64 https://downloader.cursor.sh/builds/240123xsfe7ywcv/linux/appImage/x64
644 0.23.6 windows x64 https://downloader.cursor.sh/builds/240121m1740elox/windows/nsis/x64
645 0.23.6 windows arm64 https://downloader.cursor.sh/builds/240121m1740elox/windows/nsis/arm64
646 0.23.6 mac universal https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/universal
647 0.23.6 mac arm64 https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/arm64
648 0.23.6 mac x64 https://downloader.cursor.sh/builds/240121m1740elox/mac/installer/x64
649 0.23.6 linux x64 https://downloader.cursor.sh/builds/240121m1740elox/linux/appImage/x64
650 0.23.5 windows x64 https://downloader.cursor.sh/builds/2401215utj6tx6q/windows/nsis/x64
651 0.23.5 windows arm64 https://downloader.cursor.sh/builds/2401215utj6tx6q/windows/nsis/arm64
652 0.23.5 mac universal https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/universal
653 0.23.5 mac arm64 https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/arm64
654 0.23.5 mac x64 https://downloader.cursor.sh/builds/2401215utj6tx6q/mac/installer/x64
655 0.23.5 linux x64 https://downloader.cursor.sh/builds/2401215utj6tx6q/linux/appImage/x64
656 0.23.4 windows x64 https://downloader.cursor.sh/builds/240121f4qy6ba2y/windows/nsis/x64
657 0.23.4 windows arm64 https://downloader.cursor.sh/builds/240121f4qy6ba2y/windows/nsis/arm64
658 0.23.4 mac universal https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/universal
659 0.23.4 mac arm64 https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/arm64
660 0.23.4 mac x64 https://downloader.cursor.sh/builds/240121f4qy6ba2y/mac/installer/x64
661 0.23.4 linux x64 https://downloader.cursor.sh/builds/240121f4qy6ba2y/linux/appImage/x64
662 0.23.3 windows x64 https://downloader.cursor.sh/builds/2401201und3ytom/windows/nsis/x64
663 0.23.3 windows arm64 https://downloader.cursor.sh/builds/2401201und3ytom/windows/nsis/arm64
664 0.23.3 mac universal https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/universal
665 0.23.3 mac arm64 https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/arm64
666 0.23.3 mac x64 https://downloader.cursor.sh/builds/2401201und3ytom/mac/installer/x64
667 0.23.3 linux x64 https://downloader.cursor.sh/builds/2401201und3ytom/linux/appImage/x64
668 0.23.2 windows x64 https://downloader.cursor.sh/builds/240120an2k2hf1i/windows/nsis/x64
669 0.23.2 windows arm64 https://downloader.cursor.sh/builds/240120an2k2hf1i/windows/nsis/arm64
670 0.23.2 mac universal https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/universal
671 0.23.2 mac arm64 https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/arm64
672 0.23.2 mac x64 https://downloader.cursor.sh/builds/240120an2k2hf1i/mac/installer/x64
673 0.23.2 linux x64 https://downloader.cursor.sh/builds/240120an2k2hf1i/linux/appImage/x64
674 0.23.1 windows x64 https://downloader.cursor.sh/builds/240119fgzxwudn9/windows/nsis/x64
675 0.23.1 windows arm64 https://downloader.cursor.sh/builds/240119fgzxwudn9/windows/nsis/arm64
676 0.23.1 mac universal https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/universal
677 0.23.1 mac arm64 https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/arm64
678 0.23.1 mac x64 https://downloader.cursor.sh/builds/240119fgzxwudn9/mac/installer/x64
679 0.23.1 linux x64 https://downloader.cursor.sh/builds/240119fgzxwudn9/linux/appImage/x64
680 0.22.2 windows x64 https://downloader.cursor.sh/builds/24011721vsch1l1/windows/nsis/x64
681 0.22.2 windows arm64 https://downloader.cursor.sh/builds/24011721vsch1l1/windows/nsis/arm64
682 0.22.2 mac universal https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/universal
683 0.22.2 mac arm64 https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/arm64
684 0.22.2 mac x64 https://downloader.cursor.sh/builds/24011721vsch1l1/mac/installer/x64
685 0.22.2 linux x64 https://downloader.cursor.sh/builds/24011721vsch1l1/linux/appImage/x64
686 0.22.1 windows x64 https://downloader.cursor.sh/builds/2401083eyk8kmzc/windows/nsis/x64
687 0.22.1 windows arm64 https://downloader.cursor.sh/builds/2401083eyk8kmzc/windows/nsis/arm64
688 0.22.1 mac universal https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/universal
689 0.22.1 mac arm64 https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/arm64
690 0.22.1 mac x64 https://downloader.cursor.sh/builds/2401083eyk8kmzc/mac/installer/x64
691 0.22.1 linux x64 https://downloader.cursor.sh/builds/2401083eyk8kmzc/linux/appImage/x64
692 0.22.0 windows x64 https://downloader.cursor.sh/builds/240107qk62kvva3/windows/nsis/x64
693 0.22.0 windows arm64 https://downloader.cursor.sh/builds/240107qk62kvva3/windows/nsis/arm64
694 0.22.0 mac universal https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/universal
695 0.22.0 mac arm64 https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/arm64
696 0.22.0 mac x64 https://downloader.cursor.sh/builds/240107qk62kvva3/mac/installer/x64
697 0.22.0 linux x64 https://downloader.cursor.sh/builds/240107qk62kvva3/linux/appImage/x64
698 0.21.1 windows x64 https://downloader.cursor.sh/builds/231230h0vi6srww/windows/nsis/x64
699 0.21.1 windows arm64 https://downloader.cursor.sh/builds/231230h0vi6srww/windows/nsis/arm64
700 0.21.1 mac universal https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/universal
701 0.21.1 mac arm64 https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/arm64
702 0.21.1 mac x64 https://downloader.cursor.sh/builds/231230h0vi6srww/mac/installer/x64
703 0.21.1 linux x64 https://downloader.cursor.sh/builds/231230h0vi6srww/linux/appImage/x64
704 0.21.0 windows x64 https://downloader.cursor.sh/builds/231229ezidnxiu3/windows/nsis/x64
705 0.21.0 windows arm64 https://downloader.cursor.sh/builds/231229ezidnxiu3/windows/nsis/arm64
706 0.21.0 mac universal https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/universal
707 0.21.0 mac arm64 https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/arm64
708 0.21.0 mac x64 https://downloader.cursor.sh/builds/231229ezidnxiu3/mac/installer/x64
709 0.21.0 linux x64 https://downloader.cursor.sh/builds/231229ezidnxiu3/linux/appImage/x64
710 0.20.2 windows x64 https://downloader.cursor.sh/builds/231219aksf83aad/windows/nsis/x64
711 0.20.2 windows arm64 https://downloader.cursor.sh/builds/231219aksf83aad/windows/nsis/arm64
712 0.20.2 mac universal https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/universal
713 0.20.2 mac arm64 https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/arm64
714 0.20.2 mac x64 https://downloader.cursor.sh/builds/231219aksf83aad/mac/installer/x64
715 0.20.2 linux x64 https://downloader.cursor.sh/builds/231219aksf83aad/linux/appImage/x64
716 0.20.1 windows x64 https://downloader.cursor.sh/builds/231218ywfaxax09/windows/nsis/x64
717 0.20.1 windows arm64 https://downloader.cursor.sh/builds/231218ywfaxax09/windows/nsis/arm64
718 0.20.1 mac universal https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/universal
719 0.20.1 mac arm64 https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/arm64
720 0.20.1 mac x64 https://downloader.cursor.sh/builds/231218ywfaxax09/mac/installer/x64
721 0.20.1 linux x64 https://downloader.cursor.sh/builds/231218ywfaxax09/linux/appImage/x64
722 0.20.0 windows x64 https://downloader.cursor.sh/builds/231216nsyfew5j1/windows/nsis/x64
723 0.20.0 windows arm64 https://downloader.cursor.sh/builds/231216nsyfew5j1/windows/nsis/arm64
724 0.20.0 mac universal https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/universal
725 0.20.0 mac arm64 https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/arm64
726 0.20.0 mac x64 https://downloader.cursor.sh/builds/231216nsyfew5j1/mac/installer/x64
727 0.20.0 linux x64 https://downloader.cursor.sh/builds/231216nsyfew5j1/linux/appImage/x64
728 0.19.1 windows x64 https://downloader.cursor.sh/builds/2312156z2ric57n/windows/nsis/x64
729 0.19.1 windows arm64 https://downloader.cursor.sh/builds/2312156z2ric57n/windows/nsis/arm64
730 0.19.1 mac universal https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/universal
731 0.19.1 mac arm64 https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/arm64
732 0.19.1 mac x64 https://downloader.cursor.sh/builds/2312156z2ric57n/mac/installer/x64
733 0.19.1 linux x64 https://downloader.cursor.sh/builds/2312156z2ric57n/linux/appImage/x64
734 0.19.0 windows x64 https://downloader.cursor.sh/builds/231214per9qal2p/windows/nsis/x64
735 0.19.0 windows arm64 https://downloader.cursor.sh/builds/231214per9qal2p/windows/nsis/arm64
736 0.19.0 mac universal https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/universal
737 0.19.0 mac arm64 https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/arm64
738 0.19.0 mac x64 https://downloader.cursor.sh/builds/231214per9qal2p/mac/installer/x64
739 0.19.0 linux x64 https://downloader.cursor.sh/builds/231214per9qal2p/linux/appImage/x64
740 0.18.8 windows x64 https://downloader.cursor.sh/builds/2312098ffjr3ign/windows/nsis/x64
741 0.18.8 windows arm64 https://downloader.cursor.sh/builds/2312098ffjr3ign/windows/nsis/arm64
742 0.18.8 mac universal https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/universal
743 0.18.8 mac arm64 https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/arm64
744 0.18.8 mac x64 https://downloader.cursor.sh/builds/2312098ffjr3ign/mac/installer/x64
745 0.18.8 linux x64 https://downloader.cursor.sh/builds/2312098ffjr3ign/linux/appImage/x64
746 0.18.7 windows x64 https://downloader.cursor.sh/builds/23120880aolip2i/windows/nsis/x64
747 0.18.7 windows arm64 https://downloader.cursor.sh/builds/23120880aolip2i/windows/nsis/arm64
748 0.18.7 mac universal https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/universal
749 0.18.7 mac arm64 https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/arm64
750 0.18.7 mac x64 https://downloader.cursor.sh/builds/23120880aolip2i/mac/installer/x64
751 0.18.7 linux x64 https://downloader.cursor.sh/builds/23120880aolip2i/linux/appImage/x64
752 0.18.6 windows x64 https://downloader.cursor.sh/builds/231207ueqazwde8/windows/nsis/x64
753 0.18.6 windows arm64 https://downloader.cursor.sh/builds/231207ueqazwde8/windows/nsis/arm64
754 0.18.6 mac universal https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/universal
755 0.18.6 mac arm64 https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/arm64
756 0.18.6 mac x64 https://downloader.cursor.sh/builds/231207ueqazwde8/mac/installer/x64
757 0.18.6 linux x64 https://downloader.cursor.sh/builds/231207ueqazwde8/linux/appImage/x64
758 0.18.5 windows x64 https://downloader.cursor.sh/builds/231206jzy2n2sbi/windows/nsis/x64
759 0.18.5 windows arm64 https://downloader.cursor.sh/builds/231206jzy2n2sbi/windows/nsis/arm64
760 0.18.5 mac universal https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/universal
761 0.18.5 mac arm64 https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/arm64
762 0.18.5 mac x64 https://downloader.cursor.sh/builds/231206jzy2n2sbi/mac/installer/x64
763 0.18.5 linux x64 https://downloader.cursor.sh/builds/231206jzy2n2sbi/linux/appImage/x64
764 0.18.4 windows x64 https://downloader.cursor.sh/builds/2312033zjv5fqai/windows/nsis/x64
765 0.18.4 windows arm64 https://downloader.cursor.sh/builds/2312033zjv5fqai/windows/nsis/arm64
766 0.18.4 mac universal https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/universal
767 0.18.4 mac arm64 https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/arm64
768 0.18.4 mac x64 https://downloader.cursor.sh/builds/2312033zjv5fqai/mac/installer/x64
769 0.18.4 linux x64 https://downloader.cursor.sh/builds/2312033zjv5fqai/linux/appImage/x64
770 0.18.3 windows x64 https://downloader.cursor.sh/builds/231203k2vnkxq2m/windows/nsis/x64
771 0.18.3 windows arm64 https://downloader.cursor.sh/builds/231203k2vnkxq2m/windows/nsis/arm64
772 0.18.3 mac universal https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/universal
773 0.18.3 mac arm64 https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/arm64
774 0.18.3 mac x64 https://downloader.cursor.sh/builds/231203k2vnkxq2m/mac/installer/x64
775 0.18.3 linux x64 https://downloader.cursor.sh/builds/231203k2vnkxq2m/linux/appImage/x64
776 0.18.1 windows x64 https://downloader.cursor.sh/builds/23120176kaer07t/windows/nsis/x64
777 0.18.1 windows arm64 https://downloader.cursor.sh/builds/23120176kaer07t/windows/nsis/arm64
778 0.18.1 mac universal https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/universal
779 0.18.1 mac arm64 https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/arm64
780 0.18.1 mac x64 https://downloader.cursor.sh/builds/23120176kaer07t/mac/installer/x64
781 0.18.1 linux x64 https://downloader.cursor.sh/builds/23120176kaer07t/linux/appImage/x64
782 0.17.0 windows x64 https://downloader.cursor.sh/builds/231127p7iyxn8rg/windows/nsis/x64
783 0.17.0 windows arm64 https://downloader.cursor.sh/builds/231127p7iyxn8rg/windows/nsis/arm64
784 0.17.0 mac universal https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/universal
785 0.17.0 mac arm64 https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/arm64
786 0.17.0 mac x64 https://downloader.cursor.sh/builds/231127p7iyxn8rg/mac/installer/x64
787 0.17.0 linux x64 https://downloader.cursor.sh/builds/231127p7iyxn8rg/linux/appImage/x64
788 0.16.0 windows x64 https://downloader.cursor.sh/builds/231116rek2xuq6a/windows/nsis/x64
789 0.16.0 windows arm64 https://downloader.cursor.sh/builds/231116rek2xuq6a/windows/nsis/arm64
790 0.16.0 mac universal https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/universal
791 0.16.0 mac arm64 https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/arm64
792 0.16.0 mac x64 https://downloader.cursor.sh/builds/231116rek2xuq6a/mac/installer/x64
793 0.16.0 linux x64 https://downloader.cursor.sh/builds/231116rek2xuq6a/linux/appImage/x64
794 0.15.5 windows x64 https://downloader.cursor.sh/builds/231115a5mv63u9f/windows/nsis/x64
795 0.15.5 windows arm64 https://downloader.cursor.sh/builds/231115a5mv63u9f/windows/nsis/arm64
796 0.15.5 mac universal https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/universal
797 0.15.5 mac arm64 https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/arm64
798 0.15.5 mac x64 https://downloader.cursor.sh/builds/231115a5mv63u9f/mac/installer/x64
799 0.15.5 linux x64 https://downloader.cursor.sh/builds/231115a5mv63u9f/linux/appImage/x64
800 0.15.4 windows x64 https://downloader.cursor.sh/builds/23111469e1i3xyi/windows/nsis/x64
801 0.15.4 windows arm64 https://downloader.cursor.sh/builds/23111469e1i3xyi/windows/nsis/arm64
802 0.15.4 mac universal https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/universal
803 0.15.4 mac arm64 https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/arm64
804 0.15.4 mac x64 https://downloader.cursor.sh/builds/23111469e1i3xyi/mac/installer/x64
805 0.15.4 linux x64 https://downloader.cursor.sh/builds/23111469e1i3xyi/linux/appImage/x64
806 0.15.3 windows x64 https://downloader.cursor.sh/builds/231113b0yv3uqem/windows/nsis/x64
807 0.15.3 windows arm64 https://downloader.cursor.sh/builds/231113b0yv3uqem/windows/nsis/arm64
808 0.15.3 mac universal https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/universal
809 0.15.3 mac arm64 https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/arm64
810 0.15.3 mac x64 https://downloader.cursor.sh/builds/231113b0yv3uqem/mac/installer/x64
811 0.15.3 linux x64 https://downloader.cursor.sh/builds/231113b0yv3uqem/linux/appImage/x64
812 0.15.2 windows x64 https://downloader.cursor.sh/builds/231113ah0kuf3pf/windows/nsis/x64
813 0.15.2 windows arm64 https://downloader.cursor.sh/builds/231113ah0kuf3pf/windows/nsis/arm64
814 0.15.2 mac universal https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/universal
815 0.15.2 mac arm64 https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/arm64
816 0.15.2 mac x64 https://downloader.cursor.sh/builds/231113ah0kuf3pf/mac/installer/x64
817 0.15.2 linux x64 https://downloader.cursor.sh/builds/231113ah0kuf3pf/linux/appImage/x64
818 0.15.1 windows x64 https://downloader.cursor.sh/builds/231111yanyyovap/windows/nsis/x64
819 0.15.1 windows arm64 https://downloader.cursor.sh/builds/231111yanyyovap/windows/nsis/arm64
820 0.15.1 mac universal https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/universal
821 0.15.1 mac arm64 https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/arm64
822 0.15.1 mac x64 https://downloader.cursor.sh/builds/231111yanyyovap/mac/installer/x64
823 0.15.1 linux x64 https://downloader.cursor.sh/builds/231111yanyyovap/linux/appImage/x64
824 0.15.0 windows x64 https://downloader.cursor.sh/builds/231110mdkomczmw/windows/nsis/x64
825 0.15.0 windows arm64 https://downloader.cursor.sh/builds/231110mdkomczmw/windows/nsis/arm64
826 0.15.0 mac universal https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/universal
827 0.15.0 mac arm64 https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/arm64
828 0.15.0 mac x64 https://downloader.cursor.sh/builds/231110mdkomczmw/mac/installer/x64
829 0.15.0 linux x64 https://downloader.cursor.sh/builds/231110mdkomczmw/linux/appImage/x64
830 0.14.1 windows x64 https://downloader.cursor.sh/builds/231109xitrgihlk/windows/nsis/x64
831 0.14.1 windows arm64 https://downloader.cursor.sh/builds/231109xitrgihlk/windows/nsis/arm64
832 0.14.1 mac universal https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/universal
833 0.14.1 mac arm64 https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/arm64
834 0.14.1 mac x64 https://downloader.cursor.sh/builds/231109xitrgihlk/mac/installer/x64
835 0.14.1 linux x64 https://downloader.cursor.sh/builds/231109xitrgihlk/linux/appImage/x64
836 0.14.0 windows x64 https://downloader.cursor.sh/builds/231102m6tuamwbx/windows/nsis/x64
837 0.14.0 windows arm64 https://downloader.cursor.sh/builds/231102m6tuamwbx/windows/nsis/arm64
838 0.14.0 mac universal https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/universal
839 0.14.0 mac arm64 https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/arm64
840 0.14.0 mac x64 https://downloader.cursor.sh/builds/231102m6tuamwbx/mac/installer/x64
841 0.14.0 linux x64 https://downloader.cursor.sh/builds/231102m6tuamwbx/linux/appImage/x64
842 0.13.4 windows x64 https://downloader.cursor.sh/builds/231029rso7pso8l/windows/nsis/x64
843 0.13.4 windows arm64 https://downloader.cursor.sh/builds/231029rso7pso8l/windows/nsis/arm64
844 0.13.4 mac universal https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/universal
845 0.13.4 mac arm64 https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/arm64
846 0.13.4 mac x64 https://downloader.cursor.sh/builds/231029rso7pso8l/mac/installer/x64
847 0.13.4 linux x64 https://downloader.cursor.sh/builds/231029rso7pso8l/linux/appImage/x64
848 0.13.3 windows x64 https://downloader.cursor.sh/builds/231025uihnjkh9v/windows/nsis/x64
849 0.13.3 windows arm64 https://downloader.cursor.sh/builds/231025uihnjkh9v/windows/nsis/arm64
850 0.13.3 mac universal https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/universal
851 0.13.3 mac arm64 https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/arm64
852 0.13.3 mac x64 https://downloader.cursor.sh/builds/231025uihnjkh9v/mac/installer/x64
853 0.13.3 linux x64 https://downloader.cursor.sh/builds/231025uihnjkh9v/linux/appImage/x64
854 0.13.2 windows x64 https://downloader.cursor.sh/builds/231024w4iv7xlm6/windows/nsis/x64
855 0.13.2 windows arm64 https://downloader.cursor.sh/builds/231024w4iv7xlm6/windows/nsis/arm64
856 0.13.2 mac universal https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/universal
857 0.13.2 mac arm64 https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/arm64
858 0.13.2 mac x64 https://downloader.cursor.sh/builds/231024w4iv7xlm6/mac/installer/x64
859 0.13.2 linux x64 https://downloader.cursor.sh/builds/231024w4iv7xlm6/linux/appImage/x64
860 0.13.1 windows x64 https://downloader.cursor.sh/builds/231022f3j0ubckv/windows/nsis/x64
861 0.13.1 windows arm64 https://downloader.cursor.sh/builds/231022f3j0ubckv/windows/nsis/arm64
862 0.13.1 mac universal https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/universal
863 0.13.1 mac arm64 https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/arm64
864 0.13.1 mac x64 https://downloader.cursor.sh/builds/231022f3j0ubckv/mac/installer/x64
865 0.13.1 linux x64 https://downloader.cursor.sh/builds/231022f3j0ubckv/linux/appImage/x64
866 0.13.0 windows x64 https://downloader.cursor.sh/builds/231022ptw6i4j42/windows/nsis/x64
867 0.13.0 windows arm64 https://downloader.cursor.sh/builds/231022ptw6i4j42/windows/nsis/arm64
868 0.13.0 mac universal https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/universal
869 0.13.0 mac arm64 https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/arm64
870 0.13.0 mac x64 https://downloader.cursor.sh/builds/231022ptw6i4j42/mac/installer/x64
871 0.13.0 linux x64 https://downloader.cursor.sh/builds/231022ptw6i4j42/linux/appImage/x64
872 0.12.3 windows x64 https://downloader.cursor.sh/builds/231008c5ursm0oj/windows/nsis/x64
873 0.12.3 windows arm64 https://downloader.cursor.sh/builds/231008c5ursm0oj/windows/nsis/arm64
874 0.12.3 mac universal https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/universal
875 0.12.3 mac arm64 https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/arm64
876 0.12.3 mac x64 https://downloader.cursor.sh/builds/231008c5ursm0oj/mac/installer/x64
877 0.12.3 linux x64 https://downloader.cursor.sh/builds/231008c5ursm0oj/linux/appImage/x64

File diff suppressed because it is too large Load Diff

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/yuaotian/go-cursor-help
module github.com/dacrab/go-cursor-help
go 1.21

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 384 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

View File

@ -91,7 +91,7 @@ func (m *Manager) prepareUpdatedConfig(config *StorageConfig) map[string]interfa
originalFile["telemetry.machineId"] = config.TelemetryMachineId
originalFile["telemetry.devDeviceId"] = config.TelemetryDevDeviceId
originalFile["lastModified"] = time.Now().UTC().Format(time.RFC3339)
// originalFile["version"] = "1.0.1"
originalFile["version"] = "1.0.1"
return originalFile
}

View File

@ -4,113 +4,56 @@ import (
"crypto/rand"
"encoding/hex"
"fmt"
"sync"
"time"
)
// Generator handles secure ID generation for machines and devices
type Generator struct {
bufferPool sync.Pool
}
type Generator struct{}
// NewGenerator creates a new ID generator
func NewGenerator() *Generator {
return &Generator{
bufferPool: sync.Pool{
New: func() interface{} {
return make([]byte, 64)
},
},
}
return &Generator{}
}
// Constants for ID generation
const (
machineIDPrefix = "auth0|user_"
uuidFormat = "%s-%s-%s-%s-%s"
)
// Helper methods
// -------------
// simulateWork adds a small delay to make progress visible
func (g *Generator) simulateWork() {
time.Sleep(800 * time.Millisecond)
}
// generateRandomHex generates a random hex string of specified length
func (g *Generator) generateRandomHex(length int) (string, error) {
buffer := g.bufferPool.Get().([]byte)
defer g.bufferPool.Put(buffer)
if _, err := rand.Read(buffer[:length]); err != nil {
bytes := make([]byte, length)
if _, err := rand.Read(bytes); err != nil {
return "", fmt.Errorf("failed to generate random bytes: %w", err)
}
return hex.EncodeToString(buffer[:length]), nil
return hex.EncodeToString(bytes), nil
}
// GenerateMachineID generates a new machine ID with auth0|user_ prefix
func (g *Generator) GenerateMachineID() (string, error) {
randomPart, err := g.generateRandomHex(32) // 生成64字符的十六进制
if err != nil {
return "", err
}
// Public methods
// -------------
return fmt.Sprintf("%x%s", []byte(machineIDPrefix), randomPart), nil
// GenerateMachineID generates a new 32-byte machine ID
func (g *Generator) GenerateMachineID() (string, error) {
g.simulateWork()
return g.generateRandomHex(32)
}
// GenerateMacMachineID generates a new 64-byte MAC machine ID
func (g *Generator) GenerateMacMachineID() (string, error) {
return g.generateRandomHex(32) // 生成64字符的十六进制
g.simulateWork()
return g.generateRandomHex(64)
}
// GenerateDeviceID generates a new device ID in UUID format
func (g *Generator) GenerateDeviceID() (string, error) {
g.simulateWork()
id, err := g.generateRandomHex(16)
if err != nil {
return "", err
}
return fmt.Sprintf(uuidFormat,
return fmt.Sprintf("%s-%s-%s-%s-%s",
id[0:8], id[8:12], id[12:16], id[16:20], id[20:32]), nil
}
// GenerateSQMID generates a new SQM ID in UUID format (with braces)
func (g *Generator) GenerateSQMID() (string, error) {
id, err := g.GenerateDeviceID()
if err != nil {
return "", err
}
return fmt.Sprintf("{%s}", id), nil
}
// ValidateID validates the format of various ID types
func (g *Generator) ValidateID(id string, idType string) bool {
switch idType {
case "machineID", "macMachineID":
return len(id) == 64 && isHexString(id)
case "deviceID":
return isValidUUID(id)
case "sqmID":
if len(id) < 2 || id[0] != '{' || id[len(id)-1] != '}' {
return false
}
return isValidUUID(id[1 : len(id)-1])
default:
return false
}
}
// Helper functions
func isHexString(s string) bool {
_, err := hex.DecodeString(s)
return err == nil
}
func isValidUUID(uuid string) bool {
if len(uuid) != 36 {
return false
}
for i, r := range uuid {
if i == 8 || i == 13 || i == 18 || i == 23 {
if r != '-' {
return false
}
continue
}
if !((r >= '0' && r <= '9') || (r >= 'a' && r <= 'f') || (r >= 'A' && r <= 'F')) {
return false
}
}
return true
}

View File

@ -1,375 +0,0 @@
import csv
from dataclasses import dataclass
from typing import List
import json
@dataclass
class CursorVersion:
version: str
build_id: str
def get_download_links(self) -> dict:
base_url = f"https://downloader.cursor.sh/builds/{self.build_id}"
return {
"windows": {
"x64": f"{base_url}/windows/nsis/x64",
"arm64": f"{base_url}/windows/nsis/arm64"
},
"mac": {
"universal": f"{base_url}/mac/installer/universal",
"arm64": f"{base_url}/mac/installer/arm64",
"x64": f"{base_url}/mac/installer/x64"
},
"linux": {
"x64": f"{base_url}/linux/appImage/x64"
}
}
def parse_versions(data: str) -> List[CursorVersion]:
versions = []
for line in data.strip().split('\n'):
if not line:
continue
version, build_id = line.strip().split(',')
versions.append(CursorVersion(version, build_id))
return versions
def generate_markdown(versions: List[CursorVersion]) -> str:
md = """# 🖥️ Windows
## x64
<details>
<summary style="font-size:1.2em">📦 Windows x64 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
"""
# Windows x64
for version in versions:
links = version.get_download_links()
md += f"| {version.version} | [下载]({links['windows']['x64']}) |\n"
md += """
</details>
## ARM64
<details>
<summary style="font-size:1.2em">📱 Windows ARM64 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
"""
# Windows ARM64
for version in versions:
links = version.get_download_links()
md += f"| {version.version} | [下载]({links['windows']['arm64']}) |\n"
md += """
</details>
# 🍎 macOS
## Universal
<details>
<summary style="font-size:1.2em">🎯 macOS Universal 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
"""
# macOS Universal
for version in versions:
links = version.get_download_links()
md += f"| {version.version} | [下载]({links['mac']['universal']}) |\n"
md += """
</details>
## ARM64
<details>
<summary style="font-size:1.2em">💪 macOS ARM64 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
"""
# macOS ARM64
for version in versions:
links = version.get_download_links()
md += f"| {version.version} | [下载]({links['mac']['arm64']}) |\n"
md += """
</details>
## Intel
<details>
<summary style="font-size:1.2em">💻 macOS Intel 安装包</summary>
| 版本 | 下载链接 |
|------|----------|
"""
# macOS Intel
for version in versions:
links = version.get_download_links()
md += f"| {version.version} | [下载]({links['mac']['x64']}) |\n"
md += """
</details>
# 🐧 Linux
## x64
<details>
<summary style="font-size:1.2em">🎮 Linux x64 AppImage</summary>
| 版本 | 下载链接 |
|------|----------|
"""
# Linux x64
for version in versions:
links = version.get_download_links()
md += f"| {version.version} | [下载]({links['linux']['x64']}) |\n"
md += """
</details>
<style>
details {
margin: 1em 0;
padding: 0.5em 1em;
background: #f8f9fa;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
summary {
cursor: pointer;
font-weight: bold;
margin: -0.5em -1em;
padding: 0.5em 1em;
}
summary:hover {
background: #f1f3f5;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 1em;
}
th, td {
padding: 0.5em;
text-align: left;
border-bottom: 1px solid #dee2e6;
}
tr:hover {
background: #f1f3f5;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
"""
return md
def main():
# 示例数据
data = """
0.45.11,250207y6nbaw5qc
0.45.10,250205buadkzpea
0.45.9,250202tgstl42dt
0.45.8,250201b44xw1x2k
0.45.7,250130nr6eorv84
0.45.6,25013021lv9say3
0.45.5,250128loaeyulq8
0.45.4,250126vgr3vztvj
0.45.3,250124b0rcj0qql
0.45.2,250123mhituoa6o
0.45.1,2501213ljml5byg
0.45.0,250120dh9ezx9pg
0.44.11,250103fqxdt5u9z
0.44.10,250102ys80vtnud
0.44.9,2412268nc6pfzgo
0.44.8,241222ooktny8mh
0.44.7,2412219nhracv01
0.44.6,2412214pmryneua
0.44.5,241220s3ux0e1tv
0.44.4,241219117fcvexy
0.44.3,241218sybfbogmq
0.44.2,241218ntls52u8v
0.44.0,2412187f9v0nffu
0.43.6,241206z7j6me2e2
0.43.5,241127pdg4cnbu2
0.43.4,241126w13goyvrs
0.43.3,2411246yqzx1jmm
0.43.1,241124gsiwb66nc
0.42.5,24111460bf2loz1
0.42.4,2410291z3bdg1dy
0.42.3,241016kxu9umuir
0.42.2,2410127mj66lvaq
0.42.1,241011i66p9fuvm
0.42.0,241009fij7nohn5
0.41.3,240925fkhcqg263
0.41.2,240921llnho65ov
0.41.1,2409189xe3envg5
0.40.4,2409052yfcjagw2
0.40.3,240829epqamqp7h
0.40.2,240828c021k3aib
0.40.1,2408245thnycuzj
0.40.0,24082202sreugb2
0.39.6,240819ih4ta2fye
0.39.5,240814y9rhzmu7h
0.39.4,240810elmeg3seq
0.39.3,2408092hoyaxt9m
0.39.2,240808phaxh4b5r
0.39.1,240807g919tr4ly
0.39.0,240802cdixtv9a6
0.38.1,240725f0ti25os7
0.38.0,240723790oxe4a2
0.37.1,240714yrr3gmv3k
0.36.2,2407077n6pzboby
0.36.1,240706uekt2eaft
0.36.0,240703xqkjv5aqa
0.35.1,240621pc2f7rl8a
0.35.0,240608cv11mfsjl
0.34.6,240606kgzq24cfb
0.34.6,240605r495newcf
0.34.5,240602rq6xovt3a
0.34.4,2406014h0rgjghe
0.34.3,240529baisuyd2e
0.34.2,240528whh1qyo9h
0.34.1,24052838ygfselt
0.34.0,240527xus72jmkj
0.33.4,240511kb8wt1tms
0.33.3,2405103lx8342ta
0.33.2,240510dwmw395qe
0.33.1,2405039a9h2fqc9
0.33.0,240503hyjsnhazo
0.32.8,240428d499o6zja
0.32.7,240427w5guozr0l
0.32.2,240417ab4wag7sx
0.32.1,2404152czor73fk
0.32.0,240412ugli06ue0
0.31.3,240402rq154jw46
0.31.1,240402pkwfm2ps6
0.31.0,2404018j7z0xv2g
0.30.5,240327tmd2ozdc7
0.30.4,240325dezy8ziab
0.30.3,2403229gtuhto9g
0.30.2,240322gzqjm3p0d
0.30.1,2403212w1ejubt8
0.30.0,240320tpx86e7hk
0.29.1,2403027twmz0d1t
0.29.0,240301kpqvacw2h
0.28.1,240226tstim4evd
0.28.0,240224g2d7jazcq
0.27.4,240219qdbagglqz
0.27.3,240218dxhc6y8os
0.27.2,240216kkzl9nhxi
0.27.1,240215l4ooehnyl
0.27.0,240215at6ewkd59
0.26.2,240212o6r9qxtcg
0.26.1,2402107t904hing
0.26.0,240210k8is5xr6v
0.25.3,240207aacboj1k8
0.25.2,240206p3708uc9z
0.25.1,2402033t030rprh
0.25.0,240203kh86t91q8
0.24.4,240129iecm3e33w
0.24.3,2401289dx79qsc0
0.24.1,240127cad17436d
0.24.0,240126wp9irhmza
0.23.9,240124dsmraeml3
0.23.8,240123fnn1hj1fg
0.23.7,240123xsfe7ywcv
0.23.6,240121m1740elox
0.23.5,2401215utj6tx6q
0.23.4,240121f4qy6ba2y
0.23.3,2401201und3ytom
0.23.2,240120an2k2hf1i
0.23.1,240119fgzxwudn9
0.22.2,24011721vsch1l1
0.22.1,2401083eyk8kmzc
0.22.0,240107qk62kvva3
0.21.1,231230h0vi6srww
0.21.0,231229ezidnxiu3
0.20.2,231219aksf83aad
0.20.1,231218ywfaxax09
0.20.0,231216nsyfew5j1
0.19.1,2312156z2ric57n
0.19.0,231214per9qal2p
0.18.8,2312098ffjr3ign
0.18.7,23120880aolip2i
0.18.6,231207ueqazwde8
0.18.5,231206jzy2n2sbi
0.18.4,2312033zjv5fqai
0.18.3,231203k2vnkxq2m
0.18.1,23120176kaer07t
0.17.0,231127p7iyxn8rg
0.16.0,231116rek2xuq6a
0.15.5,231115a5mv63u9f
0.15.4,23111469e1i3xyi
0.15.3,231113b0yv3uqem
0.15.2,231113ah0kuf3pf
0.15.1,231111yanyyovap
0.15.0,231110mdkomczmw
0.14.1,231109xitrgihlk
0.14.0,231102m6tuamwbx
0.13.4,231029rso7pso8l
0.13.3,231025uihnjkh9v
0.13.2,231024w4iv7xlm6
0.13.1,231022f3j0ubckv
0.13.0,231022ptw6i4j42
0.12.3,231008c5ursm0oj"""
versions = parse_versions(data)
# 生成 Markdown 文件
markdown_content = generate_markdown(versions)
with open('Cursor历史.md', 'w', encoding='utf-8') as f:
f.write(markdown_content)
# 创建结果数据结构
result = {
"versions": []
}
# 处理每个版本
for version in versions:
version_info = {
"version": version.version,
"build_id": version.build_id,
"downloads": version.get_download_links()
}
result["versions"].append(version_info)
# 保存为JSON文件
with open('cursor_downloads.json', 'w', encoding='utf-8') as f:
json.dump(result, f, indent=2, ensure_ascii=False)
# 同时生成CSV格式的下载链接
with open('cursor_downloads.csv', 'w', newline='', encoding='utf-8') as f:
writer = csv.writer(f)
writer.writerow(['Version', 'Platform', 'Architecture', 'Download URL'])
for version in versions:
links = version.get_download_links()
for platform, archs in links.items():
for arch, url in archs.items():
writer.writerow([version.version, platform, arch, url])
if __name__ == "__main__":
main()

View File

@ -1,318 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: cursor_id_modifier\n"
"POT-Creation-Date: 2025-04-25 12:00+0000\n"
"PO-Revision-Date: 2025-04-25 12:00+0000\n"
"Language-Team: None\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Error: No translation file found for domain 'cursor_id_modifier' in {}/zh_CN/LC_MESSAGES/"
msgstr ""
msgid "========== Cursor ID modification tool log start {} =========="
msgstr ""
msgid "[INFO] {} {}"
msgstr ""
msgid "[WARN] {} {}"
msgstr ""
msgid "[ERROR] {} {}"
msgstr ""
msgid "[DEBUG] {} {}"
msgstr ""
msgid "[CMD] {} Executing command: {}"
msgstr ""
msgid "[CMD] {}:"
msgstr ""
msgid "Unable to get username"
msgstr ""
msgid "Finding Cursor installation path..."
msgstr ""
msgid "Found Cursor installation path: {}"
msgstr ""
msgid "Found Cursor via which: {}"
msgstr ""
msgid "Cursor executable not found, will try using config directory"
msgstr ""
msgid "Found Cursor via search: {}"
msgstr ""
msgid "Finding Cursor resource directory..."
msgstr ""
msgid "Found Cursor resource directory: {}"
msgstr ""
msgid "Found resource directory via binary path: {}"
msgstr ""
msgid "Cursor resource directory not found"
msgstr ""
msgid "Please run this script with sudo"
msgstr ""
msgid "Example: sudo {}"
msgstr ""
msgid "Checking Cursor processes..."
msgstr ""
msgid "Getting process details for {}:"
msgstr ""
msgid "No running Cursor processes found"
msgstr ""
msgid "Found running Cursor processes"
msgstr ""
msgid "Attempting to terminate Cursor processes..."
msgstr ""
msgid "Attempting to forcefully terminate processes..."
msgstr ""
msgid "Waiting for processes to terminate, attempt {}/{}..."
msgstr ""
msgid "Cursor processes successfully terminated"
msgstr ""
msgid "Unable to terminate Cursor processes after {} attempts"
msgstr ""
msgid "Please manually terminate the processes and try again"
msgstr ""
msgid "Configuration file does not exist, skipping backup"
msgstr ""
msgid "Configuration backed up to: {}"
msgstr ""
msgid "Backup failed"
msgstr ""
msgid "File does not exist: {}"
msgstr ""
msgid "Unable to modify file permissions: {}"
msgstr ""
msgid "Generated temporary file is empty"
msgstr ""
msgid "Unable to write to file: {}"
msgstr ""
msgid "Machine code reset options"
msgstr ""
msgid "Do you need to reset the machine code? (Usually, modifying JS files is sufficient):"
msgstr ""
msgid "Don't reset - only modify JS files"
msgstr ""
msgid "Reset - modify both config file and machine code"
msgstr ""
msgid "[INPUT_DEBUG] Machine code reset option selected: {}"
msgstr ""
msgid "You chose to reset the machine code"
msgstr ""
msgid "Found existing configuration file: {}"
msgstr ""
msgid "Setting new device and machine IDs..."
msgstr ""
msgid "New device ID: {}"
msgstr ""
msgid "New machine ID: {}"
msgstr ""
msgid "Configuration file modified successfully"
msgstr ""
msgid "Configuration file modification failed"
msgstr ""
msgid "Configuration file not found, this is normal, skipping ID modification"
msgstr ""
msgid "You chose not to reset the machine code, will only modify JS files"
msgstr ""
msgid "Configuration processing completed"
msgstr ""
msgid "Finding Cursor's JS files..."
msgstr ""
msgid "Searching for JS files in resource directory: {}"
msgstr ""
msgid "Found JS file: {}"
msgstr ""
msgid "No JS files found in resource directory, trying other directories..."
msgstr ""
msgid "Searching directory: {}"
msgstr ""
msgid "No modifiable JS files found"
msgstr ""
msgid "Found {} JS files to modify"
msgstr ""
msgid "Starting to modify Cursor's JS files..."
msgstr ""
msgid "Unable to find modifiable JS files"
msgstr ""
msgid "Processing file: {}"
msgstr ""
msgid "Unable to create backup for file: {}"
msgstr ""
msgid "Found x-cursor-checksum setting code"
msgstr ""
msgid "Successfully modified x-cursor-checksum setting code"
msgstr ""
msgid "Failed to modify x-cursor-checksum setting code"
msgstr ""
msgid "Found IOPlatformUUID keyword"
msgstr ""
msgid "Successfully injected randomUUID call into a$ function"
msgstr ""
msgid "Failed to modify a$ function"
msgstr ""
msgid "Successfully injected randomUUID call into v5 function"
msgstr ""
msgid "Failed to modify v5 function"
msgstr ""
msgid "Completed universal modification"
msgstr ""
msgid "File already contains custom injection code, skipping modification"
msgstr ""
msgid "Completed most universal injection"
msgstr ""
msgid "File has already been modified, skipping modification"
msgstr ""
msgid "Failed to modify any JS files"
msgstr ""
msgid "Successfully modified {} JS files"
msgstr ""
msgid "Disabling Cursor auto-update..."
msgstr ""
msgid "Found update configuration file: {}"
msgstr ""
msgid "Disabled update configuration file: {}"
msgstr ""
msgid "Found updater: {}"
msgstr ""
msgid "Disabled updater: {}"
msgstr ""
msgid "No update configuration files or updaters found"
msgstr ""
msgid "Successfully disabled auto-update"
msgstr ""
msgid "You selected: {}"
msgstr ""
msgid "This script only supports Linux systems"
msgstr ""
msgid "Script started..."
msgstr ""
msgid "System information: {}"
msgstr ""
msgid "Current user: {}"
msgstr ""
msgid "System version information"
msgstr ""
msgid "Cursor Linux startup tool"
msgstr ""
msgid "Important notice"
msgstr ""
msgid "This tool prioritizes modifying JS files, which is safer and more reliable"
msgstr ""
msgid "Modifying Cursor JS files..."
msgstr ""
msgid "JS files modified successfully!"
msgstr ""
msgid "JS file modification failed, but configuration file modification may have succeeded"
msgstr ""
msgid "If Cursor still indicates the device is disabled after restarting, please rerun this script"
msgstr ""
msgid "Please restart Cursor to apply the new configuration"
msgstr ""
msgid "Follow the WeChat public account [Pancake AI] to discuss more Cursor tips and AI knowledge (script is free, join the group via the public account for more tips and experts)"
msgstr ""
msgid "Script execution completed"
msgstr ""
msgid "========== Cursor ID modification tool log end {} =========="
msgstr ""
msgid "Detailed log saved to: {}"
msgstr ""
msgid "If you encounter issues, please provide this log file to the developer for troubleshooting"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +0,0 @@
#!/bin/bash
REPO_DIR="$PWD"
LOCALES_DIR="$REPO_DIR/locales"
msginit -i cursor_id_modifier.pot -o $LOCALES_DIR/en_US/LC_MESSAGES/cursor_id_modifier.po -l en_US
for lang in en_US zh_CN; do
cd $LOCALES_DIR/$lang/LC_MESSAGES
msgfmt -o cursor_id_modifier.mo cursor_id_modifier.po
done

View File

@ -56,9 +56,9 @@ trap {
# Detect system architecture
function Get-SystemArch {
if ([Environment]::Is64BitOperatingSystem) {
return "x86_64"
return "x64"
} else {
return "i386"
return "x86"
}
}
@ -98,15 +98,15 @@ function Install-CursorModifier {
# Get latest release
try {
$latestRelease = Invoke-RestMethod -Uri "https://api.github.com/repos/yuaotian/go-cursor-help/releases/latest"
$latestRelease = Invoke-RestMethod -Uri "https://api.github.com/repos/dacrab/go-cursor-help/releases/latest"
Write-Host "Found latest release: $($latestRelease.tag_name)" -ForegroundColor Cyan
# Look for Windows binary with our architecture
$version = $latestRelease.tag_name.TrimStart('v')
Write-Host "Version: $version" -ForegroundColor Cyan
$possibleNames = @(
"cursor-id-modifier_${version}_windows_x86_64.exe",
"cursor-id-modifier_${version}_windows_$($arch).exe"
"cursor-id-modifier_windows_$($arch).exe",
"cursor-id-modifier_windows_$($arch).exe",
"cursor-id-modifier_Windows_$($arch).exe",
"cursor-id-modifier_Windows_$($arch).exe"
)
$asset = $null

View File

@ -33,18 +33,21 @@ detect_system() {
case "$(uname -m)" in
x86_64)
arch="x86_64"
arch="x64"
[ "$os" = "darwin" ] && suffix="_intel"
;;
aarch64|arm64)
arch="arm64"
[ "$os" = "darwin" ] && suffix="_apple_silicon"
;;
i386|i686)
arch="i386"
arch="x86"
[ "$os" = "darwin" ] && { echo -e "${RED}32-bit not supported on macOS${NC}"; exit 1; }
;;
*) echo -e "${RED}Unsupported architecture${NC}"; exit 1;;
esac
echo "$os $arch"
echo "$os $arch $suffix"
}
# Download with progress
@ -84,22 +87,17 @@ main() {
# Get latest release info
echo -e "${BLUE}Fetching latest release information...${NC}"
LATEST_URL="https://api.github.com/repos/yuaotian/go-cursor-help/releases/latest"
# Get latest version and remove 'v' prefix
VERSION=$(curl -s "$LATEST_URL" | grep "tag_name" | cut -d'"' -f4 | sed 's/^v//')
LATEST_URL="https://api.github.com/repos/dacrab/go-cursor-help/releases/latest"
# Construct binary name
BINARY_NAME="cursor-id-modifier_${VERSION}_${OS}_${ARCH}"
BINARY_NAME="cursor-id-modifier_${OS}_${ARCH}${SUFFIX}"
echo -e "${BLUE}Looking for asset: $BINARY_NAME${NC}"
# Get download URL directly
DOWNLOAD_URL=$(curl -s "$LATEST_URL" | grep -o "\"browser_download_url\": \"[^\"]*${BINARY_NAME}[^\"]*\"" | cut -d'"' -f4)
DOWNLOAD_URL=$(curl -s "$LATEST_URL" | tr -d '\n' | grep -o "\"browser_download_url\": \"[^\"]*${BINARY_NAME}[^\"]*\"" | cut -d'"' -f4)
if [ -z "$DOWNLOAD_URL" ]; then
echo -e "${RED}Error: Could not find appropriate binary for $OS $ARCH${NC}"
echo -e "${YELLOW}Available assets:${NC}"
curl -s "$LATEST_URL" | grep "browser_download_url" | cut -d'"' -f4
exit 1
fi

View File

@ -1,349 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: cursor_id_modifier\n"
"POT-Creation-Date: 2025-04-25 12:00+0000\n"
"PO-Revision-Date: 2025-04-25 09:25-0400\n"
"Language-Team: English\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Last-Translator: Poikilos using Grok <7557867+poikilos@users.noreply.github.com>\n"
"Language: en_US\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid ""
"Error: No translation file found for domain 'cursor_id_modifier' in {}/zh_CN/"
"LC_MESSAGES/"
msgstr ""
"Error: No translation file found for domain 'cursor_id_modifier' in {}/zh_CN/"
"LC_MESSAGES/"
msgid "========== Cursor ID modification tool log start {} =========="
msgstr "========== Cursor ID modification tool log start {} =========="
msgid "[INFO] {} {}"
msgstr "[INFO] {} {}"
msgid "[WARN] {} {}"
msgstr "[WARN] {} {}"
msgid "[ERROR] {} {}"
msgstr "[ERROR] {} {}"
msgid "[DEBUG] {} {}"
msgstr "[DEBUG] {} {}"
msgid "[CMD] {} Executing command: {}"
msgstr "[CMD] {} Executing command: {}"
msgid "[CMD] {}:"
msgstr "[CMD] {}:"
msgid "Unable to get username"
msgstr "Unable to get username"
msgid "Finding Cursor installation path..."
msgstr "Finding Cursor installation path..."
msgid "Found Cursor installation path: {}"
msgstr "Found Cursor installation path: {}"
msgid "Found Cursor via which: {}"
msgstr "Found Cursor via which: {}"
msgid "Cursor executable not found, will try using config directory"
msgstr "Cursor executable not found, will try using config directory"
msgid "Found Cursor via search: {}"
msgstr "Found Cursor via search: {}"
msgid "Finding Cursor resource directory..."
msgstr "Finding Cursor resource directory..."
msgid "Found Cursor resource directory: {}"
msgstr "Found Cursor resource directory: {}"
msgid "Found resource directory via binary path: {}"
msgstr "Found resource directory via binary path: {}"
msgid "Cursor resource directory not found"
msgstr "Cursor resource directory not found"
msgid "Please run this script with sudo"
msgstr "Please run this script with sudo"
msgid "Example: sudo {}"
msgstr "Example: sudo {}"
msgid "Checking Cursor processes..."
msgstr "Checking Cursor processes..."
msgid "Getting process details for {}:"
msgstr "Getting process details for {}:"
msgid "No running Cursor processes found"
msgstr "No running Cursor processes found"
msgid "Found running Cursor processes"
msgstr "Found running Cursor processes"
msgid "Attempting to terminate Cursor processes..."
msgstr "Attempting to terminate Cursor processes..."
msgid "Attempting to forcefully terminate processes..."
msgstr "Attempting to forcefully terminate processes..."
msgid "Waiting for processes to terminate, attempt {}/{}..."
msgstr "Waiting for processes to terminate, attempt {}/{}..."
msgid "Cursor processes successfully terminated"
msgstr "Cursor processes successfully terminated"
msgid "Unable to terminate Cursor processes after {} attempts"
msgstr "Unable to terminate Cursor processes after {} attempts"
msgid "Please manually terminate the processes and try again"
msgstr "Please manually terminate the processes and try again"
msgid "Configuration file does not exist, skipping backup"
msgstr "Configuration file does not exist, skipping backup"
msgid "Configuration backed up to: {}"
msgstr "Configuration backed up to: {}"
msgid "Backup failed"
msgstr "Backup failed"
msgid "File does not exist: {}"
msgstr "File does not exist: {}"
msgid "Unable to modify file permissions: {}"
msgstr "Unable to modify file permissions: {}"
msgid "Generated temporary file is empty"
msgstr "Generated temporary file is empty"
msgid "Unable to write to file: {}"
msgstr "Unable to write to file: {}"
msgid "Machine code reset options"
msgstr "Machine code reset options"
msgid ""
"Do you need to reset the machine code? (Usually, modifying JS files is "
"sufficient):"
msgstr ""
"Do you need to reset the machine code? (Usually, modifying JS files is "
"sufficient):"
msgid "Don't reset - only modify JS files"
msgstr "Don't reset - only modify JS files"
msgid "Reset - modify both config file and machine code"
msgstr "Reset - modify both config file and machine code"
msgid "[INPUT_DEBUG] Machine code reset option selected: {}"
msgstr "[INPUT_DEBUG] Machine code reset option selected: {}"
msgid "You chose to reset the machine code"
msgstr "You chose to reset the machine code"
msgid "Found existing configuration file: {}"
msgstr "Found existing configuration file: {}"
msgid "Setting new device and machine IDs..."
msgstr "Setting new device and machine IDs..."
msgid "New device ID: {}"
msgstr "New device ID: {}"
msgid "New machine ID: {}"
msgstr "New machine ID: {}"
msgid "Configuration file modified successfully"
msgstr "Configuration file modified successfully"
msgid "Configuration file modification failed"
msgstr "Configuration file modification failed"
msgid "Configuration file not found, this is normal, skipping ID modification"
msgstr "Configuration file not found, this is normal, skipping ID modification"
msgid "You chose not to reset the machine code, will only modify JS files"
msgstr "You chose not to reset the machine code, will only modify JS files"
msgid "Configuration processing completed"
msgstr "Configuration processing completed"
msgid "Finding Cursor's JS files..."
msgstr "Finding Cursor's JS files..."
msgid "Searching for JS files in resource directory: {}"
msgstr "Searching for JS files in resource directory: {}"
msgid "Found JS file: {}"
msgstr "Found JS file: {}"
msgid "No JS files found in resource directory, trying other directories..."
msgstr "No JS files found in resource directory, trying other directories..."
msgid "Searching directory: {}"
msgstr "Searching directory: {}"
msgid "No modifiable JS files found"
msgstr "No modifiable JS files found"
msgid "Found {} JS files to modify"
msgstr "Found {} JS files to modify"
msgid "Starting to modify Cursor's JS files..."
msgstr "Starting to modify Cursor's JS files..."
msgid "Unable to find modifiable JS files"
msgstr "Unable to find modifiable JS files"
msgid "Processing file: {}"
msgstr "Processing file: {}"
msgid "Unable to create backup for file: {}"
msgstr "Unable to create backup for file: {}"
msgid "Found x-cursor-checksum setting code"
msgstr "Found x-cursor-checksum setting code"
msgid "Successfully modified x-cursor-checksum setting code"
msgstr "Successfully modified x-cursor-checksum setting code"
msgid "Failed to modify x-cursor-checksum setting code"
msgstr "Failed to modify x-cursor-checksum setting code"
msgid "Found IOPlatformUUID keyword"
msgstr "Found IOPlatformUUID keyword"
msgid "Successfully injected randomUUID call into a$ function"
msgstr "Successfully injected randomUUID call into a$ function"
msgid "Failed to modify a$ function"
msgstr "Failed to modify a$ function"
msgid "Successfully injected randomUUID call into v5 function"
msgstr "Successfully injected randomUUID call into v5 function"
msgid "Failed to modify v5 function"
msgstr "Failed to modify v5 function"
msgid "Completed universal modification"
msgstr "Completed universal modification"
msgid "File already contains custom injection code, skipping modification"
msgstr "File already contains custom injection code, skipping modification"
msgid "Completed most universal injection"
msgstr "Completed most universal injection"
msgid "File has already been modified, skipping modification"
msgstr "File has already been modified, skipping modification"
msgid "Failed to modify any JS files"
msgstr "Failed to modify any JS files"
msgid "Successfully modified {} JS files"
msgstr "Successfully modified {} JS files"
msgid "Disabling Cursor auto-update..."
msgstr "Disabling Cursor auto-update..."
msgid "Found update configuration file: {}"
msgstr "Found update configuration file: {}"
msgid "Disabled update configuration file: {}"
msgstr "Disabled update configuration file: {}"
msgid "Found updater: {}"
msgstr "Found updater: {}"
msgid "Disabled updater: {}"
msgstr "Disabled updater: {}"
msgid "No update configuration files or updaters found"
msgstr "No update configuration files or updaters found"
msgid "Successfully disabled auto-update"
msgstr "Successfully disabled auto-update"
msgid "You selected: {}"
msgstr "You selected: {}"
msgid "This script only supports Linux systems"
msgstr "This script only supports Linux systems"
msgid "Script started..."
msgstr "Script started..."
msgid "System information: {}"
msgstr "System information: {}"
msgid "Current user: {}"
msgstr "Current user: {}"
msgid "System version information"
msgstr "System version information"
msgid "Cursor Linux startup tool"
msgstr "Cursor Linux startup tool"
msgid "Important notice"
msgstr "Important notice"
msgid ""
"This tool prioritizes modifying JS files, which is safer and more reliable"
msgstr ""
"This tool prioritizes modifying JS files, which is safer and more reliable"
msgid "Modifying Cursor JS files..."
msgstr "Modifying Cursor JS files..."
msgid "JS files modified successfully!"
msgstr "JS files modified successfully!"
msgid ""
"JS file modification failed, but configuration file modification may have "
"succeeded"
msgstr ""
"JS file modification failed, but configuration file modification may have "
"succeeded"
msgid ""
"If Cursor still indicates the device is disabled after restarting, please "
"rerun this script"
msgstr ""
"If Cursor still indicates the device is disabled after restarting, please "
"rerun this script"
msgid "Please restart Cursor to apply the new configuration"
msgstr "Please restart Cursor to apply the new configuration"
msgid ""
"Follow the WeChat public account [Pancake AI] to discuss more Cursor tips "
"and AI knowledge (script is free, join the group via the public account for "
"more tips and experts)"
msgstr ""
"Follow the WeChat public account [Pancake AI] to discuss more Cursor tips "
"and AI knowledge (script is free, join the group via the public account for "
"more tips and experts)"
msgid "Script execution completed"
msgstr "Script execution completed"
msgid "========== Cursor ID modification tool log end {} =========="
msgstr "========== Cursor ID modification tool log end {} =========="
msgid "Detailed log saved to: {}"
msgstr "Detailed log saved to: {}"
msgid ""
"If you encounter issues, please provide this log file to the developer for "
"troubleshooting"
msgstr ""
"If you encounter issues, please provide this log file to the developer for "
"troubleshooting"

View File

@ -1,320 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: cursor_id_modifier\n"
"POT-Creation-Date: 2025-04-25 12:00+0000\n"
"PO-Revision-Date: 2025-04-25 12:00+0000\n"
"Last-Translator: None\n"
"Language-Team: Chinese\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Error: No translation file found for domain 'cursor_id_modifier' in {}/zh_CN/LC_MESSAGES/"
msgstr "错误:未在 {}/zh_CN/LC_MESSAGES/ 中找到域 'cursor_id_modifier' 的翻译文件"
msgid "========== Cursor ID modification tool log start {} =========="
msgstr "========== Cursor ID 修改工具日志开始 {} =========="
msgid "[INFO] {} {}"
msgstr "[INFO] {} {}"
msgid "[WARN] {} {}"
msgstr "[WARN] {} {}"
msgid "[ERROR] {} {}"
msgstr "[ERROR] {} {}"
msgid "[DEBUG] {} {}"
msgstr "[DEBUG] {} {}"
msgid "[CMD] {} Executing command: {}"
msgstr "[CMD] {} 执行命令: {}"
msgid "[CMD] {}:"
msgstr "[CMD] {}:"
msgid "Unable to get username"
msgstr "无法获取用户名"
msgid "Finding Cursor installation path..."
msgstr "查找Cursor安装路径..."
msgid "Found Cursor installation path: {}"
msgstr "找到Cursor安装路径: {}"
msgid "Found Cursor via which: {}"
msgstr "通过which找到Cursor: {}"
msgid "Cursor executable not found, will try using config directory"
msgstr "未找到Cursor可执行文件将尝试使用配置目录"
msgid "Found Cursor via search: {}"
msgstr "通过查找找到Cursor: {}"
msgid "Finding Cursor resource directory..."
msgstr "查找Cursor资源目录..."
msgid "Found Cursor resource directory: {}"
msgstr "找到Cursor资源目录: {}"
msgid "Found resource directory via binary path: {}"
msgstr "通过二进制路径找到资源目录: {}"
msgid "Cursor resource directory not found"
msgstr "未找到Cursor资源目录"
msgid "Please run this script with sudo"
msgstr "请使用 sudo 运行此脚本"
msgid "Example: sudo {}"
msgstr "示例: sudo {}"
msgid "Checking Cursor processes..."
msgstr "检查 Cursor 进程..."
msgid "Getting process details for {}:"
msgstr "正在获取 {} 进程详细信息:"
msgid "No running Cursor processes found"
msgstr "未发现运行中的 Cursor 进程"
msgid "Found running Cursor processes"
msgstr "发现 Cursor 进程正在运行"
msgid "Attempting to terminate Cursor processes..."
msgstr "尝试关闭 Cursor 进程..."
msgid "Attempting to forcefully terminate processes..."
msgstr "尝试强制终止进程..."
msgid "Waiting for processes to terminate, attempt {}/{}..."
msgstr "等待进程关闭,尝试 {}/{}..."
msgid "Cursor processes successfully terminated"
msgstr "Cursor 进程已成功关闭"
msgid "Unable to terminate Cursor processes after {} attempts"
msgstr "在 {} 次尝试后仍无法关闭 Cursor 进程"
msgid "Please manually terminate the processes and try again"
msgstr "请手动关闭进程后重试"
msgid "Configuration file does not exist, skipping backup"
msgstr "配置文件不存在,跳过备份"
msgid "Configuration backed up to: {}"
msgstr "配置已备份到: {}"
msgid "Backup failed"
msgstr "备份失败"
msgid "File does not exist: {}"
msgstr "文件不存在: {}"
msgid "Unable to modify file permissions: {}"
msgstr "无法修改文件权限: {}"
msgid "Generated temporary file is empty"
msgstr "生成的临时文件为空"
msgid "Unable to write to file: {}"
msgstr "无法写入文件: {}"
msgid "Machine code reset options"
msgstr "机器码重置选项"
msgid "Do you need to reset the machine code? (Usually, modifying JS files is sufficient):"
msgstr "是否需要重置机器码? (通常情况下只修改js文件即可)"
msgid "Don't reset - only modify JS files"
msgstr "不重置 - 仅修改js文件即可"
msgid "Reset - modify both config file and machine code"
msgstr "重置 - 同时修改配置文件和机器码"
msgid "[INPUT_DEBUG] Machine code reset option selected: {}"
msgstr "[INPUT_DEBUG] 机器码重置选项选择: {}"
msgid "You chose to reset the machine code"
msgstr "您选择了重置机器码"
msgid "Found existing configuration file: {}"
msgstr "发现已有配置文件: {}"
msgid "Setting new device and machine IDs..."
msgstr "正在设置新的设备和机器ID..."
msgid "New device ID: {}"
msgstr "新设备ID: {}"
msgid "New machine ID: {}"
msgstr "新机器ID: {}"
msgid "Configuration file modified successfully"
msgstr "配置文件修改成功"
msgid "Configuration file modification failed"
msgstr "配置文件修改失败"
msgid "Configuration file not found, this is normal, skipping ID modification"
msgstr "未找到配置文件这是正常的脚本将跳过ID修改"
msgid "You chose not to reset the machine code, will only modify JS files"
msgstr "您选择了不重置机器码将仅修改js文件"
msgid "Configuration processing completed"
msgstr "配置处理完成"
msgid "Finding Cursor's JS files..."
msgstr "查找Cursor的JS文件..."
msgid "Searching for JS files in resource directory: {}"
msgstr "在资源目录中搜索JS文件: {}"
msgid "Found JS file: {}"
msgstr "找到JS文件: {}"
msgid "No JS files found in resource directory, trying other directories..."
msgstr "在资源目录中未找到JS文件尝试在其他目录中搜索..."
msgid "Searching directory: {}"
msgstr "搜索目录: {}"
msgid "No modifiable JS files found"
msgstr "未找到任何可修改的JS文件"
msgid "Found {} JS files to modify"
msgstr "找到 {} 个JS文件需要修改"
msgid "Starting to modify Cursor's JS files..."
msgstr "开始修改Cursor的JS文件..."
msgid "Unable to find modifiable JS files"
msgstr "无法找到可修改的JS文件"
msgid "Processing file: {}"
msgstr "处理文件: {}"
msgid "Unable to create backup for file: {}"
msgstr "无法创建文件备份: {}"
msgid "Found x-cursor-checksum setting code"
msgstr "找到 x-cursor-checksum 设置代码"
msgid "Successfully modified x-cursor-checksum setting code"
msgstr "成功修改 x-cursor-checksum 设置代码"
msgid "Failed to modify x-cursor-checksum setting code"
msgstr "修改 x-cursor-checksum 设置代码失败"
msgid "Found IOPlatformUUID keyword"
msgstr "找到 IOPlatformUUID 关键字"
msgid "Successfully injected randomUUID call into a$ function"
msgstr "成功注入 randomUUID 调用到 a$ 函数"
msgid "Failed to modify a$ function"
msgstr "修改 a$ 函数失败"
msgid "Successfully injected randomUUID call into v5 function"
msgstr "成功注入 randomUUID 调用到 v5 函数"
msgid "Failed to modify v5 function"
msgstr "修改 v5 函数失败"
msgid "Completed universal modification"
msgstr "完成通用修改"
msgid "File already contains custom injection code, skipping modification"
msgstr "文件已经包含自定义注入代码,跳过修改"
msgid "Completed most universal injection"
msgstr "完成最通用注入"
msgid "File has already been modified, skipping modification"
msgstr "文件已经被修改过,跳过修改"
msgid "Failed to modify any JS files"
msgstr "未能成功修改任何JS文件"
msgid "Successfully modified {} JS files"
msgstr "成功修改了 {} 个JS文件"
msgid "Disabling Cursor auto-update..."
msgstr "正在禁用 Cursor 自动更新..."
msgid "Found update configuration file: {}"
msgstr "找到更新配置文件: {}"
msgid "Disabled update configuration file: {}"
msgstr "已禁用更新配置文件: {}"
msgid "Found updater: {}"
msgstr "找到更新程序: {}"
msgid "Disabled updater: {}"
msgstr "已禁用更新程序: {}"
msgid "No update configuration files or updaters found"
msgstr "未找到任何更新配置文件或更新程序"
msgid "Successfully disabled auto-update"
msgstr "成功禁用了自动更新"
msgid "You selected: {}"
msgstr "您选择了: {}"
msgid "This script only supports Linux systems"
msgstr "本脚本仅支持 Linux 系统"
msgid "Script started..."
msgstr "脚本启动..."
msgid "System information: {}"
msgstr "系统信息: {}"
msgid "Current user: {}"
msgstr "当前用户: {}"
msgid "System version information"
msgstr "系统版本信息"
msgid "Cursor Linux startup tool"
msgstr "Cursor Linux 启动工具"
msgid "Important notice"
msgstr "重要提示"
msgid "This tool prioritizes modifying JS files, which is safer and more reliable"
msgstr "本工具优先修改js文件更加安全可靠"
msgid "Modifying Cursor JS files..."
msgstr "正在修改Cursor JS文件..."
msgid "JS files modified successfully!"
msgstr "JS文件修改成功"
msgid "JS file modification failed, but configuration file modification may have succeeded"
msgstr "JS文件修改失败但配置文件修改可能已成功"
msgid "If Cursor still indicates the device is disabled after restarting, please rerun this script"
msgstr "如果重启后 Cursor 仍然提示设备被禁用,请重新运行此脚本"
msgid "Please restart Cursor to apply the new configuration"
msgstr "请重启 Cursor 以应用新的配置"
msgid "Follow the WeChat public account [Pancake AI] to discuss more Cursor tips and AI knowledge (script is free, join the group via the public account for more tips and experts)"
msgstr "关注公众号【煎饼果子卷AI】一起交流更多Cursor技巧和AI知识(脚本免费、关注公众号加群有更多技巧和大佬)"
msgid "Script execution completed"
msgstr "脚本执行完成"
msgid "========== Cursor ID modification tool log end {} =========="
msgstr "========== Cursor ID 修改工具日志结束 {} =========="
msgid "Detailed log saved to: {}"
msgstr "详细日志已保存到: {}"
msgid "If you encounter issues, please provide this log file to the developer for troubleshooting"
msgstr "如遇问题请将此日志文件提供给开发者以协助排查"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,607 +0,0 @@
# 设置输出编码为 UTF-8
$OutputEncoding = [System.Text.Encoding]::UTF8
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
# 颜色定义
$RED = "`e[31m"
$GREEN = "`e[32m"
$YELLOW = "`e[33m"
$BLUE = "`e[34m"
$NC = "`e[0m"
# 配置文件路径
$STORAGE_FILE = "$env:APPDATA\Cursor\User\globalStorage\storage.json"
$BACKUP_DIR = "$env:APPDATA\Cursor\User\globalStorage\backups"
# 新增 Cursor 初始化函数
function Cursor-初始化 {
Write-Host "$GREEN[信息]$NC 正在执行 Cursor 初始化清理..."
$BASE_PATH = "$env:APPDATA\Cursor\User"
$filesToDelete = @(
(Join-Path -Path $BASE_PATH -ChildPath "globalStorage\\state.vscdb"),
(Join-Path -Path $BASE_PATH -ChildPath "globalStorage\\state.vscdb.backup")
)
$folderToCleanContents = Join-Path -Path $BASE_PATH -ChildPath "History"
$folderToDeleteCompletely = Join-Path -Path $BASE_PATH -ChildPath "workspaceStorage"
Write-Host "$BLUE[调试]$NC 基础路径: $BASE_PATH"
# 删除指定文件
foreach ($file in $filesToDelete) {
Write-Host "$BLUE[调试]$NC 检查文件: $file"
if (Test-Path $file) {
try {
Remove-Item -Path $file -Force -ErrorAction Stop
Write-Host "$GREEN[成功]$NC 已删除文件: $file"
}
catch {
Write-Host "$RED[错误]$NC 删除文件 $file 失败: $($_.Exception.Message)"
}
} else {
Write-Host "$YELLOW[警告]$NC 文件不存在,跳过删除: $file"
}
}
# 清空指定文件夹内容
Write-Host "$BLUE[调试]$NC 检查待清空文件夹: $folderToCleanContents"
if (Test-Path $folderToCleanContents) {
try {
# 获取子项进行删除,以避免删除 History 文件夹本身
Get-ChildItem -Path $folderToCleanContents -Recurse | Remove-Item -Recurse -Force -ErrorAction Stop
Write-Host "$GREEN[成功]$NC 已清空文件夹内容: $folderToCleanContents"
}
catch {
Write-Host "$RED[错误]$NC 清空文件夹 $folderToCleanContents 内容失败: $($_.Exception.Message)"
}
} else {
Write-Host "$YELLOW[警告]$NC 文件夹不存在,跳过清空: $folderToCleanContents"
}
# 删除指定文件夹及其内容
Write-Host "$BLUE[调试]$NC 检查待删除文件夹: $folderToDeleteCompletely"
if (Test-Path $folderToDeleteCompletely) {
try {
Remove-Item -Path $folderToDeleteCompletely -Recurse -Force -ErrorAction Stop
Write-Host "$GREEN[成功]$NC 已删除文件夹: $folderToDeleteCompletely"
}
catch {
Write-Host "$RED[错误]$NC 删除文件夹 $folderToDeleteCompletely 失败: $($_.Exception.Message)"
}
} else {
Write-Host "$YELLOW[警告]$NC 文件夹不存在,跳过删除: $folderToDeleteCompletely"
}
Write-Host "$GREEN[信息]$NC Cursor 初始化清理完成。"
Write-Host "" # 添加空行以改善输出格式
}
# 检查管理员权限
function Test-Administrator {
$user = [Security.Principal.WindowsIdentity]::GetCurrent()
$principal = New-Object Security.Principal.WindowsPrincipal($user)
return $principal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)
}
if (-not (Test-Administrator)) {
Write-Host "$RED[错误]$NC 请以管理员身份运行此脚本"
Write-Host "请右键点击脚本,选择'以管理员身份运行'"
Read-Host "按回车键退出"
exit 1
}
# 显示 Logo
Clear-Host
Write-Host @"
"@
Write-Host "$BLUE================================$NC"
Write-Host "$GREEN Cursor 设备ID 修改工具 $NC"
Write-Host "$YELLOW 关注公众号【煎饼果子卷AI】 $NC"
Write-Host "$YELLOW 一起交流更多Cursor技巧和AI知识(脚本免费、关注公众号加群有更多技巧和大佬) $NC"
Write-Host "$YELLOW [重要提示] 本工具免费如果对您有帮助请关注公众号【煎饼果子卷AI】 $NC"
Write-Host ""
Write-Host "$YELLOW [小小广告] 出售CursorPro教育号一年质保三个月有需要找我(86)WeChatJavaRookie666 $NC"
Write-Host "$BLUE================================$NC"
# 获取并显示 Cursor 版本
function Get-CursorVersion {
try {
# 主要检测路径
$packagePath = "$env:LOCALAPPDATA\\Programs\\cursor\\resources\\app\\package.json"
if (Test-Path $packagePath) {
$packageJson = Get-Content $packagePath -Raw | ConvertFrom-Json
if ($packageJson.version) {
Write-Host "$GREEN[信息]$NC 当前安装的 Cursor 版本: v$($packageJson.version)"
return $packageJson.version
}
}
# 备用路径检测
$altPath = "$env:LOCALAPPDATA\\cursor\\resources\\app\\package.json"
if (Test-Path $altPath) {
$packageJson = Get-Content $altPath -Raw | ConvertFrom-Json
if ($packageJson.version) {
Write-Host "$GREEN[信息]$NC 当前安装的 Cursor 版本: v$($packageJson.version)"
return $packageJson.version
}
}
Write-Host "$YELLOW[警告]$NC 无法检测到 Cursor 版本"
Write-Host "$YELLOW[提示]$NC 请确保 Cursor 已正确安装"
return $null
}
catch {
Write-Host "$RED[错误]$NC 获取 Cursor 版本失败: $_"
return $null
}
}
# 获取并显示版本信息
$cursorVersion = Get-CursorVersion
Write-Host ""
Write-Host "$YELLOW[重要提示]$NC 最新的 0.50.x (以支持)"
Write-Host ""
# 检查并关闭 Cursor 进程
Write-Host "$GREEN[信息]$NC 检查 Cursor 进程..."
function Get-ProcessDetails {
param($processName)
Write-Host "$BLUE[调试]$NC 正在获取 $processName 进程详细信息:"
Get-WmiObject Win32_Process -Filter "name='$processName'" |
Select-Object ProcessId, ExecutablePath, CommandLine |
Format-List
}
# 定义最大重试次数和等待时间
$MAX_RETRIES = 5
$WAIT_TIME = 1
# 处理进程关闭
function Close-CursorProcess {
param($processName)
$process = Get-Process -Name $processName -ErrorAction SilentlyContinue
if ($process) {
Write-Host "$YELLOW[警告]$NC 发现 $processName 正在运行"
Get-ProcessDetails $processName
Write-Host "$YELLOW[警告]$NC 尝试关闭 $processName..."
Stop-Process -Name $processName -Force
$retryCount = 0
while ($retryCount -lt $MAX_RETRIES) {
$process = Get-Process -Name $processName -ErrorAction SilentlyContinue
if (-not $process) { break }
$retryCount++
if ($retryCount -ge $MAX_RETRIES) {
Write-Host "$RED[错误]$NC$MAX_RETRIES 次尝试后仍无法关闭 $processName"
Get-ProcessDetails $processName
Write-Host "$RED[错误]$NC 请手动关闭进程后重试"
Read-Host "按回车键退出"
exit 1
}
Write-Host "$YELLOW[警告]$NC 等待进程关闭,尝试 $retryCount/$MAX_RETRIES..."
Start-Sleep -Seconds $WAIT_TIME
}
Write-Host "$GREEN[信息]$NC $processName 已成功关闭"
}
}
# 关闭所有 Cursor 进程
Close-CursorProcess "Cursor"
Close-CursorProcess "cursor"
# 执行 Cursor 初始化清理
# Cursor-初始化
# 创建备份目录
if (-not (Test-Path $BACKUP_DIR)) {
New-Item -ItemType Directory -Path $BACKUP_DIR | Out-Null
}
# 备份现有配置
if (Test-Path $STORAGE_FILE) {
Write-Host "$GREEN[信息]$NC 正在备份配置文件..."
$backupName = "storage.json.backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')"
Copy-Item $STORAGE_FILE "$BACKUP_DIR\$backupName"
}
# 生成新的 ID
Write-Host "$GREEN[信息]$NC 正在生成新的 ID..."
# 在颜色定义后添加此函数
function Get-RandomHex {
param (
[int]$length
)
$bytes = New-Object byte[] ($length)
$rng = [System.Security.Cryptography.RNGCryptoServiceProvider]::new()
$rng.GetBytes($bytes)
$hexString = [System.BitConverter]::ToString($bytes) -replace '-',''
$rng.Dispose()
return $hexString
}
# 改进 ID 生成函数
function New-StandardMachineId {
$template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
$result = $template -replace '[xy]', {
param($match)
$r = [Random]::new().Next(16)
$v = if ($match.Value -eq "x") { $r } else { ($r -band 0x3) -bor 0x8 }
return $v.ToString("x")
}
return $result
}
# 在生成 ID 时使用新函数
$MAC_MACHINE_ID = New-StandardMachineId
$UUID = [System.Guid]::NewGuid().ToString()
# 将 auth0|user_ 转换为字节数组的十六进制
$prefixBytes = [System.Text.Encoding]::UTF8.GetBytes("auth0|user_")
$prefixHex = -join ($prefixBytes | ForEach-Object { '{0:x2}' -f $_ })
# 生成32字节(64个十六进制字符)的随机数作为 machineId 的随机部分
$randomPart = Get-RandomHex -length 32
$MACHINE_ID = "$prefixHex$randomPart"
$SQM_ID = "{$([System.Guid]::NewGuid().ToString().ToUpper())}"
# 在Update-MachineGuid函数前添加权限检查
if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
Write-Host "$RED[错误]$NC 请使用管理员权限运行此脚本"
Start-Process powershell "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs
exit
}
function Update-MachineGuid {
try {
# 检查注册表路径是否存在,不存在则创建
$registryPath = "HKLM:\SOFTWARE\Microsoft\Cryptography"
if (-not (Test-Path $registryPath)) {
Write-Host "$YELLOW[警告]$NC 注册表路径不存在: $registryPath,正在创建..."
New-Item -Path $registryPath -Force | Out-Null
Write-Host "$GREEN[信息]$NC 注册表路径创建成功"
}
# 获取当前的 MachineGuid如果不存在则使用空字符串作为默认值
$originalGuid = ""
try {
$currentGuid = Get-ItemProperty -Path $registryPath -Name MachineGuid -ErrorAction SilentlyContinue
if ($currentGuid) {
$originalGuid = $currentGuid.MachineGuid
Write-Host "$GREEN[信息]$NC 当前注册表值:"
Write-Host "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography"
Write-Host " MachineGuid REG_SZ $originalGuid"
} else {
Write-Host "$YELLOW[警告]$NC MachineGuid 值不存在,将创建新值"
}
} catch {
Write-Host "$YELLOW[警告]$NC 获取 MachineGuid 失败: $($_.Exception.Message)"
}
# 创建备份目录(如果不存在)
if (-not (Test-Path $BACKUP_DIR)) {
New-Item -ItemType Directory -Path $BACKUP_DIR -Force | Out-Null
}
# 创建备份文件(仅当原始值存在时)
if ($originalGuid) {
$backupFile = "$BACKUP_DIR\MachineGuid_$(Get-Date -Format 'yyyyMMdd_HHmmss').reg"
$backupResult = Start-Process "reg.exe" -ArgumentList "export", "`"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography`"", "`"$backupFile`"" -NoNewWindow -Wait -PassThru
if ($backupResult.ExitCode -eq 0) {
Write-Host "$GREEN[信息]$NC 注册表项已备份到:$backupFile"
} else {
Write-Host "$YELLOW[警告]$NC 备份创建失败,继续执行..."
}
}
# 生成新GUID
$newGuid = [System.Guid]::NewGuid().ToString()
# 更新或创建注册表值
Set-ItemProperty -Path $registryPath -Name MachineGuid -Value $newGuid -Force -ErrorAction Stop
# 验证更新
$verifyGuid = (Get-ItemProperty -Path $registryPath -Name MachineGuid -ErrorAction Stop).MachineGuid
if ($verifyGuid -ne $newGuid) {
throw "注册表验证失败:更新后的值 ($verifyGuid) 与预期值 ($newGuid) 不匹配"
}
Write-Host "$GREEN[信息]$NC 注册表更新成功:"
Write-Host "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography"
Write-Host " MachineGuid REG_SZ $newGuid"
return $true
}
catch {
Write-Host "$RED[错误]$NC 注册表操作失败:$($_.Exception.Message)"
# 尝试恢复备份(如果存在)
if (($backupFile -ne $null) -and (Test-Path $backupFile)) {
Write-Host "$YELLOW[恢复]$NC 正在从备份恢复..."
$restoreResult = Start-Process "reg.exe" -ArgumentList "import", "`"$backupFile`"" -NoNewWindow -Wait -PassThru
if ($restoreResult.ExitCode -eq 0) {
Write-Host "$GREEN[恢复成功]$NC 已还原原始注册表值"
} else {
Write-Host "$RED[错误]$NC 恢复失败,请手动导入备份文件:$backupFile"
}
} else {
Write-Host "$YELLOW[警告]$NC 未找到备份文件或备份创建失败,无法自动恢复"
}
return $false
}
}
# 创建或更新配置文件
Write-Host "$GREEN[信息]$NC 正在更新配置..."
try {
# 检查配置文件是否存在
if (-not (Test-Path $STORAGE_FILE)) {
Write-Host "$RED[错误]$NC 未找到配置文件: $STORAGE_FILE"
Write-Host "$YELLOW[提示]$NC 请先安装并运行一次 Cursor 后再使用此脚本"
Read-Host "按回车键退出"
exit 1
}
# 读取现有配置文件
try {
$originalContent = Get-Content $STORAGE_FILE -Raw -Encoding UTF8
# 将 JSON 字符串转换为 PowerShell 对象
$config = $originalContent | ConvertFrom-Json
# 备份当前值
$oldValues = @{
'machineId' = $config.'telemetry.machineId'
'macMachineId' = $config.'telemetry.macMachineId'
'devDeviceId' = $config.'telemetry.devDeviceId'
'sqmId' = $config.'telemetry.sqmId'
}
# 更新特定的值
$config.'telemetry.machineId' = $MACHINE_ID
$config.'telemetry.macMachineId' = $MAC_MACHINE_ID
$config.'telemetry.devDeviceId' = $UUID
$config.'telemetry.sqmId' = $SQM_ID
# 将更新后的对象转换回 JSON 并保存
$updatedJson = $config | ConvertTo-Json -Depth 10
[System.IO.File]::WriteAllText(
[System.IO.Path]::GetFullPath($STORAGE_FILE),
$updatedJson,
[System.Text.Encoding]::UTF8
)
Write-Host "$GREEN[信息]$NC 成功更新配置文件"
} catch {
# 如果出错,尝试恢复原始内容
if ($originalContent) {
[System.IO.File]::WriteAllText(
[System.IO.Path]::GetFullPath($STORAGE_FILE),
$originalContent,
[System.Text.Encoding]::UTF8
)
}
throw "处理 JSON 失败: $_"
}
# 直接执行更新 MachineGuid不再询问
Update-MachineGuid
# 显示结果
Write-Host ""
Write-Host "$GREEN[信息]$NC 已更新配置:"
Write-Host "$BLUE[调试]$NC machineId: $MACHINE_ID"
Write-Host "$BLUE[调试]$NC macMachineId: $MAC_MACHINE_ID"
Write-Host "$BLUE[调试]$NC devDeviceId: $UUID"
Write-Host "$BLUE[调试]$NC sqmId: $SQM_ID"
# 显示文件树结构
Write-Host ""
Write-Host "$GREEN[信息]$NC 文件结构:"
Write-Host "$BLUE$env:APPDATA\Cursor\User$NC"
Write-Host "├── globalStorage"
Write-Host "│ ├── storage.json (已修改)"
Write-Host "│ └── backups"
# 列出备份文件
$backupFiles = Get-ChildItem "$BACKUP_DIR\*" -ErrorAction SilentlyContinue
if ($backupFiles) {
foreach ($file in $backupFiles) {
Write-Host "│ └── $($file.Name)"
}
} else {
Write-Host "│ └── (空)"
}
# 显示公众号信息
Write-Host ""
Write-Host "$GREEN================================$NC"
Write-Host "$YELLOW 关注公众号【煎饼果子卷AI】一起交流更多Cursor技巧和AI知识(脚本免费、关注公众号加群有更多技巧和大佬) $NC"
Write-Host "$GREEN================================$NC"
Write-Host ""
Write-Host "$GREEN[信息]$NC 请重启 Cursor 以应用新的配置"
Write-Host ""
# 询问是否要禁用自动更新
Write-Host ""
Write-Host "$YELLOW[询问]$NC 是否要禁用 Cursor 自动更新功能?"
Write-Host "0) 否 - 保持默认设置 (按回车键)"
Write-Host "1) 是 - 禁用自动更新"
$choice = Read-Host "请输入选项 (0)"
if ($choice -eq "1") {
Write-Host ""
Write-Host "$GREEN[信息]$NC 正在处理自动更新..."
$updaterPath = "$env:LOCALAPPDATA\cursor-updater"
# 定义手动设置教程
function Show-ManualGuide {
Write-Host ""
Write-Host "$YELLOW[警告]$NC 自动设置失败,请尝试手动操作:"
Write-Host "$YELLOW手动禁用更新步骤$NC"
Write-Host "1. 以管理员身份打开 PowerShell"
Write-Host "2. 复制粘贴以下命令:"
Write-Host "$BLUE命令1 - 删除现有目录(如果存在):$NC"
Write-Host "Remove-Item -Path `"$updaterPath`" -Force -Recurse -ErrorAction SilentlyContinue"
Write-Host ""
Write-Host "$BLUE命令2 - 创建阻止文件:$NC"
Write-Host "New-Item -Path `"$updaterPath`" -ItemType File -Force | Out-Null"
Write-Host ""
Write-Host "$BLUE命令3 - 设置只读属性:$NC"
Write-Host "Set-ItemProperty -Path `"$updaterPath`" -Name IsReadOnly -Value `$true"
Write-Host ""
Write-Host "$BLUE命令4 - 设置权限(可选):$NC"
Write-Host "icacls `"$updaterPath`" /inheritance:r /grant:r `"`$($env:USERNAME):(R)`""
Write-Host ""
Write-Host "$YELLOW验证方法$NC"
Write-Host "1. 运行命令Get-ItemProperty `"$updaterPath`""
Write-Host "2. 确认 IsReadOnly 属性为 True"
Write-Host "3. 运行命令icacls `"$updaterPath`""
Write-Host "4. 确认只有读取权限"
Write-Host ""
Write-Host "$YELLOW[提示]$NC 完成后请重启 Cursor"
}
try {
# 检查cursor-updater是否存在
if (Test-Path $updaterPath) {
# 如果是文件,说明已经创建了阻止更新
if ((Get-Item $updaterPath) -is [System.IO.FileInfo]) {
Write-Host "$GREEN[信息]$NC 已创建阻止更新文件,无需再次阻止"
return
}
# 如果是目录,尝试删除
else {
try {
Remove-Item -Path $updaterPath -Force -Recurse -ErrorAction Stop
Write-Host "$GREEN[信息]$NC 成功删除 cursor-updater 目录"
}
catch {
Write-Host "$RED[错误]$NC 删除 cursor-updater 目录失败"
Show-ManualGuide
return
}
}
}
# 创建阻止文件
try {
New-Item -Path $updaterPath -ItemType File -Force -ErrorAction Stop | Out-Null
Write-Host "$GREEN[信息]$NC 成功创建阻止文件"
}
catch {
Write-Host "$RED[错误]$NC 创建阻止文件失败"
Show-ManualGuide
return
}
# 设置文件权限
try {
# 设置只读属性
Set-ItemProperty -Path $updaterPath -Name IsReadOnly -Value $true -ErrorAction Stop
# 使用 icacls 设置权限
$result = Start-Process "icacls.exe" -ArgumentList "`"$updaterPath`" /inheritance:r /grant:r `"$($env:USERNAME):(R)`"" -Wait -NoNewWindow -PassThru
if ($result.ExitCode -ne 0) {
throw "icacls 命令失败"
}
Write-Host "$GREEN[信息]$NC 成功设置文件权限"
}
catch {
Write-Host "$RED[错误]$NC 设置文件权限失败"
Show-ManualGuide
return
}
# 验证设置
try {
$fileInfo = Get-ItemProperty $updaterPath
if (-not $fileInfo.IsReadOnly) {
Write-Host "$RED[错误]$NC 验证失败:文件权限设置可能未生效"
Show-ManualGuide
return
}
}
catch {
Write-Host "$RED[错误]$NC 验证设置失败"
Show-ManualGuide
return
}
Write-Host "$GREEN[信息]$NC 成功禁用自动更新"
}
catch {
Write-Host "$RED[错误]$NC 发生未知错误: $_"
Show-ManualGuide
}
}
else {
Write-Host "$GREEN[信息]$NC 保持默认设置,不进行更改"
}
# 保留有效的注册表更新
Update-MachineGuid
} catch {
Write-Host "$RED[错误]$NC 主要操作失败: $_"
Write-Host "$YELLOW[尝试]$NC 使用备选方法..."
try {
# 备选方法:使用 Add-Content
$tempFile = [System.IO.Path]::GetTempFileName()
$config | ConvertTo-Json | Set-Content -Path $tempFile -Encoding UTF8
Copy-Item -Path $tempFile -Destination $STORAGE_FILE -Force
Remove-Item -Path $tempFile
Write-Host "$GREEN[信息]$NC 使用备选方法成功写入配置"
} catch {
Write-Host "$RED[错误]$NC 所有尝试都失败了"
Write-Host "错误详情: $_"
Write-Host "目标文件: $STORAGE_FILE"
Write-Host "请确保您有足够的权限访问该文件"
Read-Host "按回车键退出"
exit 1
}
}
Write-Host ""
Read-Host "按回车键退出"
exit 0
# 在文件写入部分修改
function Write-ConfigFile {
param($config, $filePath)
try {
# 使用 UTF8 无 BOM 编码
$utf8NoBom = New-Object System.Text.UTF8Encoding $false
$jsonContent = $config | ConvertTo-Json -Depth 10
# 统一使用 LF 换行符
$jsonContent = $jsonContent.Replace("`r`n", "`n")
[System.IO.File]::WriteAllText(
[System.IO.Path]::GetFullPath($filePath),
$jsonContent,
$utf8NoBom
)
Write-Host "$GREEN[信息]$NC 成功写入配置文件(UTF8 无 BOM)"
}
catch {
throw "写入配置文件失败: $_"
}
}