Browse Source

widen auctioning price inputs

dev
Jørgen Lien Sellæg 4 months ago
parent
commit
f2fd4df956
  1. 2
      TradeSkillMaster/TradeSkillMaster.toc
  2. 4
      TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc
  3. 6
      TradeSkillMaster_Auctioning/modules/Options.lua

2
TradeSkillMaster/TradeSkillMaster.toc

@ -2,7 +2,7 @@
## Title: |cff00fe00TradeSkillMaster: Revived|r ## Title: |cff00fe00TradeSkillMaster: Revived|r
## Notes: Core addon for the TradeSkillMaster suite, revived for Wrath of the Lich King. Does nothing without modules installed. ## Notes: Core addon for the TradeSkillMaster suite, revived for Wrath of the Lich King. Does nothing without modules installed.
## Author: Sapu94, Bart39, Gnomezilla [Warmane-Icecrown(A)], BlueAo [Warmane], andrew6180, Yoshiyuka, DimaSheiko, and other contributors... ## Author: Sapu94, Bart39, Gnomezilla [Warmane-Icecrown(A)], BlueAo [Warmane], andrew6180, Yoshiyuka, DimaSheiko, and other contributors...
## Version: 2.3.39 ## Version: 2.3.40
## SavedVariables: TradeSkillMasterAppDB, AscensionTSMDB ## SavedVariables: TradeSkillMasterAppDB, AscensionTSMDB
## OptionalDeps: AccurateTime, Ace3, LibDataBroker-1.1, LibDBIcon-1.0, LibExtraTip, TipHelper, LibParse, LibCompress, LibGraph-2.0, SharedMedia, TheUndermineJournal, TheUndermineJournalGE ## OptionalDeps: AccurateTime, Ace3, LibDataBroker-1.1, LibDBIcon-1.0, LibExtraTip, TipHelper, LibParse, LibCompress, LibGraph-2.0, SharedMedia, TheUndermineJournal, TheUndermineJournalGE
## X-Embeds: AccurateTime, Ace3, LibDataBroker-1.1, LibDBIcon-1.0, LibExtraTip, TipHelper, LibParse, LibCompress, LibGraph-2.0 ## X-Embeds: AccurateTime, Ace3, LibDataBroker-1.1, LibDBIcon-1.0, LibExtraTip, TipHelper, LibParse, LibCompress, LibGraph-2.0

4
TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc

@ -2,10 +2,10 @@
## Title: |cff00ff00TradeSkillMaster_AuctionDB|r ## Title: |cff00ff00TradeSkillMaster_AuctionDB|r
## Notes: Stores auction house data and calculates market prices. ## Notes: Stores auction house data and calculates market prices.
## Author: Sapu94, Bart39 ## Author: Sapu94, Bart39
## Version: 2.3.39 ## Version: 2.3.40
## SavedVariables: AscensionTSM_AuctionDB ## SavedVariables: AscensionTSM_AuctionDB
## Dependency: TradeSkillMaster ## Dependency: TradeSkillMaster
## X-Curse-Packaged-Version: 2.3.39 ## X-Curse-Packaged-Version: 2.3.40
## X-Curse-Project-Name: TradeSkillMaster_AuctionDB ## X-Curse-Project-Name: TradeSkillMaster_AuctionDB
## X-Curse-Project-ID: tradeskillmaster_auctiondb ## X-Curse-Project-ID: tradeskillmaster_auctiondb
## X-Curse-Repository-ID: wow/tradeskillmaster_auctiondb/mainline ## X-Curse-Repository-ID: wow/tradeskillmaster_auctiondb/mainline

6
TradeSkillMaster_Auctioning/modules/Options.lua

@ -548,7 +548,7 @@ function Options:DrawOperationPost(container, operationName)
type = "EditBox", type = "EditBox",
label = L["Minimum Price"], label = L["Minimum Price"],
settingInfo = { operation, "minPrice" }, settingInfo = { operation, "minPrice" },
relativeWidth = 0.49, relativeWidth = 1,
acceptCustom = true, acceptCustom = true,
disabled = operation.relationships.minPrice, disabled = operation.relationships.minPrice,
tooltip = L["The lowest price you want an item to be posted for. Auctioning will not undercut auctions below this price."], tooltip = L["The lowest price you want an item to be posted for. Auctioning will not undercut auctions below this price."],
@ -566,7 +566,7 @@ function Options:DrawOperationPost(container, operationName)
type = "EditBox", type = "EditBox",
label = L["Maximum Price"], label = L["Maximum Price"],
settingInfo = { operation, "maxPrice" }, settingInfo = { operation, "maxPrice" },
relativeWidth = 0.49, relativeWidth = 1,
acceptCustom = true, acceptCustom = true,
disabled = operation.relationships.maxPrice, disabled = operation.relationships.maxPrice,
tooltip = L["The maximum price you want an item to be posted for. Auctioning will not undercut auctions above this price."], tooltip = L["The maximum price you want an item to be posted for. Auctioning will not undercut auctions above this price."],
@ -584,7 +584,7 @@ function Options:DrawOperationPost(container, operationName)
type = "EditBox", type = "EditBox",
label = L["Normal Price"], label = L["Normal Price"],
settingInfo = { operation, "normalPrice" }, settingInfo = { operation, "normalPrice" },
relativeWidth = 0.49, relativeWidth = 1,
acceptCustom = true, acceptCustom = true,
disabled = operation.relationships.normalPrice, disabled = operation.relationships.normalPrice,
tooltip = L["Price to post at if there are none of an item currently on the AH."], tooltip = L["Price to post at if there are none of an item currently on the AH."],

Loading…
Cancel
Save