2016-09-06 04:43:17 +02:00
|
|
|
local dat = {}
|
|
|
|
local ver, info
|
|
|
|
local datread = require("data/load_dat")
|
|
|
|
datread, ver = datread.open("history.dat", "## REVISION:")
|
|
|
|
|
|
|
|
function dat.check(set, softlist)
|
|
|
|
if not datread then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
local status
|
|
|
|
status, info = pcall(datread, "bio", softlist or "info", set)
|
|
|
|
if not status or not info then
|
|
|
|
return nil
|
|
|
|
end
|
2017-09-04 05:04:33 +02:00
|
|
|
return _("History")
|
2016-09-06 04:43:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function dat.get()
|
|
|
|
return info
|
|
|
|
end
|
|
|
|
|
2016-09-07 05:11:01 +02:00
|
|
|
function dat.ver()
|
|
|
|
return ver
|
|
|
|
end
|
|
|
|
|
2016-09-06 04:43:17 +02:00
|
|
|
return dat
|