├── .github └── workflows │ ├── format.yml │ ├── lua-busted.yml │ └── publish.yml ├── .gitmodules ├── .stylua.toml ├── .yamllint.yml ├── LICENSE ├── Makefile ├── README.md ├── _meta.lua ├── docs ├── intro.md └── screenshots │ ├── get-comic-meta.png │ └── more-tools.png ├── main.lua ├── renovate.json └── test ├── comicmeta_spec.lua └── mocks.lua /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lua-busted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/.github/workflows/lua-busted.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/.stylua.toml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/README.md -------------------------------------------------------------------------------- /_meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/_meta.lua -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/screenshots/get-comic-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/docs/screenshots/get-comic-meta.png -------------------------------------------------------------------------------- /docs/screenshots/more-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/docs/screenshots/more-tools.png -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/main.lua -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/renovate.json -------------------------------------------------------------------------------- /test/comicmeta_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/test/comicmeta_spec.lua -------------------------------------------------------------------------------- /test/mocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KORComic/comicmeta.koplugin/HEAD/test/mocks.lua --------------------------------------------------------------------------------