fix version
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
## Title: AtlasLoot TW Edition
|
## Title: AtlasLoot TW Edition
|
||||||
## Notes: Shows the possible loot from the bosses
|
## Notes: Shows the possible loot from the bosses
|
||||||
## Author: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons), |cff5BCEFAL|cffF5A9B8e|cffFFFFFFx|cffF5A9B8i|cff5BCEFAe|r
|
## Author: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons), |cff5BCEFAL|cffF5A9B8e|cffFFFFFFx|cffF5A9B8i|cff5BCEFAe|r
|
||||||
## Version: 1.1.3
|
## Version: 1.2.0
|
||||||
## SavedVariables: AtlasLoot_updateavailable
|
## SavedVariables: AtlasLoot_updateavailable
|
||||||
## SavedVariablesPerCharacter: AtlasLootCharDB
|
## SavedVariablesPerCharacter: AtlasLootCharDB
|
||||||
## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare
|
## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare
|
||||||
|
|||||||
+11
-7
@@ -78,8 +78,8 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
|
|||||||
|
|
||||||
--Establish version number and compatible version of Atlas
|
--Establish version number and compatible version of Atlas
|
||||||
local VERSION_MAJOR = "1";
|
local VERSION_MAJOR = "1";
|
||||||
local VERSION_MINOR = "1";
|
local VERSION_MINOR = "2";
|
||||||
local VERSION_BOSSES = "4";
|
local VERSION_BOSSES = "0";
|
||||||
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot TW Edition v"..VERSION_MAJOR.."."..VERSION_MINOR.."."..VERSION_BOSSES.."|r";
|
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot TW Edition v"..VERSION_MAJOR.."."..VERSION_MINOR.."."..VERSION_BOSSES.."|r";
|
||||||
ATLASLOOT_CURRENT_ATLAS = "1.13.3";
|
ATLASLOOT_CURRENT_ATLAS = "1.13.3";
|
||||||
ATLASLOOT_PREVIEW_ATLAS = "1.13.3";
|
ATLASLOOT_PREVIEW_ATLAS = "1.13.3";
|
||||||
@@ -128,7 +128,7 @@ AtlasLoot:RegisterDB("AtlasLootDB");
|
|||||||
|
|
||||||
--Popup Box for first time users
|
--Popup Box for first time users
|
||||||
StaticPopupDialogs["ATLASLOOT_SETUP"] = {
|
StaticPopupDialogs["ATLASLOOT_SETUP"] = {
|
||||||
text = AL["Welcome to Atlasloot Enhanced. Please take a moment to set your preferences."].."\n\n"..AL["New feature in 4.05.00: All professions are now included in the AtlasLoot_Crafting module."].."\n\n"..AL["New feature in 4.05.00: Advanced searching functionality is now available. You can type in a partial item name, for example typing 'elixir' gives all items in the database with 'elixir' in the name. Big thanks to Kurax for his help."].."\n",
|
text = AL["Welcome to Atlasloot Enhanced. Please take a moment to set your preferences."],
|
||||||
button1 = AL["Setup"],
|
button1 = AL["Setup"],
|
||||||
OnAccept = function()
|
OnAccept = function()
|
||||||
AtlasLootOptions_Toggle();
|
AtlasLootOptions_Toggle();
|
||||||
@@ -140,7 +140,7 @@ StaticPopupDialogs["ATLASLOOT_SETUP"] = {
|
|||||||
|
|
||||||
--Popup Box for an old version of Atlas
|
--Popup Box for an old version of Atlas
|
||||||
StaticPopupDialogs["ATLASLOOT_OLD_ATLAS"] = {
|
StaticPopupDialogs["ATLASLOOT_OLD_ATLAS"] = {
|
||||||
text = AL["Incompatible Atlas Detected"],
|
text = AL["Incompatible Atlas version detected, there may be errors, so please visit https://github.com/Otari98/Atlas as soon as possible to update."] ,
|
||||||
button1 = AL["OK"],
|
button1 = AL["OK"],
|
||||||
OnAccept = function()
|
OnAccept = function()
|
||||||
DEFAULT_CHAT_FRAME:AddMessage(BLUE.."Atlas:"..WHITE.." Update your Atlas! https://github.com/Otari98/Atlas");
|
DEFAULT_CHAT_FRAME:AddMessage(BLUE.."Atlas:"..WHITE.." Update your Atlas! https://github.com/Otari98/Atlas");
|
||||||
@@ -3892,11 +3892,13 @@ AtlasLoot_updater:SetScript("OnEvent", function()
|
|||||||
local _,title = GetAddOnInfo("AtlasLoot")
|
local _,title = GetAddOnInfo("AtlasLoot")
|
||||||
local remoteversion = tonumber(remoteversion)
|
local remoteversion = tonumber(remoteversion)
|
||||||
if remoteversion >= 40000 then remoteversion = 0 end --Block for people using some version from another version of WoW.
|
if remoteversion >= 40000 then remoteversion = 0 end --Block for people using some version from another version of WoW.
|
||||||
|
if remoteversion < 10200 then remoteversion = 0 end
|
||||||
|
if remoteversion >= 10206 then remoteversion = 0 end
|
||||||
if v == "VERSION" and remoteversion and title == remotetitle then
|
if v == "VERSION" and remoteversion and title == remotetitle then
|
||||||
if remoteversion > localversion then
|
if remoteversion > localversion then
|
||||||
AtlasLoot_updateavailable = remoteversion
|
AtlasLoot_updateavailable = remoteversion
|
||||||
if not alreadyshown then
|
if not alreadyshown then
|
||||||
--DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Lexiebean/AtlasLoot/")
|
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Otari98/AtlasLoot")
|
||||||
alreadyshown = true
|
alreadyshown = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -3922,11 +3924,13 @@ AtlasLoot_updater:SetScript("OnEvent", function()
|
|||||||
local remoteversion = tonumber(remoteversion) or 0
|
local remoteversion = tonumber(remoteversion) or 0
|
||||||
local _,title = GetAddOnInfo("AtlasLoot")
|
local _,title = GetAddOnInfo("AtlasLoot")
|
||||||
if remoteversion >= 40000 then remoteversion = 0 end --Block for people using some version from another version of WoW.
|
if remoteversion >= 40000 then remoteversion = 0 end --Block for people using some version from another version of WoW.
|
||||||
|
if remoteversion < 10200 then remoteversion = 0 end
|
||||||
|
if remoteversion >= 10206 then remoteversion = 0 end
|
||||||
if v == "VERSION" and remoteversion and title == remotetitle then
|
if v == "VERSION" and remoteversion and title == remotetitle then
|
||||||
if remoteversion > localversion then
|
if remoteversion > localversion then
|
||||||
AtlasLoot_updateavailable = remoteversion
|
AtlasLoot_updateavailable = remoteversion
|
||||||
if not alreadyshown then
|
if not alreadyshown then
|
||||||
--DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Lexiebean/AtlasLoot/")
|
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Otari98/AtlasLoot")
|
||||||
alreadyshown = true
|
alreadyshown = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -3952,7 +3956,7 @@ AtlasLoot_updater:SetScript("OnEvent", function()
|
|||||||
|
|
||||||
if event == "PLAYER_ENTERING_WORLD" then
|
if event == "PLAYER_ENTERING_WORLD" then
|
||||||
if not alreadyshown and localversion < remoteversion then
|
if not alreadyshown and localversion < remoteversion then
|
||||||
--DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Lexiebean/AtlasLoot/")
|
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Otari98/AtlasLoot")
|
||||||
AtlasLoot_updateavailable = localversion
|
AtlasLoot_updateavailable = localversion
|
||||||
alreadyshown = true
|
alreadyshown = true
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -149,7 +149,7 @@ AL:RegisterTranslations("enUS", function() return {
|
|||||||
["It has been detected that your version of Atlas does not match the version that Atlasloot is tuned for ("] = true,
|
["It has been detected that your version of Atlas does not match the version that Atlasloot is tuned for ("] = true,
|
||||||
["). Depending on changes, there may be the occasional error, so please visit http://www.atlasmod.com as soon as possible to update."] = true,
|
["). Depending on changes, there may be the occasional error, so please visit http://www.atlasmod.com as soon as possible to update."] = true,
|
||||||
["OK"] = true,
|
["OK"] = true,
|
||||||
["Incompatible Atlas Detected"] = true,
|
["Incompatible Atlas version detected, there may be errors, so please visit https://github.com/Otari98/Atlas as soon as possible to update."] = true,
|
||||||
["Unsafe Item"] = true,
|
["Unsafe Item"] = true,
|
||||||
["Item Unavailable"] = true,
|
["Item Unavailable"] = true,
|
||||||
["ItemID:"] = true,
|
["ItemID:"] = true,
|
||||||
|
|||||||
Reference in New Issue
Block a user