From 87bfa3bdeaecb33394caf415955d13757defd8cd Mon Sep 17 00:00:00 2001 From: cyfung1031 <44498510+cyfung1031@users.noreply.github.com> Date: Sat, 19 Sep 2026 12:08:50 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20issue=20template=20?= =?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/01_bug_report.yaml | 6 +++++- .github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml | 6 +++++- .github/ISSUE_TEMPLATE/03_feature_request.yaml | 6 +++++- .github/ISSUE_TEMPLATE/11_bug_report_en.yaml | 6 +++++- .github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml | 6 +++++- .github/ISSUE_TEMPLATE/13_feature_request_en.yaml | 4 ++++ 6 files changed, 29 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yaml b/.github/ISSUE_TEMPLATE/01_bug_report.yaml index da9906df7..f2c52a583 100644 --- a/.github/ISSUE_TEMPLATE/01_bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yaml @@ -17,7 +17,11 @@ body: attributes: label: 提交前检查 options: - - label: 我已经搜索过现有 issues,并尽量用最新 stable 或 beta 版本确认问题仍然存在 + - label: 我已经搜索过现有 issues,并确认这不是重复问题。 + required: true + - label: 在条件允许的情况下,我已经使用最新的 stable 或 beta 版本确认该问题仍然存在。 + required: true + - label: 我已经确认这是 ScriptCat 本身的问题,而不是在 Tampermonkey 或 Violentmonkey 中可以正常运行的用户脚本兼容性问题。 required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml b/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml index 14d7387dd..8650cab31 100644 --- a/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml +++ b/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml @@ -17,7 +17,11 @@ body: attributes: label: 提交前检查 options: - - label: 我已经搜索过现有 issues,并确认问题与某个用户脚本或 userscript API 有关 + - label: 我已经搜索过现有 issues,并确认这不是重复问题。 + required: true + - label: 在条件允许的情况下,我已经使用最新的 stable 或 beta 版本确认该问题仍然存在。 + required: true + - label: 我已经确认该问题与用户脚本或 userscript API 有关,而不是 ScriptCat 的通用界面、同步、安装或扩展行为问题。 required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/03_feature_request.yaml b/.github/ISSUE_TEMPLATE/03_feature_request.yaml index d1e1795ca..00682edb5 100644 --- a/.github/ISSUE_TEMPLATE/03_feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/03_feature_request.yaml @@ -17,7 +17,11 @@ body: attributes: label: 提交前检查 options: - - label: 我已经搜索过现有 issues,确认不是重复的功能请求 + - label: 我已经搜索过现有 issues,并确认这不是重复的功能请求。 + required: true + - label: 在条件允许的情况下,我已经使用最新的 stable 或 beta 版本确认该功能仍未提供。 + required: true + - label: 我已经确认这是新增或改进功能的请求,而不是现有功能的 bug 反馈。 required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml b/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml index 6b76a2346..46d58c22c 100644 --- a/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml +++ b/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml @@ -17,7 +17,11 @@ body: attributes: label: Pre-check options: - - label: I have searched existing issues, and confirmed the problem still happens on the latest stable or beta version where possible. + - label: I have searched existing issues and confirmed this is not a duplicate. + required: true + - label: I have confirmed, where possible, that the problem still occurs in the latest stable or beta version. + required: true + - label: I have confirmed this is an issue with ScriptCat itself, rather than a userscript compatibility issue in which the script works correctly in Tampermonkey or Violentmonkey. required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml b/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml index 985e253dd..f5a56e243 100644 --- a/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml +++ b/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml @@ -17,7 +17,11 @@ body: attributes: label: Pre-check options: - - label: I have searched existing issues, and confirmed this is related to a userscript or userscript API. + - label: I have searched existing issues and confirmed this is not a duplicate. + required: true + - label: I have confirmed, where possible, that the problem still occurs in the latest stable or beta version. + required: true + - label: I have confirmed this issue is related to a userscript or userscript API, rather than ScriptCat's general UI, sync, installation, or extension behavior. required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml b/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml index 7673f3319..6417f0ffd 100644 --- a/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml +++ b/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml @@ -19,6 +19,10 @@ body: options: - label: I have searched existing issues and confirmed this is not a duplicate feature request. required: true + - label: I have confirmed, where possible, that this feature is still not available in the latest stable or beta version. + required: true + - label: I have confirmed this is a request for a new or improved feature, not a bug report about an existing feature. + required: true - type: textarea id: problem From 040b2f93e43739dbed329e9680796c5dcd403ec2 Mon Sep 17 00:00:00 2001 From: cyfung1031 <44498510+cyfung1031@users.noreply.github.com> Date: Sat, 19 Sep 2026 12:12:36 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E6=88=91=E5=B7=B2=E5=B0=BD=E9=87=8F?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E6=9C=80=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/01_bug_report.yaml | 2 +- .github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml | 2 +- .github/ISSUE_TEMPLATE/03_feature_request.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yaml b/.github/ISSUE_TEMPLATE/01_bug_report.yaml index f2c52a583..d9e1b7f5a 100644 --- a/.github/ISSUE_TEMPLATE/01_bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yaml @@ -19,7 +19,7 @@ body: options: - label: 我已经搜索过现有 issues,并确认这不是重复问题。 required: true - - label: 在条件允许的情况下,我已经使用最新的 stable 或 beta 版本确认该问题仍然存在。 + - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本确认该问题仍然存在。 required: true - label: 我已经确认这是 ScriptCat 本身的问题,而不是在 Tampermonkey 或 Violentmonkey 中可以正常运行的用户脚本兼容性问题。 required: true diff --git a/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml b/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml index 8650cab31..0b7212a46 100644 --- a/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml +++ b/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml @@ -19,7 +19,7 @@ body: options: - label: 我已经搜索过现有 issues,并确认这不是重复问题。 required: true - - label: 在条件允许的情况下,我已经使用最新的 stable 或 beta 版本确认该问题仍然存在。 + - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本确认该问题仍然存在。 required: true - label: 我已经确认该问题与用户脚本或 userscript API 有关,而不是 ScriptCat 的通用界面、同步、安装或扩展行为问题。 required: true diff --git a/.github/ISSUE_TEMPLATE/03_feature_request.yaml b/.github/ISSUE_TEMPLATE/03_feature_request.yaml index 00682edb5..3880051af 100644 --- a/.github/ISSUE_TEMPLATE/03_feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/03_feature_request.yaml @@ -19,7 +19,7 @@ body: options: - label: 我已经搜索过现有 issues,并确认这不是重复的功能请求。 required: true - - label: 在条件允许的情况下,我已经使用最新的 stable 或 beta 版本确认该功能仍未提供。 + - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本确认该功能仍未提供。 required: true - label: 我已经确认这是新增或改进功能的请求,而不是现有功能的 bug 反馈。 required: true From 99ed280759e99d9dc303c9b144811ac8d4052965 Mon Sep 17 00:00:00 2001 From: cyfung1031 <44498510+cyfung1031@users.noreply.github.com> Date: Sat, 19 Sep 2026 12:13:52 +0900 Subject: [PATCH 3/3] ` Where possible, I have tried to reproduce this issue using the latest stable or beta version and confirmed that it still occurs.` --- .github/ISSUE_TEMPLATE/01_bug_report.yaml | 6 +++--- .github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml | 6 +++--- .github/ISSUE_TEMPLATE/03_feature_request.yaml | 4 ++-- .github/ISSUE_TEMPLATE/11_bug_report_en.yaml | 6 +++--- .github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml | 6 +++--- .github/ISSUE_TEMPLATE/13_feature_request_en.yaml | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yaml b/.github/ISSUE_TEMPLATE/01_bug_report.yaml index d9e1b7f5a..13da71e80 100644 --- a/.github/ISSUE_TEMPLATE/01_bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yaml @@ -17,11 +17,11 @@ body: attributes: label: 提交前检查 options: - - label: 我已经搜索过现有 issues,并确认这不是重复问题。 + - label: 我已搜索过现有 issues,并确认这不是重复问题。 required: true - - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本确认该问题仍然存在。 + - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本复现该问题,并确认问题仍然存在。 required: true - - label: 我已经确认这是 ScriptCat 本身的问题,而不是在 Tampermonkey 或 Violentmonkey 中可以正常运行的用户脚本兼容性问题。 + - label: 我已确认这是 ScriptCat 本身的问题,而不是在 Tampermonkey 或 Violentmonkey 中可以正常运行的用户脚本兼容性问题。 required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml b/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml index 0b7212a46..6a0a4eddc 100644 --- a/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml +++ b/.github/ISSUE_TEMPLATE/02_userscript_compatibility.yaml @@ -17,11 +17,11 @@ body: attributes: label: 提交前检查 options: - - label: 我已经搜索过现有 issues,并确认这不是重复问题。 + - label: 我已搜索过现有 issues,并确认这不是重复问题。 required: true - - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本确认该问题仍然存在。 + - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本复现该问题,并确认问题仍然存在。 required: true - - label: 我已经确认该问题与用户脚本或 userscript API 有关,而不是 ScriptCat 的通用界面、同步、安装或扩展行为问题。 + - label: 我已确认该问题与用户脚本或 userscript API 有关,而不是 ScriptCat 的通用界面、同步、安装或扩展行为问题。 required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/03_feature_request.yaml b/.github/ISSUE_TEMPLATE/03_feature_request.yaml index 3880051af..658050a37 100644 --- a/.github/ISSUE_TEMPLATE/03_feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/03_feature_request.yaml @@ -17,11 +17,11 @@ body: attributes: label: 提交前检查 options: - - label: 我已经搜索过现有 issues,并确认这不是重复的功能请求。 + - label: 我已搜索过现有 issues,并确认这不是重复的功能请求。 required: true - label: 在条件允许的情况下,我已尽量使用最新的 stable 或 beta 版本确认该功能仍未提供。 required: true - - label: 我已经确认这是新增或改进功能的请求,而不是现有功能的 bug 反馈。 + - label: 我已确认这是新增或改进功能的请求,而不是现有功能的 bug 反馈。 required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml b/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml index 46d58c22c..236c86d5e 100644 --- a/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml +++ b/.github/ISSUE_TEMPLATE/11_bug_report_en.yaml @@ -17,11 +17,11 @@ body: attributes: label: Pre-check options: - - label: I have searched existing issues and confirmed this is not a duplicate. + - label: I have searched existing issues and confirmed that this is not a duplicate. required: true - - label: I have confirmed, where possible, that the problem still occurs in the latest stable or beta version. + - label: Where possible, I have tried to reproduce this issue using the latest stable or beta version and confirmed that it still occurs. required: true - - label: I have confirmed this is an issue with ScriptCat itself, rather than a userscript compatibility issue in which the script works correctly in Tampermonkey or Violentmonkey. + - label: I have confirmed that this is an issue with ScriptCat itself, rather than a userscript compatibility issue where the script works correctly in Tampermonkey or Violentmonkey. required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml b/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml index f5a56e243..0b243043a 100644 --- a/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml +++ b/.github/ISSUE_TEMPLATE/12_userscript_compatibility_en.yaml @@ -17,11 +17,11 @@ body: attributes: label: Pre-check options: - - label: I have searched existing issues and confirmed this is not a duplicate. + - label: I have searched existing issues and confirmed that this is not a duplicate. required: true - - label: I have confirmed, where possible, that the problem still occurs in the latest stable or beta version. + - label: Where possible, I have tried to reproduce this issue using the latest stable or beta version and confirmed that it still occurs. required: true - - label: I have confirmed this issue is related to a userscript or userscript API, rather than ScriptCat's general UI, sync, installation, or extension behavior. + - label: I have confirmed that this issue is related to a userscript or userscript API, rather than ScriptCat's general UI, sync, installation, or extension behavior. required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml b/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml index 6417f0ffd..86ac2bfd2 100644 --- a/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml +++ b/.github/ISSUE_TEMPLATE/13_feature_request_en.yaml @@ -17,11 +17,11 @@ body: attributes: label: Pre-check options: - - label: I have searched existing issues and confirmed this is not a duplicate feature request. + - label: I have searched existing issues and confirmed that this is not a duplicate feature request. required: true - - label: I have confirmed, where possible, that this feature is still not available in the latest stable or beta version. + - label: Where possible, I have checked the latest stable or beta version and confirmed that this feature is still unavailable. required: true - - label: I have confirmed this is a request for a new or improved feature, not a bug report about an existing feature. + - label: I have confirmed that this is a request for a new or improved feature, not a bug report about an existing feature. required: true - type: textarea