Version 0.8.0-beta

- handle replacement via slash command
- emote and ooc detection
- de-/activate single mappings
- move buttons and mappings are disabled when already at top/bottom or deactivated
- minimap button is darkened when addon is disabled
- help tab with examples

- right-click on minimap button quickly de-/activates replacements

- fixed mapping to raid warning, instance and battleground chats
- localized raid target markers
- capital % substitutions
- incorrect consolidation
- Umlaut and accent replacements
This commit is contained in:
2020-06-09 02:28:31 +02:00
parent 5b72ad3b78
commit 44dd7ac8eb
26 changed files with 1389 additions and 406 deletions

View File

@@ -24,6 +24,7 @@ function Grichelde:GetDefaultConfig()
},
replacements = {
["**"] = {
active = true,
order = 9999,
searchText = "",
replaceText = "",
@@ -34,23 +35,12 @@ function Grichelde:GetDefaultConfig()
order = 10,
searchText = "s",
replaceText = "ch",
exactCase = false,
consolidate = true,
},
replacement_11 = {
order = 11,
searchText = "t",
replaceText = "ck",
exactCase = false,
consolidate = true,
},
replacement_12 = {
order = 12,
searchText = "Zark",
replaceText = "toter Schamane",
exactCase = false,
consolidate = true,
}
}
}
}
@@ -156,4 +146,4 @@ function Grichelde:ReorderReplacements()
self:DebugPrint("ReorderReplacements : sorted table")
self:DebugPrint(self.db.profile.replacements)
end
end