Skip to content

Commit 0aeb6fe

Browse files
committed
toc bump and changelog update
1 parent fc810ff commit 0aeb6fe

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

ChangeLog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ Coming next:
44
- Your input/suggestions welcome !
55
- See open issues for ideas https://github.com/mooreatv/NeatMinimap/issues
66

7+
v1.07.01 Nov 24th 2020
8+
- Updated for Shadowlands (toc 90002)
9+
- Fixed Issue #14
10+
711
v1.07.00 Oct 13th 2020
8-
- Updated for Shadowland prepatch 9.0.1 (toc 90001)
12+
- Updated for Shadowlands prepatch 9.0.1 (toc 90001)
913

1014
v1.06.02 July 8th 2020
1115
- Updated for Classic 1.13.5

NeatMinimap/NeatMinimap.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,11 @@ function NMM:UpdateButtons()
182182
self:Debug("ElvUI case, we'll start with fewer managed buttons")
183183
NMM.buttons = {}
184184
end
185+
if NMM.square then
186+
NMM.exclude["MinimapBorder"] = false
187+
NMM.exclude["MinimapBackdrop"] = false
188+
Minimap:SetMaskTexture("")
189+
end
185190
NMM.exclude["TimeManagerClockButton"] = not NMM.doClock
186191
NMM.exclude["MiniMapTrackingFrame"] = not NMM.doTrack
187192
for _, b in ipairs({Minimap:GetChildren()}) do
@@ -344,6 +349,9 @@ function NMM:CreateOptionsPanel()
344349
p:addText(L["These options let you control the behavior of NeatMinimap"] .. " " .. NMM.manifestVersion ..
345350
" @project-abbreviated-hash@"):Place()
346351

352+
local makeSquare = p:addCheckBox(L["Make the minimap square"], L["Experimental minimalistic square version"])
353+
:Place(4, 20)
354+
347355
local doClock = p:addCheckBox(L["Also hide/show Clock"], L["Whether the Blizzard clock should also be hidden/shown"])
348356
:Place(4, 20)
349357
local doNight = p:addCheckBox(L["Also hide/show Day/Night (classic) Calendar (BfA) indicator"],
@@ -396,6 +404,7 @@ function NMM:CreateOptionsPanel()
396404
doGarrison:SetChecked(NMM.doGarrison)
397405
doTrack:SetChecked(NMM.doTrack)
398406
delaySlider:SetValue(NMM.delay)
407+
makeSquare:SetValue(NMM.square)
399408
NMM:ShowButtons()
400409
end
401410

@@ -423,6 +432,7 @@ function NMM:CreateOptionsPanel()
423432
NMM:SetSaved("doGarrison", doGarrison:GetChecked())
424433
NMM:SetSaved("doTrack", doTrack:GetChecked())
425434
NMM:SetSaved("delay", delaySlider:GetValue())
435+
NMM:SetSaved("square", makeSquare:GetChecked())
426436
NMM:SetupMouseInOut()
427437
NMM:ScheduleNextCheck()
428438
end

NeatMinimap/NeatMinimap.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#@retail@
2-
## Interface: 90001
2+
## Interface: 90002
33
#@end-retail@
44
#@non-retail@
55
# ## Interface: 11305

0 commit comments

Comments
 (0)