From 880d2ea378b9caf6f468a41a6978395adc7bbe2b Mon Sep 17 00:00:00 2001 From: cheng zhen Date: Tue, 4 Feb 2025 14:41:36 +0800 Subject: [PATCH] feat: Update machine ID reset logic with manual script guidance --- cursor_pro_keep_alive.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cursor_pro_keep_alive.py b/cursor_pro_keep_alive.py index ca184321..19d5ca73 100644 --- a/cursor_pro_keep_alive.py +++ b/cursor_pro_keep_alive.py @@ -398,7 +398,10 @@ def reset_machine_id(less_than_0_45): if less_than_0_45: MachineIDResetter().reset_machine_ids() else: - patch_cursor_get_machine_id.patch_cursor_get_machine_id() + # 提示请手动执行脚本 https://github.com/chengazhen/cursor-auto-free/blob/main/patch_cursor_get_machine_id.py + logging.info( + f"{Fore.RED}请手动执行脚本 https://github.com/chengazhen/cursor-auto-free/blob/main/patch_cursor_get_machine_id.py{Style.RESET_ALL}" + ) if __name__ == "__main__":