Comparer les révisions

...

4 Révisions
1.2 ... master

Auteur SHA1 Message Date
Albirew 85db06d991 added specific TOC for vanilla and wrath
followed recomendations from KVLtv
2024-01-07 22:44:53 +01:00
Albirew a487c4ced4 bumped version 2024-01-07 22:42:41 +01:00
Albirew f42d9a11f3 added compatibility for WotLK (by KVLtv) 2024-01-07 22:42:21 +01:00
Albirew 7feded8980 fixed LUA error when alt clicking from containers (by KVLtv) 2024-01-07 22:41:40 +01:00
4 fichiers modifiés avec 104 ajouts et 5 suppressions

Voir le fichier

@ -2,7 +2,7 @@
## Title: AuctionLite-classic
## Notes: A lightweight addon that tracks auction house data and improves the auction house interface.
## Author: merial.kilrogg@gmail.com
## Version: 1.2
## Version: 1.3
## OptionalDeps: Ace3
## SavedVariables: AuctionLiteDB
## X-Category: Interface Enhancements

Voir le fichier

@ -0,0 +1,46 @@
## Interface: 11500
## Title: AuctionLite-classic
## Notes: A lightweight addon that tracks auction house data and improves the auction house interface.
## Author: merial.kilrogg@gmail.com
## Version: 1.3
## OptionalDeps: Ace3
## SavedVariables: AuctionLiteDB
## X-Category: Interface Enhancements
embeds.xml
Locale\enUS.lua
Locale\frFR.lua
Locale\deDE.lua
Locale\esES.lua
Locale\itIT.lua
Locale\koKR.lua
Locale\ptBR.lua
Locale\ruRU.lua
Locale\zhCN.lua
Locale\zhTW.lua
AuctionLite.lua
AuctionFrame.lua
Config.lua
ListBox.lua
Templates.xml
BuyFrame.lua
BuyFrame.xml
SellFrame.lua
SellFrame.xml
CancelAuctions.lua
CreateAuctions.lua
QueryAuctions.lua
Disenchant.lua
External.lua
History.lua
Tooltip.lua
Util.lua

46
AuctionLite-classic_Wrath.toc Fichier normal
Voir le fichier

@ -0,0 +1,46 @@
## Interface: 30403
## Title: AuctionLite-classic
## Notes: A lightweight addon that tracks auction house data and improves the auction house interface.
## Author: merial.kilrogg@gmail.com
## Version: 1.3
## OptionalDeps: Ace3
## SavedVariables: AuctionLiteDB
## X-Category: Interface Enhancements
embeds.xml
Locale\enUS.lua
Locale\frFR.lua
Locale\deDE.lua
Locale\esES.lua
Locale\itIT.lua
Locale\koKR.lua
Locale\ptBR.lua
Locale\ruRU.lua
Locale\zhCN.lua
Locale\zhTW.lua
AuctionLite.lua
AuctionFrame.lua
Config.lua
ListBox.lua
Templates.xml
BuyFrame.lua
BuyFrame.xml
SellFrame.lua
SellFrame.xml
CancelAuctions.lua
CreateAuctions.lua
QueryAuctions.lua
Disenchant.lua
External.lua
History.lua
Tooltip.lua
Util.lua

Voir le fichier

@ -953,7 +953,7 @@ function AuctionLite:BagClickSell(container, slot)
ClearCursor();
ClickAuctionSellItemButton();
ClearCursor();
PickupContainerItem(container, slot);
C_Container.PickupContainerItem(container, slot);
ClickAuctionSellItemButton();
end
end
@ -973,9 +973,16 @@ function AuctionLite:CreateSellFrame()
SellPerItemButtonText:SetText(L["per item"]);
SellPerStackButtonText:SetText(L["per stack"]);
SellShortAuctionButtonText:SetText(L["%dh"]:format(2));
SellMediumAuctionButtonText:SetText(L["%dh"]:format(8));
SellLongAuctionButtonText:SetText(L["%dh"]:format(24));
local version, major, minor = strmatch(GetBuildInfo(), '([%d]*)%.([%d]*)%.([%d]*)')
if version >= "3" then
SellShortAuctionButtonText:SetText(L["%dh"]:format(12));
SellMediumAuctionButtonText:SetText(L["%dh"]:format(24));
SellLongAuctionButtonText:SetText(L["%dh"]:format(48));
else
SellShortAuctionButtonText:SetText(L["%dh"]:format(2));
SellMediumAuctionButtonText:SetText(L["%dh"]:format(8));
SellLongAuctionButtonText:SetText(L["%dh"]:format(24));
end
-- Set button text and adjust arrows.
SellItemNameButton:SetText(L["Competing Auctions"]);