Skip to content

Commit

Permalink
Merge pull request cdmichaelb#31 from cdmichaelb/cdmichaelb-patch-1
Browse files Browse the repository at this point in the history
Banking should work with a few other fixes
  • Loading branch information
cdmichaelb authored Jul 25, 2020
2 parents 303af9f + b6bb353 commit 130d255
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 20 deletions.
24 changes: 7 additions & 17 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,12 @@
lightweight tag b6b6e5a314c6cb56c537fe6b7fadad6236137884 1.2.3
lightweight tag 303af9fa32bd39460c6f33dece77a5fb82b5e5f1 1.2.9
Author: GitHub <[email protected]>
Date: Tue May 5 22:58:15 2020 -0700
Date: Tue Jul 7 15:04:04 2020 -0700

commit 989ce65d3276c2b0eac3819f7b9988c651de9ce7
Author: Llamatron2112 <[email protected].com>
Date: Wed May 6 05:33:07 2020 +0200
commit 303af9fa32bd39460c6f33dece77a5fb82b5e5f1
Author: cdmichaelb <broetjem@gmail.com>
Date: Tue Jul 7 15:04:04 2020 -0700

parsing french tooltips for duration fix
Update Outfitter.toc

I haven't tested cUseTooltipLineFormat and cUseDurationTooltipLineFormat2, but there should be spaces around the colon (and it's the case of several items I have which match cUseDurationTooltipLineFormat).
Also for cUseDurationTooltipLineFormat, french for "seconds" is "secondes", but I have only seen the short "sec." on my items.

commit 989ce65d3276c2b0eac3819f7b9988c651de9ce7
Author: Llamatron2112 <[email protected]>
Date: Wed May 6 05:33:07 2020 +0200

parsing french tooltips for duration fix

I haven't tested cUseTooltipLineFormat and cUseDurationTooltipLineFormat2, but there should be spaces around the colon (and it's the case of several items I have which match cUseDurationTooltipLineFormat).
Also for cUseDurationTooltipLineFormat, french for "seconds" is "secondes", but I have only seen the short "sec." on my items.
update toc

5 changes: 4 additions & 1 deletion Outfitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,9 @@ Outfitter.cShapeshiftIDInfo = {

-- Rogue
[1784] = {ID = "Stealth"},
[1785] = {ID = "Stealth"},
[1786] = {ID = "Stealth"},
[1787] = {ID = "Stealth"}
}

function Outfitter:ToggleOutfitterFrame()
Expand Down Expand Up @@ -4111,7 +4114,7 @@ function Outfitter:GetPlayerAuraStates()
end

while true do
local vName, _, vTexture, _, _, _, _, _, _, _, vSpellID = UnitBuff("player", vBuffIndex)
local vName, vTexture, _, _, _, _, _, _, _, vSpellID = UnitBuff("player", vBuffIndex) --local vName, _, vTexture, _, _, _, _, _, _, _, vSpellID = UnitBuff("player", vBuffIndex)

if not vName then
return self.AuraStates
Expand Down
2 changes: 1 addition & 1 deletion Outfitter.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Interface: 11305
## Author: Restoshaman (Skeram)
## Title: Outfitter [Classic]
## Version: 1.2.9
## Version: 1.3.0
## Notes: Clothing and weapon management and automated equipment changes. Updated for classic by Miv(aka Restoshaman) of <Onslaught>.
## OptionalDeps:
## RequiredDeps:
Expand Down
7 changes: 6 additions & 1 deletion OutfitterEquipment.lua
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,12 @@ function Outfitter._EquipmentChanges:execute(emptyBagSlots, expectedInventoryCac

-- Remove the item
else
Outfitter:UnequipSlotID(equipmentChange.SlotID, emptyBagSlots, expectedInventoryCache)
--Outfitter:UnequipSlotID(equipmentChange.SlotID, emptyBagSlots, expectedInventoryCache)
if equipmentChange.SlotID ~= nil then
Outfitter:UnequipSlotID(equipmentChange.SlotID, emptyBagSlots, expectedInventoryCache)
else
Outfitter:UnequipSlotID(equipmentChange.FromLocation, emptyBagSlots, expectedInventoryCache)
end
end
end

Expand Down

0 comments on commit 130d255

Please sign in to comment.