1.1.0 Update
# Atlasloot v1.1.0 • Added recommended levels to dungeons • Atlasloot attempts to opens at the last page you were on • WSG Landing page and overhaul • AB Landing Page • Core fixes • Fixed some bugs that were breaking the Search function • **3,167 drop rates updated** • Checked drop rates for all World Bosses and Rare Spawns • Gardening • Sorted the reputation list A-Z • Added faction colours to the reputation list • Added and fixed MANY missing drops, items, recipies, etc. • Reworked Silvermoon and Revantusk pages • Update announce code using LFT as well as SendAddonMessage -- 1.17.0 Patch -- • Lower Karazhan Halls • Emerald Sanctum • Gilneas City • Rare Spawns • Enchants • First Aid • Tailoring • Leatherworking • Mining • _Some_ of Blacksmithing # THERE IS STILL A LOT MORE 1.17.0 THINGS THAT NEED TO BE ADDED
This commit is contained in:
+6
-6
@@ -95,17 +95,17 @@ function AtlasLoot:Search(Text)
|
||||
end
|
||||
|
||||
function AtlasLoot:ShowSearchOptions(button)
|
||||
local dewdrop = AceLibrary("Dewdrop-2.0");
|
||||
if dewdrop:IsOpen(button) then
|
||||
dewdrop:Close(1);
|
||||
local Hewdrop = AceLibrary("Hewdrop-2.0");
|
||||
if Hewdrop:IsOpen(button) then
|
||||
Hewdrop:Close(1);
|
||||
else
|
||||
local setOptions = function()
|
||||
dewdrop:AddLine(
|
||||
Hewdrop:AddLine(
|
||||
"text", AL["Search options"],
|
||||
"isTitle", true,
|
||||
"notCheckable", true
|
||||
);
|
||||
dewdrop:AddLine(
|
||||
Hewdrop:AddLine(
|
||||
"text", AL["Partial matching"],
|
||||
"checked", AtlasLootCharDB.PartialMatching,
|
||||
"tooltipTitle", AL["Partial matching"],
|
||||
@@ -113,7 +113,7 @@ function AtlasLoot:ShowSearchOptions(button)
|
||||
"func", function() AtlasLootCharDB.PartialMatching = not AtlasLootCharDB.PartialMatching end
|
||||
);
|
||||
end;
|
||||
dewdrop:Open(button,
|
||||
Hewdrop:Open(button,
|
||||
'point', function(parent)
|
||||
return "BOTTOMLEFT", "BOTTOMRIGHT";
|
||||
end,
|
||||
|
||||
Reference in New Issue
Block a user