A KOReader plugin allows you to read RSS entries online/offline on your e-reader device.
Browse your Miniflux server content directly from KOReader:
- Online/Offline Reading: Browse feeds, categories, and entries online or offline. You can download entries individually or in batch.
- Context-Aware Navigation: Navigate between entries with next/previous actions after finishing reading an entry.
- Status Synchronization: Mark entries as read/unread. Don't worry if you aren't online, the system will keep an eye on it and you can sync it later or the system will remind you when you go online again.
- E-ink Optimized: Efficient image downloading and display for e-readers. You can proxy the images to be transformed for e-ink optimization so you can resize them to fit your reader.
- Download the latest release from this repository
- Unzip and copy the miniflux.koplugin folder into KOReader's plugin folder
- Activate the plugin
- Setup: Configure your Miniflux server URL and credentials in the settings
- Browse: Access feeds, categories, and entries from the "read entries" menu
- Read: Select an entry and it will start downloading it. The entry will be opened after successfully downloaded.
- Download: Tap hold an entry to enter into selection mode and batch download entries.
- Sync: Status changes sync automatically with your Miniflux server. If in offline mode, it will queue the status for the next time you are online.
- Feed and Category Browsing
- List all feeds and categories from Miniflux server
- Navigate feed and category organization
- Entry Management
- Browse entries by feed, category, or unreads
- Download entries with text and images for offline reading
- Context-aware navigation (next/previous within current view)
- Status Management
- Mark entries as read/unread without deleting local files
- Auto-mark as read when opening entry
- Batch mark as read when offline
- Offline Support
- Full offline reading of downloaded entries
- Local file management and organization
- Bulk Entry Deletion
- Delete selected entries
- Delete by date range (1 week, 1 month, 3 months, 6 months)
- Storage space reporting and cleanup
- Selective Image Management
- Delete all images while preserving entry text
- Image storage statistics and usage breakdown
- Intelligent Prefetching
- Configurable prefetch count (download N entries ahead)
- Image Recovery
- Selective re-download of missing images only
- Search and Organization
- Full-text search
- Starred entries
- Modular Design: Separate services for API, entries, navigation, and storage
- Error Handling: Comprehensive error management with user-friendly messages
- Offline-First: Graceful degradation when server is unavailable
- E-ink Optimized: Efficient image processing and display for e-readers
This project provides a complete Nix flake for reproducible development:
# With direnv (automatic)
direnv allow
# Manual activation
nix develop
# Available tools: lua, selene, stylua, taskIf not using Nix, install these tools manually:
# Install tools
cargo install stylua selene- StyLua: Code formatter
- Selene: Static analysis and linting
- LuaLS: Type checking with LuaCATS annotations
# Check code quality
task check
# Auto-fix formatting
task fmt-fixFor development testing, create a symlink to the built plugin:
# Build the plugin first
task build
# Create symlink to KOReader plugins directory
ln -s /path/to/miniflux.koplugin/dist/miniflux.koplugin ~/.config/koreader/plugins/miniflux.koplugin
# Run KOReader with debug logging
/System/Volumes/Data/Applications/KOReader.app/Contents/MacOS/koreader -d
# Filter logs for Miniflux-specific messages
/System/Volumes/Data/Applications/KOReader.app/Contents/MacOS/koreader -d 2>&1 | grep -E "Miniflux"Contributions are welcome! Please feel free to:
- Report bugs and suggest features
- Submit pull requests for improvements
- Help with testing on different devices
- Contribute to documentation