Start to load log data.

His Dad [04-16-15 - 22:59]
Start to load log data.
Filename
HistOffline.lua
en.lua
diff --git a/HistOffline.lua b/HistOffline.lua
index b2cfb69..b08e4ee 100644
--- a/HistOffline.lua
+++ b/HistOffline.lua
@@ -71,6 +71,7 @@ for i,_ in pairs(History_SV["Default"]) do -- Only one entry
 end

 local allchar = History_SV["Default"][myaccount]["$AccountWide"]["data"]
+local log_data = History_SV["Default"][myaccount]["$AccountWide"]["log"]
 --get all character names into an array
 local names = {} display = {}

@@ -342,14 +343,30 @@ end
 -- Now create the Log panel


-local logtable =iup.matrix{numcol=4, numcol_visible=4,  numlin=5, widthdef=90}
+local logtable =iup.matrix{numcol=1, numcol_visible=1,  numlin=5}
+	logtable:setcell(0,0, L.TStamp)
+	iup.SetAttribute(logtable,  "WIDTH0", 100)
+	iup.SetAttribute(logtable,  "WIDTH1", 150)
+
+
+local log_keys={}
+for i,j in ipairs (log_data) do
+-- logtable:setcell( i,1, L.TStamp)
+
+end
+
+
+

 local log_box=iup.vbox {
+	["tabtitle"] =L.LogTab,
+	iup.label{title="LogLabel",expand="HORIZONTAL"},
 	logtable,
 	iup.fill{}
 }

-iup.Append(logtabs,log_box)
+-- Add to end of Characters
+iup.Append(Chartabs, log_box)

 local panelsize = (#names*80+100) .. "x250"

diff --git a/en.lua b/en.lua
index 0713dd9..2460676 100644
--- a/en.lua
+++ b/en.lua
@@ -32,8 +32,10 @@ Area_names = {
 		Deaths = "Deaths",
 		APts = "Ach Points",
 		GrpLab = "Levels are Minimum, scales to leader",
-		PubLab = "",
+		PubLab = "Conqueror Achievement",
 		VetLab = "All are V1-V12 except City of Ash which is V13-V14",
+		LogTab = "System Log",
+		TStamp = "Time Stamp" ,
 		title = "History For  "
 	}