-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from LetsTimeIt/namespacing
feat: Inspiring mobs are now much more noticeable feat: Addon now has its own namespace (DungeonTools). There is still one clash, but it is on the MDT side, so there's not much we can do on that. fix: if a mob does not have an i18n entry, or if the i18n stuff fails, we fall back to the literal key provided fix: default routes no longer get wiped
- Loading branch information
Showing
50 changed files
with
146 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 16 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 26 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 25 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 18 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 19 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 22 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 23 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local dungeonIndex = 24 | ||
MDT.mapInfo[dungeonIndex] = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
local MDT = DungeonTools | ||
local displayIdOverrides = { | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<Bindings> | ||
<Binding name="MDTTOGGLE" runOnUp="false" category="Dungeon Tools"> | ||
MDT:ShowInterface() | ||
<Binding name="DungeonToolsToggle" runOnUp="false" category="Dungeon Tools"> | ||
DungeonTools:ShowInterface() | ||
</Binding> | ||
<Binding name="MDTNPC" runOnUp="false" category="Dungeon Tools"> | ||
MDT:AddCloneAtCursorPosition() | ||
<Binding name="DungeonToolsNPC" runOnUp="false" category="Dungeon Tools"> | ||
DungeonTools:AddCloneAtCursorPosition() | ||
</Binding> | ||
<Binding name="MDTWAYPOINT" runOnUp="false" category="Dungeon Tools"> | ||
MDT:AddPatrolWaypointAtCursorPosition() | ||
<Binding name="DungeonToolsWaypoint" runOnUp="false" category="Dungeon Tools"> | ||
DungeonTools:AddPatrolWaypointAtCursorPosition() | ||
</Binding> | ||
</Bindings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
local MDT = MDT | ||
local MDT = DungeonTools | ||
local L = MDT.L | ||
local AceGUI = LibStub("AceGUI-3.0") | ||
local db | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.