forked from mirrors/cursor-free-vip
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb3e532058 | ||
|
|
a7c4631ea4 |
21
CHANGELOG.md
21
CHANGELOG.md
@@ -1,11 +1,22 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v1.9.03
|
||||||
|
1. Hotfix: Some Issues | 修復一些問題
|
||||||
|
2. Add: Bypass Cursor JWT EXP Problem | 添加繞過 Cursor JWT EXP 問題
|
||||||
|
3. Fix: Cursor editor redirects to logout page and logout automatically | 修復 Cursor 編輯器重定向到登出頁面並自動登出
|
||||||
|
4. Fix: Some Issues | 修復一些問題
|
||||||
|
|
||||||
## v1.9.02
|
## v1.9.02
|
||||||
1. Add: Bypass Cursor JWT EXP Problem | 添加繞過 Cursor JWT EXP 問題
|
1. Add: Bypass Token Limit | 添加繞過 Token 限制
|
||||||
2. Fix: Cursor editor redirects to logout page and logout automatically | 修復 Cursor 編輯器重定向到登出頁面並自動登出
|
2. Add: More Browser Support | 添加更多瀏覽器支持
|
||||||
3. Fix: Config File Path | 修復配置文件路徑
|
3. Add: Bypass Cursor JWT EXP Problem | 添加繞過 Cursor JWT EXP 問題
|
||||||
4. Fix: window user permission | 修復 window 用戶權限
|
4. Support: Add Opera, Brave, Edge, Firefox | 添加支持 Opera, Brave, Edge, Firefox
|
||||||
5. Fix: Some Issues | 修復一些問題
|
5. Add config manual browser path | 添加配置手動選擇遊覽器路徑
|
||||||
|
5. Fix: Browser Profile Selection | 修復瀏覽器配置文件選擇
|
||||||
|
6. Fix: Cursor editor redirects to logout page and logout automatically | 修復 Cursor 編輯器重定向到登出頁面並自動登出
|
||||||
|
7. Fix: Config File Path | 修復配置文件路徑
|
||||||
|
8. Fix: window user permission | 修復 window 用戶權限
|
||||||
|
9. Fix: Some Issues | 修復一些問題
|
||||||
|
|
||||||
## v1.9.01
|
## v1.9.01
|
||||||
1. Add: Bypass Token Limit | 添加繞過 Token 限制
|
1. Add: Bypass Token Limit | 添加繞過 Token 限制
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import time
|
|||||||
import random
|
import random
|
||||||
from cursor_auth import CursorAuth
|
from cursor_auth import CursorAuth
|
||||||
from reset_machine_manual import MachineIDResetter
|
from reset_machine_manual import MachineIDResetter
|
||||||
|
from get_user_token import get_token_from_cookie
|
||||||
|
|
||||||
os.environ["PYTHONVERBOSE"] = "0"
|
os.environ["PYTHONVERBOSE"] = "0"
|
||||||
os.environ["PYINSTALLER_VERBOSE"] = "0"
|
os.environ["PYINSTALLER_VERBOSE"] = "0"
|
||||||
@@ -168,7 +169,7 @@ class CursorRegistration:
|
|||||||
cookies = self.signup_tab.cookies()
|
cookies = self.signup_tab.cookies()
|
||||||
for cookie in cookies:
|
for cookie in cookies:
|
||||||
if cookie.get("name") == "WorkosCursorSessionToken":
|
if cookie.get("name") == "WorkosCursorSessionToken":
|
||||||
token = cookie["value"].split("%3A%3A")[1]
|
token = get_token_from_cookie(cookie["value"], self.translator)
|
||||||
print(f"{Fore.GREEN}{EMOJI['SUCCESS']} {self.translator.get('register.token_success')}{Style.RESET_ALL}")
|
print(f"{Fore.GREEN}{EMOJI['SUCCESS']} {self.translator.get('register.token_success')}{Style.RESET_ALL}")
|
||||||
self._save_account_info(token, total_usage)
|
self._save_account_info(token, total_usage)
|
||||||
return True
|
return True
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import time
|
|||||||
import random
|
import random
|
||||||
from cursor_auth import CursorAuth
|
from cursor_auth import CursorAuth
|
||||||
from reset_machine_manual import MachineIDResetter
|
from reset_machine_manual import MachineIDResetter
|
||||||
|
from get_user_token import get_token_from_cookie
|
||||||
|
|
||||||
os.environ["PYTHONVERBOSE"] = "0"
|
os.environ["PYTHONVERBOSE"] = "0"
|
||||||
os.environ["PYINSTALLER_VERBOSE"] = "0"
|
os.environ["PYINSTALLER_VERBOSE"] = "0"
|
||||||
@@ -175,7 +176,7 @@ class CursorRegistration:
|
|||||||
cookies = self.signup_tab.cookies()
|
cookies = self.signup_tab.cookies()
|
||||||
for cookie in cookies:
|
for cookie in cookies:
|
||||||
if cookie.get("name") == "WorkosCursorSessionToken":
|
if cookie.get("name") == "WorkosCursorSessionToken":
|
||||||
token = cookie["value"].split("%3A%3A")[1]
|
token = get_token_from_cookie(cookie["value"], self.translator)
|
||||||
print(f"{Fore.GREEN}{EMOJI['SUCCESS']} {self.translator.get('register.token_success')}{Style.RESET_ALL}")
|
print(f"{Fore.GREEN}{EMOJI['SUCCESS']} {self.translator.get('register.token_success')}{Style.RESET_ALL}")
|
||||||
self._save_account_info(token, total_usage)
|
self._save_account_info(token, total_usage)
|
||||||
return True
|
return True
|
||||||
|
|||||||
Reference in New Issue
Block a user