WoWInterface SVN BuyDropper

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 5 to Rev 6
    Reverse comparison

Rev 5 → Rev 6

trunk/BuyDropper/BuyDropper.xml
166,7 → 166,7
</Layer>
</Layers>
<Frames>
<Frame name="$parentRefillOptions" inherits="OptionFrameBoxTemplate">
<Frame name="$parentRefillOptions" inherits="OptionsBoxTemplate">
<Size x="200" y="132"/>
<Anchors>
<Anchor point="TOPLEFT">
210,7 → 210,7
</OnLoad>
</Scripts>
</Frame>
<Frame name="$parentDropperOptions" inherits="OptionFrameBoxTemplate">
<Frame name="$parentDropperOptions" inherits="OptionsBoxTemplate">
<Size x="200" y="117"/>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="$parentRefillOptions" relativePoint="BOTTOMLEFT">
253,7 → 253,7
</OnLoad>
</Scripts>
</Frame>
<Frame name="$parentTrackingList" inherits="OptionFrameBoxTemplate">
<Frame name="$parentTrackingList" inherits="OptionsBoxTemplate">
<Size x="225" y="269"/>
<Anchors>
<Anchor point="TOPRIGHT">
313,7 → 313,7
</OnLoad>
</Scripts>
</Frame>
<Frame name="$parentOperations" inherits="OptionFrameBoxTemplate">
<Frame name="$parentOperations" inherits="OptionsBoxTemplate">
<Size x="425" y="80"/>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="$parentDropperOptions" relativePoint="BOTTOMLEFT">
trunk/BuyDropper/BuyDropper.toc
1,12 → 1,12
## Interface: 20300
## Interface: 30000
## Author: Cogwheel
## Title: BuyDropper
## Version: 0.9B2-2.3
## Version: 0.9B3
## Notes: Keeps you stocked with items from merchants or your bank.
## X-Website: http://cogwheel.wowinterface.com
## X-Website: http://cogwheel.info
## X-Category: Inventory
## SavedVariables: BuyDropperDB
## OptionalDeps: CogsBagSpace
## OptionalDeps: CogsBagSpace, Ace2
 
Ace2\Ace2.xml
CogsBagSpace\CogsBagSpace.lua
trunk/BuyDropper/readme.html
111,7 → 111,7
 
<body>
<h1>BuyDropper</h1>
<p>By Cogwheel — v0.9B2-2.3<br />
<p>By Cogwheel — v0.9B3<br />
Inspired by FreeRefills by Kyahx </p>
<p>BuyDropper keeps a list of items to purchase automatically from vendors.</p>
<p>Please visit <a href="http://cogwheel.wowinterface.com">Cogwheel’s Workshop</a> for updates, bug reports, feature requests, etc. </p>
267,10 → 267,15
<li>The tracking list is not functional (hence none of the tracking list controls are either).</li>
</ul>
</li>
<li>BuyDropper does not yet withdraw items from the bank </li>
<li>BuyDropper does not yet withdraw items from the bank</li>
<li>Vendor items with limited quantity are not handled properly </li>
</ul>
<p>Please visit <a href="http://cogwheel.wowinterface.com">Cogwheel’s Workshop</a> if you have any suggestions or bug reports, and to see what is in store for the future.</p>
<h2><a name="changes" id="changes"></a>Changes</h2>
<h4>v0.9B3</h4>
<ul>
<li>Updated for 3.0.2</li>
</ul>
<h4>v0.9B2-2.3</h4>
<ul>
<li>Updated Ace libraries. You no longer need other Ace mods to use this. </li>
trunk/BuyDropper/BuyDropperOptions.lua
91,30 → 91,30
do
local checked = profile.vendor.enabled
if checked then
OptionsFrame_EnableCheckBox(BuyDropperConfirmCheck)
BlizzardOptionsPanel_CheckButton_Enable(BuyDropperConfirmCheck)
else
OptionsFrame_DisableCheckBox(BuyDropperConfirmCheck)
BlizzardOptionsPanel_CheckButton_Disable(BuyDropperConfirmCheck)
end
end
 
do
local unchecked = not profile.vendor.enabled and not profile.bank
if not unchecked then
OptionsFrame_EnableCheckBox(BuyDropperOverstockCheck)
BlizzardOptionsPanel_CheckButton_Enable(BuyDropperOverstockCheck)
else
OptionsFrame_DisableCheckBox(BuyDropperOverstockCheck)
BlizzardOptionsPanel_CheckButton_Disable(BuyDropperOverstockCheck)
end
end
 
do
checked = profile.dropper.enabled
if checked then
OptionsFrame_EnableSlider(BuyDropperPositionSlider)
BlizzardOptionsPanel_Slider_Enable(BuyDropperPositionSlider)
BuyDropperPositionSlider:SetValue(profile.dropper.position)
OptionsFrame_EnableCheckBox(BuyDropperLabelCheck)
BlizzardOptionsPanel_CheckButton_Enable(BuyDropperLabelCheck)
else
OptionsFrame_DisableSlider(BuyDropperPositionSlider)
OptionsFrame_DisableCheckBox(BuyDropperLabelCheck)
BlizzardOptionsPanel_Slider_Disable(BuyDropperPositionSlider)
BlizzardOptionsPanel_CheckButton_Disable(BuyDropperLabelCheck)
end
end
end