I was poking around the koreader source code, and was pleased to discover that it does consider the screen's DPI (at least for the UI elements).
A temporary fix for Aura HD users:
koreader/frontend/ui/screen.lua
Then replace the following line:
return Device:getModel() == "KindlePaperWhite" and 212 or 167
With:
--[[ return Device:getModel() == "KindlePaperWhite" and 212 or 167 ]]--
return 265
A proper fix would be more convoluted.
|