├── .gitignore ├── README.md ├── docs ├── LICENSE ├── css │ └── app.89d87bbb.css ├── index.html ├── js │ ├── app.9625f66b.js │ └── chunk-vendors.1b644a10.js ├── lib │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ └── bootstrap.min.js │ ├── jquery.min.js │ ├── popper.min.js │ ├── split.min.js │ └── zip.min.js ├── log.js ├── main.css ├── shared.js └── utils.js ├── package.json ├── public ├── LICENSE ├── index.html ├── lib │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ └── bootstrap.min.js │ ├── jquery.min.js │ ├── popper.min.js │ ├── split.min.js │ └── zip.min.js ├── log.js ├── main.css ├── shared.js └── utils.js ├── src ├── App.vue ├── RectGroup.js ├── components │ ├── ContentEditor.css │ ├── ContentEditor.vue │ ├── ContentEditor │ │ ├── PageEditorMenu.vue │ │ ├── SVGEditableRect.vue │ │ ├── SVGEditableRectGroup.vue │ │ ├── SVGEditableRectGroupMenu.vue │ │ ├── SVGEditableRectMenu.vue │ │ └── SVGLinkEditor.vue │ ├── LogMessage.vue │ ├── LogMessageVar.vue │ ├── MetadataEditor.vue │ ├── MetadataInputs │ │ ├── Creator.vue │ │ ├── Date.vue │ │ ├── Description.vue │ │ ├── General.vue │ │ ├── Publisher.vue │ │ └── Source.vue │ ├── Preview.vue │ └── Settings.vue ├── locale.js ├── main.js └── save-epub.js └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/README.md -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/css/app.89d87bbb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/css/app.89d87bbb.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.9625f66b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/js/app.9625f66b.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.1b644a10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/js/chunk-vendors.1b644a10.js -------------------------------------------------------------------------------- /docs/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/lib/jquery.min.js -------------------------------------------------------------------------------- /docs/lib/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/lib/popper.min.js -------------------------------------------------------------------------------- /docs/lib/split.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/lib/split.min.js -------------------------------------------------------------------------------- /docs/lib/zip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/lib/zip.min.js -------------------------------------------------------------------------------- /docs/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/log.js -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/main.css -------------------------------------------------------------------------------- /docs/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/shared.js -------------------------------------------------------------------------------- /docs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/docs/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/package.json -------------------------------------------------------------------------------- /public/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/LICENSE -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/index.html -------------------------------------------------------------------------------- /public/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/lib/jquery.min.js -------------------------------------------------------------------------------- /public/lib/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/lib/popper.min.js -------------------------------------------------------------------------------- /public/lib/split.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/lib/split.min.js -------------------------------------------------------------------------------- /public/lib/zip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/lib/zip.min.js -------------------------------------------------------------------------------- /public/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/log.js -------------------------------------------------------------------------------- /public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/main.css -------------------------------------------------------------------------------- /public/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/shared.js -------------------------------------------------------------------------------- /public/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/public/utils.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/RectGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/RectGroup.js -------------------------------------------------------------------------------- /src/components/ContentEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor.css -------------------------------------------------------------------------------- /src/components/ContentEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor.vue -------------------------------------------------------------------------------- /src/components/ContentEditor/PageEditorMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor/PageEditorMenu.vue -------------------------------------------------------------------------------- /src/components/ContentEditor/SVGEditableRect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor/SVGEditableRect.vue -------------------------------------------------------------------------------- /src/components/ContentEditor/SVGEditableRectGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor/SVGEditableRectGroup.vue -------------------------------------------------------------------------------- /src/components/ContentEditor/SVGEditableRectGroupMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor/SVGEditableRectGroupMenu.vue -------------------------------------------------------------------------------- /src/components/ContentEditor/SVGEditableRectMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor/SVGEditableRectMenu.vue -------------------------------------------------------------------------------- /src/components/ContentEditor/SVGLinkEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/ContentEditor/SVGLinkEditor.vue -------------------------------------------------------------------------------- /src/components/LogMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/LogMessage.vue -------------------------------------------------------------------------------- /src/components/LogMessageVar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/LogMessageVar.vue -------------------------------------------------------------------------------- /src/components/MetadataEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataEditor.vue -------------------------------------------------------------------------------- /src/components/MetadataInputs/Creator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataInputs/Creator.vue -------------------------------------------------------------------------------- /src/components/MetadataInputs/Date.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataInputs/Date.vue -------------------------------------------------------------------------------- /src/components/MetadataInputs/Description.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataInputs/Description.vue -------------------------------------------------------------------------------- /src/components/MetadataInputs/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataInputs/General.vue -------------------------------------------------------------------------------- /src/components/MetadataInputs/Publisher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataInputs/Publisher.vue -------------------------------------------------------------------------------- /src/components/MetadataInputs/Source.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/MetadataInputs/Source.vue -------------------------------------------------------------------------------- /src/components/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/Preview.vue -------------------------------------------------------------------------------- /src/components/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/components/Settings.vue -------------------------------------------------------------------------------- /src/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/locale.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/main.js -------------------------------------------------------------------------------- /src/save-epub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeroblast/MangaRepack/HEAD/src/save-epub.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | publicPath: '' 3 | }; --------------------------------------------------------------------------------