mirror of
https://github.com/koreader/koreader
synced 2024-11-06 09:20:32 +00:00
b72a2000b1
* Add a toggle to disable the C blitter in the Dev menu (depends on https://github.com/koreader/koreader-base/pull/882) (never shown if the JIT is disabled, grayed out if the C blitter is not installed) * Fix a few sizeUtf8Text call sites that were doing a nil check in order to account for the new return type. * Tweak statusbar handling to avoid spurious sizeUtf8Text warnings when it's hidden, and unify its behavior between being hidden via toggle, and hidden on book open (at least when all-at-once is not enabled). * c.f., https://github.com/koreader/koreader-base/pull/882 (Android, PB, RGB32 & Legacy Kindle regression fixes).
31 lines
841 B
Lua
31 lines
841 B
Lua
local A = require("android")
|
|
A.dl.library_path = A.dl.library_path .. ":" .. A.dir .. "/libs"
|
|
A.log_name = 'KOReader'
|
|
|
|
local ffi = require("ffi")
|
|
local dummy = require("ffi/posix_h")
|
|
local C = ffi.C
|
|
|
|
-- check uri of the intent that starts this application
|
|
local file = A.getIntent()
|
|
|
|
if file ~= nil then
|
|
A.LOGI("intent file path " .. file)
|
|
end
|
|
|
|
-- (Disabled, since we hide navbar on start now no need for this hack)
|
|
-- run koreader patch before koreader startup
|
|
pcall(dofile, "/sdcard/koreader/patch.lua")
|
|
|
|
-- set proper permission for sdcv
|
|
A.execute("chmod", "755", "./sdcv")
|
|
A.execute("chmod", "755", "./tar")
|
|
A.execute("chmod", "755", "./zsync")
|
|
|
|
-- set TESSDATA_PREFIX env var
|
|
C.setenv("TESSDATA_PREFIX", "/sdcard/koreader/data", 1)
|
|
|
|
-- create fake command-line arguments
|
|
arg = {"-d", file or "/sdcard"}
|
|
dofile(A.dir.."/reader.lua")
|