├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── publish.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── auto-imports.d.ts ├── components.d.ts ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── tauri.svg └── vite.svg ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── commands │ │ ├── generate_background.rs │ │ ├── get_background_dir_abs_path.rs │ │ ├── get_background_dir_relative_path.rs │ │ ├── get_config.rs │ │ ├── get_image_infos.rs │ │ ├── get_manga_dir_data.rs │ │ ├── mod.rs │ │ ├── open_image.rs │ │ ├── remove_watermark.rs │ │ ├── save_config.rs │ │ └── show_path_in_file_manager.rs │ ├── config.rs │ ├── errors.rs │ ├── events.rs │ ├── extensions.rs │ ├── main.rs │ ├── types.rs │ └── utils.rs └── tauri.conf.json ├── src ├── App.vue ├── AppContent.vue ├── assets │ └── vue.svg ├── bindings.ts ├── components │ ├── AboutDialog.vue │ ├── MangaDirIndicator.vue │ ├── RemoveProgress.vue │ └── WatermarkCropper.vue ├── main.ts ├── utils.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── uno.config.ts └── vite.config.ts /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/components.d.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/public/tauri.svg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/commands/generate_background.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/generate_background.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/get_background_dir_abs_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/get_background_dir_abs_path.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/get_background_dir_relative_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/get_background_dir_relative_path.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/get_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/get_config.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/get_image_infos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/get_image_infos.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/get_manga_dir_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/get_manga_dir_data.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/open_image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/open_image.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/remove_watermark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/remove_watermark.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/save_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/save_config.rs -------------------------------------------------------------------------------- /src-tauri/src/commands/show_path_in_file_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/commands/show_path_in_file_manager.rs -------------------------------------------------------------------------------- /src-tauri/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/config.rs -------------------------------------------------------------------------------- /src-tauri/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/errors.rs -------------------------------------------------------------------------------- /src-tauri/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/events.rs -------------------------------------------------------------------------------- /src-tauri/src/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/extensions.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/types.rs -------------------------------------------------------------------------------- /src-tauri/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/src/utils.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/AppContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/AppContent.vue -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/bindings.ts -------------------------------------------------------------------------------- /src/components/AboutDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/components/AboutDialog.vue -------------------------------------------------------------------------------- /src/components/MangaDirIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/components/MangaDirIndicator.vue -------------------------------------------------------------------------------- /src/components/RemoveProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/components/RemoveProgress.vue -------------------------------------------------------------------------------- /src/components/WatermarkCropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/components/WatermarkCropper.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/uno.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanyeeee/bilibili-manga-watermark-remover/HEAD/vite.config.ts --------------------------------------------------------------------------------