mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
9a20fb5836
* Switch to zsync2 Requires https://github.com/koreader/koreader-base/pull/1036 * Simplify FBInk syntax The weird-ass workarounds for -s's subopts handling are no longer needed w/ FBInk >= 1.21.0 * Update base * Re-enable HW dithering on Kindle (https://github.com/koreader/koreader-base/pull/1034) * Update SQLite to 3.31.1 (https://github.com/koreader/koreader-base/pull/1035) * reMarkable port (https://github.com/koreader/koreader-base/pull/1023) * zsync2 (https://github.com/koreader/koreader-base/pull/1036) * zsync2 means we can finally have nice things (OpenStack backed storage) * We also no longer need that insane workaround on ARM * And comment out @chrox's mirror, which appears to be down. * Warn that a malformed URL will horribly blow up in fun and interesting ways
39 lines
1.1 KiB
Lua
39 lines
1.1 KiB
Lua
local android = require("android")
|
|
android.dl.library_path = android.dl.library_path .. ":" .. android.dir .. "/libs"
|
|
|
|
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 = android.getIntent()
|
|
|
|
if file ~= nil then
|
|
android.LOGI("intent file path " .. file)
|
|
end
|
|
|
|
-- path to primary external storage partition
|
|
local path = android.getExternalStoragePath()
|
|
|
|
-- run koreader patch before koreader startup
|
|
pcall(dofile, path.."/koreader/patch.lua")
|
|
|
|
-- Set proper permission for binaries.
|
|
--- @todo Take care of this on extraction instead.
|
|
-- Cf. <https://github.com/koreader/koreader/issues/5347#issuecomment-529476693>.
|
|
android.execute("chmod", "755", "./sdcv")
|
|
android.execute("chmod", "755", "./tar")
|
|
|
|
-- set TESSDATA_PREFIX env var
|
|
C.setenv("TESSDATA_PREFIX", path.."/koreader/data", 1)
|
|
|
|
-- create fake command-line arguments
|
|
-- luacheck: ignore 121
|
|
if android.isDebuggable() then
|
|
arg = {"-d", file or path}
|
|
else
|
|
arg = {file or path}
|
|
end
|
|
|
|
dofile(android.dir.."/reader.lua")
|