├── .gitignore ├── .gitmodules ├── .zed ├── settings.json └── tasks.json ├── CMakeLists.txt ├── EpubExtractor.install ├── FB2Extractor.install ├── Install.sh ├── KoreaderIntegration.install ├── Uninstall.sh ├── device.lua.patch ├── dist.sh ├── koreader_helper.sh ├── readme.md ├── rusty_indexer ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── scanner_ffi ├── Cargo.lock ├── Cargo.toml └── src │ └── lib.rs └── src ├── extractor ├── base64.c ├── base64.h ├── main.c ├── simple_epub_extractor.c ├── simple_epub_extractor.h ├── simple_fb2_extractor.c ├── simple_fb2_extractor.h ├── utils.c └── utils.h ├── koreader └── main.c └── stubs ├── libxml2 ├── libxml2.c └── libxml2.h ├── lipc └── lipc.c └── scanner ├── scanner.c └── scanner.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/.gitmodules -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /.zed/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/.zed/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /EpubExtractor.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/EpubExtractor.install -------------------------------------------------------------------------------- /FB2Extractor.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/FB2Extractor.install -------------------------------------------------------------------------------- /Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/Install.sh -------------------------------------------------------------------------------- /KoreaderIntegration.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/KoreaderIntegration.install -------------------------------------------------------------------------------- /Uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/Uninstall.sh -------------------------------------------------------------------------------- /device.lua.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/device.lua.patch -------------------------------------------------------------------------------- /dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/dist.sh -------------------------------------------------------------------------------- /koreader_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/koreader_helper.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/readme.md -------------------------------------------------------------------------------- /rusty_indexer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/rusty_indexer/Cargo.lock -------------------------------------------------------------------------------- /rusty_indexer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/rusty_indexer/Cargo.toml -------------------------------------------------------------------------------- /rusty_indexer/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /scanner_ffi/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/scanner_ffi/Cargo.lock -------------------------------------------------------------------------------- /scanner_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/scanner_ffi/Cargo.toml -------------------------------------------------------------------------------- /scanner_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/scanner_ffi/src/lib.rs -------------------------------------------------------------------------------- /src/extractor/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/base64.c -------------------------------------------------------------------------------- /src/extractor/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/base64.h -------------------------------------------------------------------------------- /src/extractor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/main.c -------------------------------------------------------------------------------- /src/extractor/simple_epub_extractor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/simple_epub_extractor.c -------------------------------------------------------------------------------- /src/extractor/simple_epub_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/simple_epub_extractor.h -------------------------------------------------------------------------------- /src/extractor/simple_fb2_extractor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/simple_fb2_extractor.c -------------------------------------------------------------------------------- /src/extractor/simple_fb2_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/simple_fb2_extractor.h -------------------------------------------------------------------------------- /src/extractor/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/utils.c -------------------------------------------------------------------------------- /src/extractor/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/extractor/utils.h -------------------------------------------------------------------------------- /src/koreader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/koreader/main.c -------------------------------------------------------------------------------- /src/stubs/libxml2/libxml2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/stubs/libxml2/libxml2.c -------------------------------------------------------------------------------- /src/stubs/libxml2/libxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/stubs/libxml2/libxml2.h -------------------------------------------------------------------------------- /src/stubs/lipc/lipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/stubs/lipc/lipc.c -------------------------------------------------------------------------------- /src/stubs/scanner/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/stubs/scanner/scanner.c -------------------------------------------------------------------------------- /src/stubs/scanner/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/KOReaderIntegration/HEAD/src/stubs/scanner/scanner.h --------------------------------------------------------------------------------