From 22adbe8f2c945bf1abd1d410d5eb4ac5d924b403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=85=8E=E9=A5=BC=E6=9E=9C=E5=AD=90=E5=8D=B7=E9=B2=A8?= =?UTF-8?q?=E9=B1=BC=E8=BE=A3=E6=A4=92?= Date: Tue, 6 Aug 2024 12:00:02 +0800 Subject: [PATCH] =?UTF-8?q?```=20docs(readme):=20=E6=B7=BB=E5=8A=A0Windows?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E7=BC=93=E5=AD=98=E6=B8=85=E9=99=A4=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加关于如何处理镜像/代理缓存问题的详细说明,包括在URL中追加时间戳参数的方法, 以便用户能够绕过缓存获取最新脚本。 feat(script): 更新广告信息添加Team账户选项 在各个平台的脚本中更新广告内容,新增Team绝版次数号选项,包含1000次+20刀额度的服务。 ``` --- README_JP.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README_JP.md b/README_JP.md index dd80270..40f9bd6 100644 --- a/README_JP.md +++ b/README_JP.md @@ -314,6 +314,18 @@ irm https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/ ``` > デュアルモード操作とトライアルリセット機能を備えた強化版Cursorマシンコード修正ツール +**キャッシュ回避(Windows):** ミラー/プロキシのキャッシュで古いスクリプトが取得される場合、URL 末尾にタイムスタンプのクエリを付けて回避できます(GitHub raw + タイムスタンプ推奨): + +```powershell +irm "https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1?$(Get-Date -Format yyyyMMddHHmmss)" | iex +``` + +`wget.la` などのミラーを使う場合も同様に、URL 末尾へタイムスタンプを追加できます: + +```powershell +irm "https://wget.la/https://raw.githubusercontent.com/yuaotian/go-cursor-help/refs/heads/master/scripts/run/cursor_win_id_modifier.ps1?$(Get-Date -Format yyyyMMddHHmmss)" | iex +``` +
Run Success