├── .env ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── docs └── screenshot.png ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public └── icon │ ├── bh3.png │ ├── github.png │ ├── hk4e.png │ ├── hkrpg.png │ └── nap.png ├── src ├── App.vue ├── assets │ ├── custom.css │ ├── favicon.png │ └── tailwind.css ├── auto-imports.d.ts ├── components.d.ts ├── components │ ├── ChunkInfo.vue │ ├── CopyAbleText.vue │ ├── FileBrowser.vue │ ├── GamePackageTable.vue │ └── StatusTag.vue ├── constants │ └── index.ts ├── main.ts ├── types │ └── index.ts ├── utils │ └── index.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env: -------------------------------------------------------------------------------- 1 | VITE_API_BASE="https://autopatch.hk4e.com/pkg_version" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/icon/bh3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/public/icon/bh3.png -------------------------------------------------------------------------------- /public/icon/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/public/icon/github.png -------------------------------------------------------------------------------- /public/icon/hk4e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/public/icon/hk4e.png -------------------------------------------------------------------------------- /public/icon/hkrpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/public/icon/hkrpg.png -------------------------------------------------------------------------------- /public/icon/nap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/public/icon/nap.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/assets/custom.css -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/assets/tailwind.css -------------------------------------------------------------------------------- /src/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/auto-imports.d.ts -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/ChunkInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/components/ChunkInfo.vue -------------------------------------------------------------------------------- /src/components/CopyAbleText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/components/CopyAbleText.vue -------------------------------------------------------------------------------- /src/components/FileBrowser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/components/FileBrowser.vue -------------------------------------------------------------------------------- /src/components/GamePackageTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/components/GamePackageTable.vue -------------------------------------------------------------------------------- /src/components/StatusTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/components/StatusTag.vue -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orilights/hoyo-files/HEAD/vite.config.ts --------------------------------------------------------------------------------