├── .eslintrc.cjs ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── .vscode └── extensions.json ├── README.md ├── auto-imports.d.ts ├── env.d.ts ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── icon.webp └── preview.webp ├── src ├── App.vue ├── assets │ ├── data │ │ └── log.ts │ ├── images │ │ ├── default.webp │ │ ├── 分组按钮.webp │ │ ├── 按钮.webp │ │ ├── 提示按钮.webp │ │ ├── 提示背景.webp │ │ ├── 毛笔按钮.webp │ │ ├── 游记.webp │ │ ├── 菜单按钮.webp │ │ ├── 设置.webp │ │ └── 设置按钮.webp │ ├── scripts │ │ ├── database.ts │ │ ├── event.ts │ │ ├── file.ts │ │ ├── hotkey.ts │ │ ├── popup.ts │ │ ├── portraits.ts │ │ └── update.ts │ └── styles │ │ └── function.styl ├── components │ ├── Common │ │ ├── Btn.vue │ │ ├── Icon.tsx │ │ ├── Keyboard.vue │ │ └── Window.vue │ ├── Index.vue │ ├── Index │ │ ├── Portraits.vue │ │ └── Setting.vue │ ├── Menu.vue │ ├── Popup │ │ ├── Confirm │ │ │ ├── Confirm.vue │ │ │ ├── data.ts │ │ │ └── index.ts │ │ ├── Cropper │ │ │ ├── Cropper.vue │ │ │ ├── data.ts │ │ │ └── index.ts │ │ ├── Data.vue │ │ ├── Input │ │ │ ├── Input.vue │ │ │ ├── data.ts │ │ │ └── index.ts │ │ ├── Loading.vue │ │ ├── Log.vue │ │ └── Select │ │ │ ├── Select.vue │ │ │ ├── data.ts │ │ │ └── index.ts │ ├── Shadow.vue │ └── Tip.vue ├── main.styl ├── main.ts ├── store │ ├── data.ts │ └── setting.ts └── types.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://afdian.com/a/blacktune'] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/env.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/public/icon.webp -------------------------------------------------------------------------------- /public/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/public/preview.webp -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/data/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/data/log.ts -------------------------------------------------------------------------------- /src/assets/images/default.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/default.webp -------------------------------------------------------------------------------- /src/assets/images/分组按钮.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/分组按钮.webp -------------------------------------------------------------------------------- /src/assets/images/按钮.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/按钮.webp -------------------------------------------------------------------------------- /src/assets/images/提示按钮.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/提示按钮.webp -------------------------------------------------------------------------------- /src/assets/images/提示背景.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/提示背景.webp -------------------------------------------------------------------------------- /src/assets/images/毛笔按钮.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/毛笔按钮.webp -------------------------------------------------------------------------------- /src/assets/images/游记.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/游记.webp -------------------------------------------------------------------------------- /src/assets/images/菜单按钮.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/菜单按钮.webp -------------------------------------------------------------------------------- /src/assets/images/设置.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/设置.webp -------------------------------------------------------------------------------- /src/assets/images/设置按钮.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/images/设置按钮.webp -------------------------------------------------------------------------------- /src/assets/scripts/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/database.ts -------------------------------------------------------------------------------- /src/assets/scripts/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/event.ts -------------------------------------------------------------------------------- /src/assets/scripts/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/file.ts -------------------------------------------------------------------------------- /src/assets/scripts/hotkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/hotkey.ts -------------------------------------------------------------------------------- /src/assets/scripts/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/popup.ts -------------------------------------------------------------------------------- /src/assets/scripts/portraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/portraits.ts -------------------------------------------------------------------------------- /src/assets/scripts/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/scripts/update.ts -------------------------------------------------------------------------------- /src/assets/styles/function.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/assets/styles/function.styl -------------------------------------------------------------------------------- /src/components/Common/Btn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Common/Btn.vue -------------------------------------------------------------------------------- /src/components/Common/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Common/Icon.tsx -------------------------------------------------------------------------------- /src/components/Common/Keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Common/Keyboard.vue -------------------------------------------------------------------------------- /src/components/Common/Window.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Common/Window.vue -------------------------------------------------------------------------------- /src/components/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Index.vue -------------------------------------------------------------------------------- /src/components/Index/Portraits.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Index/Portraits.vue -------------------------------------------------------------------------------- /src/components/Index/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Index/Setting.vue -------------------------------------------------------------------------------- /src/components/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Menu.vue -------------------------------------------------------------------------------- /src/components/Popup/Confirm/Confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Confirm/Confirm.vue -------------------------------------------------------------------------------- /src/components/Popup/Confirm/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Confirm/data.ts -------------------------------------------------------------------------------- /src/components/Popup/Confirm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Confirm/index.ts -------------------------------------------------------------------------------- /src/components/Popup/Cropper/Cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Cropper/Cropper.vue -------------------------------------------------------------------------------- /src/components/Popup/Cropper/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Cropper/data.ts -------------------------------------------------------------------------------- /src/components/Popup/Cropper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Cropper/index.ts -------------------------------------------------------------------------------- /src/components/Popup/Data.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Data.vue -------------------------------------------------------------------------------- /src/components/Popup/Input/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Input/Input.vue -------------------------------------------------------------------------------- /src/components/Popup/Input/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Input/data.ts -------------------------------------------------------------------------------- /src/components/Popup/Input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Input/index.ts -------------------------------------------------------------------------------- /src/components/Popup/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Loading.vue -------------------------------------------------------------------------------- /src/components/Popup/Log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Log.vue -------------------------------------------------------------------------------- /src/components/Popup/Select/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Select/Select.vue -------------------------------------------------------------------------------- /src/components/Popup/Select/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Select/data.ts -------------------------------------------------------------------------------- /src/components/Popup/Select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Popup/Select/index.ts -------------------------------------------------------------------------------- /src/components/Shadow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Shadow.vue -------------------------------------------------------------------------------- /src/components/Tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/components/Tip.vue -------------------------------------------------------------------------------- /src/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/main.styl -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/store/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/store/data.ts -------------------------------------------------------------------------------- /src/store/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/store/setting.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktunes/black-myth-wukong-portraits/HEAD/vite.config.ts --------------------------------------------------------------------------------