summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/data/data_history.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/data/data_history.lua')
-rw-r--r--plugins/data/data_history.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/data/data_history.lua b/plugins/data/data_history.lua
new file mode 100644
index 00000000000..29da2f62fd5
--- /dev/null
+++ b/plugins/data/data_history.lua
@@ -0,0 +1,22 @@
+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
+ return "History"
+end
+
+function dat.get()
+ return info
+end
+
+return dat