Skip to content

Commit

Permalink
Merge branch 'release/1.4.3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
NoobTaco committed Aug 19, 2024
2 parents 47138dd + 21a0202 commit 7ce83ff
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.4.3]

### Updated

- TOC (Typo before hand)
- Updated the elite overlay's to the new modern UI overlays.

## [1.4.2]

### Updated
Expand Down
2 changes: 1 addition & 1 deletion Code.lua
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ local function InsertOptions()
overlay = {
order = 1,
type = "toggle",
name = L["Elite Overlay"],
name = L["Elite Overlay Dragon Flight Style"],
desc = L["Disable/Enable the elite dragon overlay for the target."]
}
}
Expand Down
Binary file removed Media/Textures/elite.tga
Binary file not shown.
Binary file added Media/Textures/elite_df.tga
Binary file not shown.
Binary file removed Media/Textures/rare.tga
Binary file not shown.
Binary file added Media/Textures/rare_df.tga
Binary file not shown.
Binary file removed Media/Textures/rareelite.tga
Binary file not shown.
Binary file removed Media/Textures/worldboss.tga
Binary file not shown.
Binary file added Media/Textures/worldboss_df.tga
Binary file not shown.
4 changes: 2 additions & 2 deletions NoobTacoUI.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 11503, 40400, 111000, 111002
## Interface: 11503, 40400, 110000, 110002
## Title: |cFF16C3F2NoobTaco|r|cFFFFFFFFUI|r
## Author: NoobTaco
## Version: 1.4.2
## Version: 1.4.3
## Notes: Contains layouts from NoobTacoUI
## RequiredDeps: ElvUI
## DefaultState: enabled
Expand Down
22 changes: 11 additions & 11 deletions modules/SimpleRareElite/SimpleRareElite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ local function SetSimpleRareElite(Texture)
SimpleRareElite:ClearAllPoints()

-- Modern
SimpleRareElite:SetSize(100, 100)
SimpleRareElite:SetPoint("TOPRIGHT", TargetFrame, "TOPRIGHT", 36, 8)
SimpleRareElite:SetSize(100, 85)
SimpleRareElite:SetPoint("TOPRIGHT", TargetFrame, "TOPRIGHT", 35, 12)

SimpleRareElite:Show()
end
Expand Down Expand Up @@ -58,15 +58,15 @@ local function CreateSimpleRareElite()
local TargetClass =
UnitIsPlayer("target") and select(2, UnitClass("target")) or UnitClassification("target")

if TargetClass == "worldboss" then
SetSimpleRareElite("worldboss.tga")
elseif TargetClass == "elite" then
SetSimpleRareElite("elite.tga")
elseif TargetClass == "rare" then
SetSimpleRareElite("rare.tga")
elseif TargetClass == "rareelite" then
SetSimpleRareElite("rareelite.tga")
end
if TargetClass == "worldboss" then
SetSimpleRareElite("worldboss_df.tga")
elseif TargetClass == "elite" then
SetSimpleRareElite("elite_df.tga")
elseif TargetClass == "rare" then
SetSimpleRareElite("rare_df.tga")
elseif TargetClass == "rareelite" then
SetSimpleRareElite("rare_df.tga")
end
end
end
)
Expand Down

0 comments on commit 7ce83ff

Please sign in to comment.