diff --git a/.env b/.env index 54082be..95a7d79 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ -version=1.7.16 -VERSION=1.7.16 +version=1.7.17 +VERSION=1.7.17 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02b0b3d..fd90d39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ on: version: description: 'Version number (e.g. 1.0.9)' required: true - default: '1.7.16' + default: '1.7.17' permissions: contents: write diff --git a/CHANGELOG.md b/CHANGELOG.md index e75dcc6..4355127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log -## v1.7.16 (Pre-Release) +## v1.7.17 +1. Fix: Remove 10 options Totally Reset Cursor | 修復完全重置 Cursor 選項 + +## v1.7.16 1. Add bulgarian language | 增加保加利亚语 2. Fix: Some Issues | 修復一些問題 3. Add: Contributors | 增加貢獻者 diff --git a/locales/en.json b/locales/en.json index 47beef2..de6b1a2 100644 --- a/locales/en.json +++ b/locales/en.json @@ -21,7 +21,8 @@ "temp_github_register": "Temporary GitHub Register", "admin_required": "Running as executable, administrator privileges required.", "admin_required_continue": "Continuing without administrator privileges.", - "coming_soon": "Coming Soon" + "coming_soon": "Coming Soon", + "fixed_soon": "Fixed Soon" }, "languages": { "en": "English", diff --git a/locales/zh_cn.json b/locales/zh_cn.json index f601d4f..32a1fd1 100644 --- a/locales/zh_cn.json +++ b/locales/zh_cn.json @@ -21,7 +21,8 @@ "temp_github_register": "临时GitHub注册", "admin_required": "运行可执行文件,需要管理员权限", "admin_required_continue": "继续使用当前版本...", - "coming_soon": "即将推出" + "coming_soon": "即将推出", + "fixed_soon": "即将修复" }, "languages": { "en": "英语", diff --git a/locales/zh_tw.json b/locales/zh_tw.json index 879c2c4..e904c19 100644 --- a/locales/zh_tw.json +++ b/locales/zh_tw.json @@ -19,7 +19,8 @@ "temp_github_register": "臨時GitHub註冊", "admin_required": "運行可執行文件,需要管理員權限", "admin_required_continue": "繼續使用當前版本...", - "coming_soon": "即將推出" + "coming_soon": "即將推出", + "fixed_soon": "即將修復" }, "languages": { "en": "英文", diff --git a/main.py b/main.py index 1f1f5c9..9cee1f3 100644 --- a/main.py +++ b/main.py @@ -498,7 +498,8 @@ def main(): print_menu() elif choice == "10": import totally_reset_cursor - totally_reset_cursor.main(translator) + # totally_reset_cursor.main(translator) + print(f"{Fore.YELLOW}{EMOJI['INFO']} {translator.get('menu.fixed_soon')}{Style.RESET_ALL}") print_menu() else: print(f"{Fore.RED}{EMOJI['ERROR']} {translator.get('menu.invalid_choice')}{Style.RESET_ALL}")