Skip to content

Commit 80143f3

Browse files
author
Alar of Runetotem
committed
Version 2.14.1
1 parent b62e7ae commit 80143f3

File tree

12 files changed

+20
-14
lines changed

12 files changed

+20
-14
lines changed

ILD-Arkinventory/ILD-Arkinventory.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-Arkinvenory folder or Bags-Arkinventory.lua file
44
## Author: Alar of Daggerspine

ILD-Baggins/ILD-Baggins.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-Baggins folder
44
## Author: Alar of Daggerspine

ILD-Bagnon/ILD-Bagnon.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-Bagnon folder
44
## Author: Alar of Daggerspine

ILD-Baudbag/ILD-Baudbag.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-BaudBag folder
44
## Author: Alar of Daggerspine

ILD-Blizzard/ILD-Blizzard.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: ItemLevelDisplay-Blizzard
33
## Notes: Displays item's levels in Blizzard bags
44
## Notes-itIT: Mostra il livello degli items nelle borse standard

ILD-Combuctor/ILD-Combuctor.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-Combuctor folder
44
## Author: Alar of Daggerspine

ILD-Litebag/ILD-Litebag.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-Litebag folder
44
## Author: Alar of Daggerspine

ILD-Onebag3/ILD-Onebag3.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: Z Deleted Addon
33
## Notes: Please Remove ILD-Onebag3 folder
44
## Author: Alar of Daggerspine

ItemLevelDisplay.lua

+6-5
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ local slots
215215
local islots
216216
local useless={}
217217
local flyouts={}
218-
local gframe=false
218+
local gframe
219219
local gred=false
220220
local gblue=false
221221
local gyellow=false
@@ -634,7 +634,7 @@ function addon:EquipmentFlyout_CreateButton(...)
634634
--]]
635635
end
636636

637-
function addon:EquipmentFlyout_DisplayButton(button,slot)
637+
function addon:EquipmentFlyout_DisplayButton(button,s)
638638
local location,itemid,level = button.location,nil,0;
639639
if ( not location ) then
640640
return;
@@ -644,7 +644,7 @@ function addon:EquipmentFlyout_DisplayButton(button,slot)
644644
self:paintButton('player',flyouts[id].frame)
645645
return
646646
end
647-
local key=id..tostring(slot)
647+
local key=id..tostring(s)
648648
if (flyoutDrawn[key]) then return end
649649
flyoutDrawn[key]=true
650650
if (not slots) then self:loadSlots(PaperDollItemsFrame:GetChildren()) end
@@ -654,10 +654,11 @@ function addon:EquipmentFlyout_DisplayButton(button,slot)
654654
return;
655655
end
656656
local rc
657+
itemid=nil
657658
if (voidStorage and voidSlot) then
658-
itemid=GetVoidItemInfo(tab,voidSlot)
659+
if (tab) then itemid=GetVoidItemInfo(tab,voidSlot) end
659660
elseif (bags and slot) then
660-
itemid=C_Container.GetContainerItemLink(bag,slot)
661+
if bag then itemid=C_Container.GetContainerItemLink(bag,slot) end
661662
elseif (player and slot) then
662663
itemid=GetInventoryItemLink("player",slot)
663664
else

ItemLevelDisplay.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110005,110005
1+
## Interface: 110007, 110100
22
## Title: ItemLevelDisplay
33
## Notes: Displays item's levels in paperdoll and optionally bags
44
## Notes-itIT: Mostra il livello degli items nella schermata del personaggio e opzionalmente nelle borse

RelNotes.json

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
{
99
"tag": "Toc",
1010
"info": "11.0.7"
11+
},
12+
{
13+
"tag": "Feature",
14+
"info": "Version 2.14.1"
1115
}
1216
]
1317
},

RelNotes.lua

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Bags management is implemented via separated addon!! (ILD-<bagmanager name>)
3131
self:HF_Paragraph('Release Notes')
3232
self:RelNotes(2,14,1,[[
3333
Toc: 11.0.7
34+
Feature: Version 2.14.1
3435
]])
3536
self:RelNotes(2,14,0,[[
3637
Fix: Removed baggins and BaudBag

0 commit comments

Comments
 (0)