├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── cp_dispatch.yml │ ├── cp_latest_dispatch.yml │ └── cp_pull_upstream.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── README_CN.md ├── SECURITY.md └── utils ├── fe-version-scraper └── GetLatest-FEVersion.ps1 └── fe-version-validator └── Validate-FEVersion.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cp_dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/.github/workflows/cp_dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/cp_latest_dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/.github/workflows/cp_latest_dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/cp_pull_upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/.github/workflows/cp_pull_upstream.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/README_CN.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/SECURITY.md -------------------------------------------------------------------------------- /utils/fe-version-scraper/GetLatest-FEVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/utils/fe-version-scraper/GetLatest-FEVersion.ps1 -------------------------------------------------------------------------------- /utils/fe-version-validator/Validate-FEVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-yui-patch/fiddler-everywhere-patch-automated/HEAD/utils/fe-version-validator/Validate-FEVersion.ps1 --------------------------------------------------------------------------------