Files
coa-weakauras/WeakAurasOptions/VersionCheck.lua
T
NoM0Re 3c574cb4a6 5.19.5
No new features this release, just fixes to some minor bugs.
2025-03-14 00:48:30 +01:00

15 lines
589 B
Lua

local AddonName, Private = ...
local L = WeakAuras.L
local optionsVersion = "5.19.5"
if optionsVersion .. " Beta" ~= WeakAuras.versionString then
local message = string.format(L["The WeakAuras Options Addon version %s doesn't match the WeakAuras version %s. If you updated the addon while the game was running, try restarting World of Warcraft. Otherwise try reinstalling WeakAuras"],
optionsVersion, WeakAuras.versionString)
WeakAuras.IsLibsOk = function() return false end
WeakAuras.ToggleOptions = function()
WeakAuras.prettyPrint(message)
end
end