Skip to content

Commit bc0c4d3

Browse files
committed
TWW 110000
1 parent bb62027 commit bc0c4d3

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

MoveEmAll.toc

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
## Interface: 100207
1+
## Interface: 110002, 110000
22
## Title: Move 'em All
3-
## Version: 2.1.6
3+
## Version: 2.1.7
44
## IconTexture: Interface/Buttons/JumpUpArrow
55
## Notes: One-click mass move all items with the same ID to the bank or other locations.
6-
## Author: Mot
7-
8-
# Dependencies:
9-
# OptionalDeps:
10-
# LoadWith:
11-
# LoadOnDemand:
12-
6+
## Author: Mot (@6mot, @tflo)
137
# X-Wago-ID:
148
## X-Curse-Project-ID: 860446
15-
9+
## X-Category: Bags, Utility, Miscellaneous
10+
## X-License: GPLv3
11+
## X-Localizations: enUS
1612
## SavedVariables: mea_database
1713
# SavedVariablesPerCharacter:
1814

@@ -27,7 +23,7 @@ main.lua
2723

2824
# License ======================================================================
2925
#
30-
# Copyright © 2023 Thomas Floeren
26+
# Copyright © 2023-2024 Thomas Floeren
3127
#
3228
# This program is free software: you can redistribute it and/or modify it under
3329
# the terms of the GNU General Public License as published by the Free Software

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
#### 2.1.7 (2024-07-24)
2+
3+
- Should now work with TWW bank (normal and reagent). Cannot test with Warband Bank as it is currently unavailable in my region.
4+
- Guild bank is fine too.
5+
- More tests will follow.
6+
- toc updated for TWW 110000.
7+
18
#### 2.1.6 (2024-05-08)
29

310
- toc bump only (100207). Addon update will follow as needed.

main.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ local function use_items(bag, item)
145145
C_TimerAfter(wait, function()
146146
-- We *have* to check here again, since target frame can be closed while there are still timers in the queue.
147147
if not safe_to_run() then return end
148-
C_ContainerUseContainerItem(bag, slot, nil, to_reabank)
148+
C_ContainerUseContainerItem(bag, slot, nil, nil, to_reabank)
149149
end)
150150
else
151-
C_ContainerUseContainerItem(bag, slot, nil, to_reabank)
151+
C_ContainerUseContainerItem(bag, slot, nil, nil, to_reabank)
152152
end
153153
count = count + 1
154154
end

0 commit comments

Comments
 (0)