You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

4 years ago
DETAILS_STORAGE_VERSION = 5
function Details:CreateStorageDB()
4 years ago
DetailsDataStorage = {
VERSION = DETAILS_STORAGE_VERSION,
4 years ago
[14] = {}, --normal mode (raid)
[15] = {}, --heroic mode (raid)
[16] = {}, --mythic mode (raid)
["mythic_plus"] = {}, --(dungeons)
["saved_encounters"] = {}, --(a segment)
}
return DetailsDataStorage
end
local f = CreateFrame ("frame", nil, UIParent)
4 years ago
f:Hide()
f:RegisterEvent ("ADDON_LOADED")
4 years ago
f:SetScript ("OnEvent", function (self, event, addonName)
4 years ago
if (addonName == "Details_DataStorage") then
DetailsDataStorage = DetailsDataStorage or Details:CreateStorageDB()
DetailsDataStorage.Data = {}
4 years ago
if (DetailsDataStorage.VERSION < DETAILS_STORAGE_VERSION) then
--> do revisions
4 years ago
if (DetailsDataStorage.VERSION < 5) then
table.wipe (DetailsDataStorage)
DetailsDataStorage = Details:CreateStorageDB()
4 years ago
end
end
if (Details and Details.debug) then
print ("|cFFFFFF00Details! Storage|r: loaded!")
4 years ago
end
DETAILS_STORAGE_LOADED = true
end
end)