├── .gitignore ├── 2--disable-all-CB-widgets.lua ├── 2--disable-all-PT-widgets.lua ├── 2--rounded-corners.lua ├── 2-faded-finished-books.lua ├── 2-new-collections-star.lua ├── 2-new-progress-bar.lua ├── 2-new-status-icons.lua ├── 2-pages-badge.lua ├── 2-percent-badge.lua ├── 2-series-badge-numbered.lua ├── 2-series-indicator.lua ├── LICENSE ├── README.md ├── all icons ├── appbar.contrast.svg ├── appbar.crop.svg ├── appbar.filebrowser.svg ├── appbar.menu.svg ├── appbar.navigation.svg ├── appbar.pageview.svg ├── appbar.rotation.svg ├── appbar.search.svg ├── appbar.settings.svg ├── appbar.textsize.svg ├── appbar.tools.svg ├── appbar.typeset.svg ├── back.top.rtl.svg ├── back.top.svg ├── bookmark.svg ├── cancel.svg ├── check.svg ├── chevron.first.svg ├── chevron.last.svg ├── chevron.left.svg ├── chevron.right.svg ├── chevron.up.svg ├── close.svg ├── control.collapse.svg ├── control.expand.svg ├── direction.BTLR.svg ├── direction.BTRL.svg ├── direction.LRBT.svg ├── direction.LRTB.svg ├── direction.RLBT.svg ├── direction.RLTB.svg ├── direction.TBLR.svg ├── direction.TBRL.svg ├── dogear.abandoned.svg ├── dogear.complete.svg ├── dogear.reading.svg ├── exit.svg ├── favorites.svg ├── go_up.svg ├── hero.svg ├── history.svg ├── home.svg ├── info.svg ├── last_document.svg ├── move.down.svg ├── move.up.svg ├── notice-info.svg ├── notice-question.svg ├── notice-warning.svg ├── percent.badge.svg ├── plus.svg ├── rotation.0UR.svg ├── rotation.180UD.svg ├── rotation.90CCW.svg ├── rotation.90CW.svg ├── rounded.corner.bl.svg ├── rounded.corner.br.svg ├── rounded.corner.tl.svg ├── rounded.corner.tr.svg ├── star.empty.svg ├── star.full.svg ├── star.white.svg ├── texture-box.svg ├── triangle.svg ├── unread_mark_top.svg ├── wifi.open.0.svg ├── wifi.open.100.svg ├── wifi.open.25.svg ├── wifi.open.50.svg ├── wifi.open.75.svg ├── wifi.secure.0.svg ├── wifi.secure.100.svg ├── wifi.secure.25.svg ├── wifi.secure.50.svg ├── wifi.secure.75.svg ├── wifi.svg ├── zoom.column.svg ├── zoom.content.svg ├── zoom.manual.svg ├── zoom.page.svg └── zoom.row.svg ├── icons (bw) ├── dogear.abandoned.svg ├── dogear.complete.svg ├── dogear.reading.svg ├── percent.badge.svg ├── rounded.corner.bl.svg ├── rounded.corner.br.svg ├── rounded.corner.tl.svg └── rounded.corner.tr.svg └── icons (coloured) ├── dogear.abandoned.svg ├── dogear.complete.svg ├── dogear.reading.svg ├── percent.badge.svg ├── rounded.corner.bl.svg ├── rounded.corner.br.svg ├── rounded.corner.tl.svg └── rounded.corner.tr.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/.gitignore -------------------------------------------------------------------------------- /2--disable-all-CB-widgets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2--disable-all-CB-widgets.lua -------------------------------------------------------------------------------- /2--disable-all-PT-widgets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2--disable-all-PT-widgets.lua -------------------------------------------------------------------------------- /2--rounded-corners.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2--rounded-corners.lua -------------------------------------------------------------------------------- /2-faded-finished-books.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-faded-finished-books.lua -------------------------------------------------------------------------------- /2-new-collections-star.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-new-collections-star.lua -------------------------------------------------------------------------------- /2-new-progress-bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-new-progress-bar.lua -------------------------------------------------------------------------------- /2-new-status-icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-new-status-icons.lua -------------------------------------------------------------------------------- /2-pages-badge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-pages-badge.lua -------------------------------------------------------------------------------- /2-percent-badge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-percent-badge.lua -------------------------------------------------------------------------------- /2-series-badge-numbered.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-series-badge-numbered.lua -------------------------------------------------------------------------------- /2-series-indicator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/2-series-indicator.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/README.md -------------------------------------------------------------------------------- /all icons/appbar.contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.contrast.svg -------------------------------------------------------------------------------- /all icons/appbar.crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.crop.svg -------------------------------------------------------------------------------- /all icons/appbar.filebrowser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.filebrowser.svg -------------------------------------------------------------------------------- /all icons/appbar.menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.menu.svg -------------------------------------------------------------------------------- /all icons/appbar.navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.navigation.svg -------------------------------------------------------------------------------- /all icons/appbar.pageview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.pageview.svg -------------------------------------------------------------------------------- /all icons/appbar.rotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.rotation.svg -------------------------------------------------------------------------------- /all icons/appbar.search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.search.svg -------------------------------------------------------------------------------- /all icons/appbar.settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.settings.svg -------------------------------------------------------------------------------- /all icons/appbar.textsize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.textsize.svg -------------------------------------------------------------------------------- /all icons/appbar.tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.tools.svg -------------------------------------------------------------------------------- /all icons/appbar.typeset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/appbar.typeset.svg -------------------------------------------------------------------------------- /all icons/back.top.rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/back.top.rtl.svg -------------------------------------------------------------------------------- /all icons/back.top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/back.top.svg -------------------------------------------------------------------------------- /all icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/bookmark.svg -------------------------------------------------------------------------------- /all icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/cancel.svg -------------------------------------------------------------------------------- /all icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/check.svg -------------------------------------------------------------------------------- /all icons/chevron.first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/chevron.first.svg -------------------------------------------------------------------------------- /all icons/chevron.last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/chevron.last.svg -------------------------------------------------------------------------------- /all icons/chevron.left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/chevron.left.svg -------------------------------------------------------------------------------- /all icons/chevron.right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/chevron.right.svg -------------------------------------------------------------------------------- /all icons/chevron.up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/chevron.up.svg -------------------------------------------------------------------------------- /all icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/close.svg -------------------------------------------------------------------------------- /all icons/control.collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/control.collapse.svg -------------------------------------------------------------------------------- /all icons/control.expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/control.expand.svg -------------------------------------------------------------------------------- /all icons/direction.BTLR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.BTLR.svg -------------------------------------------------------------------------------- /all icons/direction.BTRL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.BTRL.svg -------------------------------------------------------------------------------- /all icons/direction.LRBT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.LRBT.svg -------------------------------------------------------------------------------- /all icons/direction.LRTB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.LRTB.svg -------------------------------------------------------------------------------- /all icons/direction.RLBT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.RLBT.svg -------------------------------------------------------------------------------- /all icons/direction.RLTB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.RLTB.svg -------------------------------------------------------------------------------- /all icons/direction.TBLR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.TBLR.svg -------------------------------------------------------------------------------- /all icons/direction.TBRL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/direction.TBRL.svg -------------------------------------------------------------------------------- /all icons/dogear.abandoned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/dogear.abandoned.svg -------------------------------------------------------------------------------- /all icons/dogear.complete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/dogear.complete.svg -------------------------------------------------------------------------------- /all icons/dogear.reading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/dogear.reading.svg -------------------------------------------------------------------------------- /all icons/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/exit.svg -------------------------------------------------------------------------------- /all icons/favorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/favorites.svg -------------------------------------------------------------------------------- /all icons/go_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/go_up.svg -------------------------------------------------------------------------------- /all icons/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/hero.svg -------------------------------------------------------------------------------- /all icons/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/history.svg -------------------------------------------------------------------------------- /all icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/home.svg -------------------------------------------------------------------------------- /all icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/info.svg -------------------------------------------------------------------------------- /all icons/last_document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/last_document.svg -------------------------------------------------------------------------------- /all icons/move.down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/move.down.svg -------------------------------------------------------------------------------- /all icons/move.up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/move.up.svg -------------------------------------------------------------------------------- /all icons/notice-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/notice-info.svg -------------------------------------------------------------------------------- /all icons/notice-question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/notice-question.svg -------------------------------------------------------------------------------- /all icons/notice-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/notice-warning.svg -------------------------------------------------------------------------------- /all icons/percent.badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/percent.badge.svg -------------------------------------------------------------------------------- /all icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/plus.svg -------------------------------------------------------------------------------- /all icons/rotation.0UR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rotation.0UR.svg -------------------------------------------------------------------------------- /all icons/rotation.180UD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rotation.180UD.svg -------------------------------------------------------------------------------- /all icons/rotation.90CCW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rotation.90CCW.svg -------------------------------------------------------------------------------- /all icons/rotation.90CW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rotation.90CW.svg -------------------------------------------------------------------------------- /all icons/rounded.corner.bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rounded.corner.bl.svg -------------------------------------------------------------------------------- /all icons/rounded.corner.br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rounded.corner.br.svg -------------------------------------------------------------------------------- /all icons/rounded.corner.tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rounded.corner.tl.svg -------------------------------------------------------------------------------- /all icons/rounded.corner.tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/rounded.corner.tr.svg -------------------------------------------------------------------------------- /all icons/star.empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/star.empty.svg -------------------------------------------------------------------------------- /all icons/star.full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/star.full.svg -------------------------------------------------------------------------------- /all icons/star.white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/star.white.svg -------------------------------------------------------------------------------- /all icons/texture-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/texture-box.svg -------------------------------------------------------------------------------- /all icons/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/triangle.svg -------------------------------------------------------------------------------- /all icons/unread_mark_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/unread_mark_top.svg -------------------------------------------------------------------------------- /all icons/wifi.open.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.open.0.svg -------------------------------------------------------------------------------- /all icons/wifi.open.100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.open.100.svg -------------------------------------------------------------------------------- /all icons/wifi.open.25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.open.25.svg -------------------------------------------------------------------------------- /all icons/wifi.open.50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.open.50.svg -------------------------------------------------------------------------------- /all icons/wifi.open.75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.open.75.svg -------------------------------------------------------------------------------- /all icons/wifi.secure.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.secure.0.svg -------------------------------------------------------------------------------- /all icons/wifi.secure.100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.secure.100.svg -------------------------------------------------------------------------------- /all icons/wifi.secure.25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.secure.25.svg -------------------------------------------------------------------------------- /all icons/wifi.secure.50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.secure.50.svg -------------------------------------------------------------------------------- /all icons/wifi.secure.75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.secure.75.svg -------------------------------------------------------------------------------- /all icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/wifi.svg -------------------------------------------------------------------------------- /all icons/zoom.column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/zoom.column.svg -------------------------------------------------------------------------------- /all icons/zoom.content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/zoom.content.svg -------------------------------------------------------------------------------- /all icons/zoom.manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/zoom.manual.svg -------------------------------------------------------------------------------- /all icons/zoom.page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/zoom.page.svg -------------------------------------------------------------------------------- /all icons/zoom.row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/all icons/zoom.row.svg -------------------------------------------------------------------------------- /icons (bw)/dogear.abandoned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/dogear.abandoned.svg -------------------------------------------------------------------------------- /icons (bw)/dogear.complete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/dogear.complete.svg -------------------------------------------------------------------------------- /icons (bw)/dogear.reading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/dogear.reading.svg -------------------------------------------------------------------------------- /icons (bw)/percent.badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/percent.badge.svg -------------------------------------------------------------------------------- /icons (bw)/rounded.corner.bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/rounded.corner.bl.svg -------------------------------------------------------------------------------- /icons (bw)/rounded.corner.br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/rounded.corner.br.svg -------------------------------------------------------------------------------- /icons (bw)/rounded.corner.tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/rounded.corner.tl.svg -------------------------------------------------------------------------------- /icons (bw)/rounded.corner.tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (bw)/rounded.corner.tr.svg -------------------------------------------------------------------------------- /icons (coloured)/dogear.abandoned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/dogear.abandoned.svg -------------------------------------------------------------------------------- /icons (coloured)/dogear.complete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/dogear.complete.svg -------------------------------------------------------------------------------- /icons (coloured)/dogear.reading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/dogear.reading.svg -------------------------------------------------------------------------------- /icons (coloured)/percent.badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/percent.badge.svg -------------------------------------------------------------------------------- /icons (coloured)/rounded.corner.bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/rounded.corner.bl.svg -------------------------------------------------------------------------------- /icons (coloured)/rounded.corner.br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/rounded.corner.br.svg -------------------------------------------------------------------------------- /icons (coloured)/rounded.corner.tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/rounded.corner.tl.svg -------------------------------------------------------------------------------- /icons (coloured)/rounded.corner.tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeriousHornet/KOReader.patches/HEAD/icons (coloured)/rounded.corner.tr.svg --------------------------------------------------------------------------------