mirror of
https://github.com/yeongpin/cursor-free-vip.git
synced 2025-08-03 13:07:35 +08:00
Merge pull request #597 from canmi21/main
update(readme): add linux & add: aur
This commit is contained in:
commit
92263013f2
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
pkgbase = cursor-free-vip-git
|
||||||
|
pkgdesc = Reset Cursor AI MachineID & Auto Sign Up / In & Bypass Higher Token Limit
|
||||||
|
pkgver = 1.9.03.2.g43a58db
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/yeongpin/cursor-free-vip
|
||||||
|
arch = x86_64
|
||||||
|
license = MIT
|
||||||
|
makedepends = git
|
||||||
|
makedepends = python
|
||||||
|
makedepends = pyinstaller
|
||||||
|
makedepends = uv
|
||||||
|
depends = python
|
||||||
|
depends = cursor-bin
|
||||||
|
provides = cursor-free-vip
|
||||||
|
source = cursor-free-vip::git+https://github.com/yeongpin/cursor-free-vip.git
|
||||||
|
sha256sums = SKIP
|
||||||
|
|
||||||
|
pkgname = cursor-free-vip-git
|
32
PKGBUILD
Normal file
32
PKGBUILD
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Maintainer: Canmi21 <9997200@qq.com>
|
||||||
|
# Contributor: Canmi (Canmi21)
|
||||||
|
|
||||||
|
pkgname=cursor-free-vip-git
|
||||||
|
pkgver=1.9.03.2.g43a58db
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Reset Cursor AI MachineID & Auto Sign Up / In & Bypass Higher Token Limit"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://github.com/yeongpin/cursor-free-vip"
|
||||||
|
license=('MIT')
|
||||||
|
depends=('python' 'cursor-bin')
|
||||||
|
makedepends=('git' 'python' 'pyinstaller' 'uv')
|
||||||
|
provides=('cursor-free-vip')
|
||||||
|
source=("cursor-free-vip::git+https://github.com/yeongpin/cursor-free-vip.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "$srcdir/cursor-free-vip"
|
||||||
|
git describe --tags --always | sed 's/^v//;s/-/./g'
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$srcdir/cursor-free-vip"
|
||||||
|
uv venv .venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
uv pip install -r requirements.txt
|
||||||
|
pyinstaller --clean --noconfirm --onefile main.py --name cursor-free-vip
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
install -Dm755 "$srcdir/cursor-free-vip/dist/cursor-free-vip" "$pkgdir/usr/bin/cursor-free-vip"
|
||||||
|
}
|
18
README.md
18
README.md
@ -59,7 +59,7 @@ Always clean your browser's cache and cookies. If possible, use a VPN to create
|
|||||||
|
|
||||||
* Automatically register Cursor membership<br>自動註冊 Cursor 會員<br>
|
* Automatically register Cursor membership<br>自動註冊 Cursor 會員<br>
|
||||||
|
|
||||||
* Support Windows and macOS systems<br>支持 Windows 和 macOS 系統<br>
|
* Support Windows macOS and Linux systems<br>支持 Windows、macOS 和 Linux 系統<br>
|
||||||
|
|
||||||
* Complete Auth verification<br>完成 Auth 驗證<br>
|
* Complete Auth verification<br>完成 Auth 驗證<br>
|
||||||
|
|
||||||
@ -82,13 +82,21 @@ Always clean your browser's cache and cookies. If possible, use a VPN to create
|
|||||||
<details open>
|
<details open>
|
||||||
<summary><b>⭐ Auto Run Script | 腳本自動化運行</b></summary>
|
<summary><b>⭐ Auto Run Script | 腳本自動化運行</b></summary>
|
||||||
|
|
||||||
**Linux/macOS**
|
### **Linux/macOS**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -fsSL https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/install.sh -o install.sh && chmod +x install.sh && ./install.sh
|
curl -fsSL https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/install.sh -o install.sh && chmod +x install.sh && ./install.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
**Windows**
|
### **Archlinux**
|
||||||
|
|
||||||
|
Install via [AUR](https://aur.archlinux.org/packages/cursor-free-vip-git)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yay -S cursor-free-vip-git
|
||||||
|
```
|
||||||
|
|
||||||
|
### **Windows**
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
irm https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/install.ps1 | iex
|
irm https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/install.ps1 | iex
|
||||||
@ -99,13 +107,13 @@ irm https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/inst
|
|||||||
<details>
|
<details>
|
||||||
<summary><b>⭐ Manual Reset Machine | 手動運行重置機器</b></summary>
|
<summary><b>⭐ Manual Reset Machine | 手動運行重置機器</b></summary>
|
||||||
|
|
||||||
**Linux/macOS**
|
### **Linux/macOS**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -fsSL https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/reset.sh | sudo bash
|
curl -fsSL https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/reset.sh | sudo bash
|
||||||
```
|
```
|
||||||
|
|
||||||
**Windows**
|
### **Windows**
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
irm https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/reset.ps1 | iex
|
irm https://raw.githubusercontent.com/yeongpin/cursor-free-vip/main/scripts/reset.ps1 | iex
|
||||||
|
Loading…
x
Reference in New Issue
Block a user