diff --git a/LevelRange.lua b/LevelRange.lua index b89673e..0008b31 100644 --- a/LevelRange.lua +++ b/LevelRange.lua @@ -20,14 +20,14 @@ LEVELRANGE_NAME = "LevelRange" -- Version Number -LEVELRANGE_VERSION = "2.0.3"; +LEVELRANGE_VERSION = "2.0.4"; -- Details Details = { name = LEVELRANGE_NAME, version = LEVELRANGE_VERSION, - releaseDate = "Feb 19, 2024", - author = "Bull3t, Tenyar97, rado-boy, blehz.", + releaseDate = "Aug 31, 2025", + author = "Bull3t, Tenyar97, rado-boy, blehz., Magusbear", email = "", website = "https://github.com/Tenyar97/LevelRange-Turtle", category = MYADDONS_CATEGORY_MAP, @@ -110,6 +110,9 @@ LEVELRANGE_RANGES = { -- Turtle WoW Zones [LEVELRANGE_THALASSIANHIGHLANDS] = { 1, 10, lTYPE_ALLIANCE}, [LEVELRANGE_BLACKSTONEISLAND] = { 1, 10, lTYPE_HORDE}, + [LEVELRANGE_NORTHWIND] = {28, 34, lTYPE_CONTESTED}, + [LEVELRANGE_BALOR] = {29, 34, lTYPE_CONTESTED}, + [LEVELRANGE_GRIMREACHES] = {33, 38, lTYPE_CONTESTED}, [LEVELRANGE_GILNEAS] = {39, 46, lTYPE_CONTESTED}, [LEVELRANGE_GILLIJIM] = {48, 53, lTYPE_CONTESTED}, [LEVELRANGE_LAPIDIS] = {48, 53, lTYPE_CONTESTED}, @@ -169,6 +172,9 @@ LEVELRANGE_FISHING = { --[LEVELRANGE_LAPIDIS] = {0}, --[LEVELRANGE_TELABIM] = {0}, --[LEVELRANGE_HYJAL] = {0}, + --[LEVELRANGE_NORTHWIND] = {0}, + --[LEVELRANGE_BALOR] = {0}, + --[LEVELRANGE_GRIMREACHES] = {0}, }; -- Instances @@ -190,6 +196,8 @@ LEVELRANGE_INSTANCES = { -- Turtle WoW Dungeons [LEVELRANGE_ASHENVALE] = {LEVELRANGE_BLACKFATHOMDEEPS, " (24-32)", LEVELRANGE_CRESCENTGROVE, " (32-38)"}, + [LEVELRANGE_WETLANDS] = {LEVELRANGE_DRAGONMAWRETREAT, " (27-33)"}, + [LEVELRANGE_BALOR] = {LEVELRANGE_STORMWROUGHTRUINS, " (27-33)"}, [LEVELRANGE_GILNEAS] = {LEVELRANGE_GILNEASCITY, " (43-49)"}, [LEVELRANGE_BURNINGSTEPPE] = {LEVELRANGE_HATEFORGEQUARRY, " (52-60)", LEVELRANGE_BLACKROCKDEPTH, " (52-60)", LEVELRANGE_BLACKROCKSPIRE, " (58-60)"}, [LEVELRANGE_DEADWINDPASS] = {LEVELRANGE_KARAZHANCRYPT, " (58 - 60)"}, @@ -779,4 +787,4 @@ function LevelRange_OnEvent(event) myAddOnsFrame_Register(Details, Help); end end -end \ No newline at end of file +end diff --git a/Readme.txt b/Readme.txt index 9f6d3bc..8539fdf 100644 --- a/Readme.txt +++ b/Readme.txt @@ -9,9 +9,9 @@ Details ---------------------- Title: LevelRange Interface: 11200 -Version: 2.0.3 +Version: 2.0.4 -Author: Bull3t, Tenyar97, rado-boy, blehz. +Author: Bull3t, Tenyar97, rado-boy, blehz., Magusbear Addon Website: https://github.com/Tenyar97/LevelRange-Turtle Current Features: @@ -22,6 +22,9 @@ Current Features: ---------------------- Change Log ---------------------- +2.0.4 - Update (Magusbear) + [*] Updated zones and dungeons to Turtle WoW 1.18. + 2.0.3 - Update (blehz.) [*] Updated zones, dungeons and raids to Turtle WoW 1.17.1. @@ -63,4 +66,4 @@ Change Log [*] Added slash commands, but currently they do nothing. 1.0.0 - Release - [*] Public release version. \ No newline at end of file + [*] Public release version. diff --git a/localisation.lua b/localisation.lua index 2bc4c97..318e84a 100644 --- a/localisation.lua +++ b/localisation.lua @@ -68,6 +68,9 @@ LEVELRANGE_LAPIDIS = "Lapidis Isle"; LEVELRANGE_TELABIM = "Tel'Abim"; LEVELRANGE_SCARLETENCLAVE = "Scarlet Enclave"; LEVELRANGE_HYJAL = "Hyjal"; +LEVELRANGE_NORTHWIND = "Northwind "; -- Currently the Northwind has a trailing space in its name if this ever gets patched by the Turtle WoW Team the space needs to be removed here +LEVELRANGE_BALOR = "Balor"; +LEVELRANGE_GRIMREACHES = "Grim Reaches"; -- Sub-zones LEVELRANGE_ORGRIMMAR = "Orgrimmar"; @@ -111,7 +114,9 @@ LEVELRANGE_GILNEASCITY = "Gilneas City"; LEVELRANGE_HATEFORGEQUARRY = "Hateforge Quarry"; LEVELRANGE_KARAZHANCRYPT = "Karazhan Crypt"; LEVELRANGE_STORMWINDVAULT = "Stormwind Vault"; -LEVELRANGE_COTBLACKMORASS = "Caverns of Time: The Black Morass"; +LEVELRANGE_COTBLACKMORASS = "Caverns of Time: The Black Morass"; +LEVELRANGE_DRAGONMAWRETREAT = "Dragonmaw Retreat"; +LEVELRANGE_STORMWROUGHTRUINS= "Stormwrought Ruins"; -- Raids LEVELRANGE_NAXXRAMAS = "Naxxramas"; @@ -216,4 +221,4 @@ LEVELRANGE_DEFAULT_OPTS = { ["showInstances"] = true, ["showPvP"] = true, ["showFishing"] = true, -}; \ No newline at end of file +};