├── .github
├── ISSUE_TEMPLATE
│ ├── config.yml
│ ├── feature_request.yml
│ └── bug_report.yml
└── workflows
│ ├── close-default-title-issue.yml
│ └── publish.yml
├── src
├── vite-env.d.ts
├── types.ts
├── styles
│ ├── UncompletedProgresses.module.css
│ ├── ChapterPane.module.css
│ └── global.css
├── main.tsx
├── App.tsx
├── components
│ ├── CompletedProgresses.tsx
│ ├── LoginDialog.tsx
│ ├── ComicCard.tsx
│ ├── AboutDialog.tsx
│ ├── DownloadedComicCard.tsx
│ ├── SettingsDialog.tsx
│ ├── LogViewer.tsx
│ └── UncompletedProgresses.tsx
├── panes
│ ├── FavoritePane.tsx
│ ├── SearchPane.tsx
│ ├── DownloadingPane.tsx
│ ├── DownloadedPane.tsx
│ └── ChapterPane.tsx
├── assets
│ └── react.svg
├── AppContent.tsx
└── bindings.ts
├── src-tauri
├── build.rs
├── icons
│ ├── icon.ico
│ ├── icon.png
│ ├── 32x32.png
│ ├── icon.icns
│ ├── 128x128.png
│ ├── StoreLogo.png
│ ├── 128x128@2x.png
│ ├── Square30x30Logo.png
│ ├── Square44x44Logo.png
│ ├── Square71x71Logo.png
│ ├── Square89x89Logo.png
│ ├── Square107x107Logo.png
│ ├── Square142x142Logo.png
│ ├── Square150x150Logo.png
│ ├── Square284x284Logo.png
│ └── Square310x310Logo.png
├── .gitignore
├── src
│ ├── main.rs
│ ├── types
│ │ ├── mod.rs
│ │ ├── log_level.rs
│ │ ├── user_profile.rs
│ │ ├── comic_info.rs
│ │ ├── get_favorite_result.rs
│ │ ├── search_result.rs
│ │ └── comic.rs
│ ├── utils.rs
│ ├── errors.rs
│ ├── extensions.rs
│ ├── events.rs
│ ├── config.rs
│ ├── lib.rs
│ ├── decrypt.rs
│ ├── logger.rs
│ ├── manhuagui_client.rs
│ └── commands.rs
├── capabilities
│ └── default.json
├── tauri.conf.json
└── Cargo.toml
├── .vscode
└── extensions.json
├── .prettierrc
├── tsconfig.node.json
├── .gitignore
├── index.html
├── eslint.config.js
├── uno.config.ts
├── tsconfig.json
├── vite.config.ts
├── package.json
├── LICENSE
├── public
├── vite.svg
└── tauri.svg
└── README.md
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: false
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 |