You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.0 KiB
Lua
71 lines
2.0 KiB
Lua
5 years ago
|
-- read namespace from global env
|
||
|
local _G = _G
|
||
|
local Grichelde = _G.Grichelde
|
||
|
|
||
|
local pairs, find, toNumber = Grichelde.functions.pairs, Grichelde.functions.find, Grichelde.functions.toNumber
|
||
|
|
||
|
function Grichelde:Upgrade_To_v060()
|
||
|
self:PrefixedPrint(self.L.Upgrade_ToVersion, Grichelde.COLOR_CODES.ORANGE .. "0.6.0" .. Grichelde.COLOR_CODES.CLOSE)
|
||
|
|
||
|
local replacements = self.db.profile.replacements or {}
|
||
|
self:DebugPrint("Upgrade_To_060 : old database")
|
||
|
self:DebugPrint(replacements)
|
||
|
|
||
|
for _, replTable in pairs(replacements) do
|
||
|
replTable.ignoreCase = not replTable["caseSensitive"]
|
||
|
replTable["caseSensitive"] = nil
|
||
|
end
|
||
|
|
||
|
self:DebugPrint("Upgrade_To_060 : new database")
|
||
|
self:DebugPrint(replacements)
|
||
|
return 0, 6, 0
|
||
|
end
|
||
|
|
||
|
--[[
|
||
|
function Grichelde:Upgrade_To_v061()
|
||
|
return 0, 6, 1
|
||
|
end
|
||
|
|
||
|
function Grichelde:Upgrade_To_v070()
|
||
|
return 0, 7, 0
|
||
|
end
|
||
|
]]
|
||
|
|
||
|
function Grichelde:UpgradeDatabase()
|
||
|
local dbVersion = self.db.global.version or "0.0.0"
|
||
|
self:DebugPrint("Database version:", dbVersion)
|
||
|
|
||
|
local _, _, maj, min, pat = find(dbVersion, "(%d+)%.(%d+)%.(%d+).*")
|
||
|
local major, minor, patch = toNumber(maj) or 0, toNumber(min) or 0, toNumber(pat) or 0
|
||
|
|
||
|
local upgrade = 0
|
||
|
local error = false
|
||
|
|
||
|
if major == 0 then
|
||
|
if minor < 6 then
|
||
|
upgrade = upgrade + 1
|
||
|
major, minor, patch = self:Upgrade_To_v060(dbVersion)
|
||
|
end
|
||
|
--[[
|
||
|
if minor == 6 then
|
||
|
if patch < 1 then
|
||
|
upgrade = upgrade + 1
|
||
|
major, minor, patch = self:Upgrade_To_v061(dbVersion)
|
||
|
end
|
||
|
end
|
||
|
if minor < 7 then
|
||
|
upgrade = upgrade + 1
|
||
|
major, minor, patch = self:Upgrade_To_v070(dbVersion)
|
||
|
end
|
||
|
]]
|
||
|
end
|
||
|
|
||
|
if upgrade == 0 then
|
||
|
self:DebugPrint("Database up-to-date")
|
||
|
else
|
||
|
if not error then
|
||
|
self.db.global.version = self.version
|
||
|
self:PrefixedPrint(Grichelde.COLOR_CODES.GREEN .. self.L.Upgrade_Successful .. Grichelde.COLOR_CODES.CLOSE)
|
||
|
end
|
||
|
end
|
||
|
end
|