├── .github └── ISSUE_TEMPLATE │ ├── 异常报告.md │ ├── 提交建议.md │ ├── 提交版本.md │ └── 版本更新请求.md ├── .gitignore ├── 404.md ├── LICENSE ├── README.md ├── README_VN.md ├── README_en-us.md ├── Sample.md ├── _config.yml ├── _includes └── head-custom-google-analytics.html ├── api ├── glados ├── v1 │ └── status.json └── v2 │ ├── docs.md │ ├── history │ ├── 1.yml │ ├── 2.yml │ ├── 3.yml │ └── index.yml │ └── status.yml ├── doc ├── install-apk-obb.md ├── special.md ├── unzip-parsed-file.md └── why-donate.md ├── icon.png ├── tools └── version_json_tool.html └── ver_data ├── VersionList_1.x.md ├── VersionList_2.x.md └── VersionList_3.x.md /.github/ISSUE_TEMPLATE/异常报告.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/.github/ISSUE_TEMPLATE/异常报告.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/提交建议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/.github/ISSUE_TEMPLATE/提交建议.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/提交版本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/.github/ISSUE_TEMPLATE/提交版本.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/版本更新请求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/.github/ISSUE_TEMPLATE/版本更新请求.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/.gitignore -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/404.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/README.md -------------------------------------------------------------------------------- /README_VN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/README_VN.md -------------------------------------------------------------------------------- /README_en-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/README_en-us.md -------------------------------------------------------------------------------- /Sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/Sample.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/head-custom-google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/_includes/head-custom-google-analytics.html -------------------------------------------------------------------------------- /api/glados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/api/glados -------------------------------------------------------------------------------- /api/v1/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/api/v1/status.json -------------------------------------------------------------------------------- /api/v2/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/api/v2/docs.md -------------------------------------------------------------------------------- /api/v2/history/1.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v2/history/2.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v2/history/3.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v2/history/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/api/v2/history/index.yml -------------------------------------------------------------------------------- /api/v2/status.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/api/v2/status.yml -------------------------------------------------------------------------------- /doc/install-apk-obb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/doc/install-apk-obb.md -------------------------------------------------------------------------------- /doc/special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/doc/special.md -------------------------------------------------------------------------------- /doc/unzip-parsed-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/doc/unzip-parsed-file.md -------------------------------------------------------------------------------- /doc/why-donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/doc/why-donate.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/icon.png -------------------------------------------------------------------------------- /tools/version_json_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/tools/version_json_tool.html -------------------------------------------------------------------------------- /ver_data/VersionList_1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/ver_data/VersionList_1.x.md -------------------------------------------------------------------------------- /ver_data/VersionList_2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/ver_data/VersionList_2.x.md -------------------------------------------------------------------------------- /ver_data/VersionList_3.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveZMTstudios/Phigros-history/HEAD/ver_data/VersionList_3.x.md --------------------------------------------------------------------------------