Fortress
Fortress is a display addon for LDB data feeds. It shows each plugin as a block, which is freely movable and can stick to other blocks. Blocks can be unstuck by holding the ctrl-key while dragging them.
Commands:
Use /fortress or /ft to open the configuration (also accessible via Main Menu -> Interface -> Addons -> Fortress).
Configuration:
The configuration has two parts: The master settings and the individual plugin settings. At first each option is controlled by the master settings and therefore it has the same effect for each plugin. Once you change something individually for one plugin, this setting is no longer controlled by the master mode (for this plugin).
You can select the mode for each option at the "Select master" tab in each plugin's config screen.
Bug Reports:
To report a bug, please open a ticket here.
self:RegisterEvent("PET_BATTLE_OPENING_START")
self:RegisterEvent("PET_BATTLE_OVER")
function Fortress:PET_BATTLE_OPENING_START()
for _, f in pairs(frames) do
frame:Hide()
end
end
function Fortress:PET_BATTLE_OVER()
for _, f in pairs(frames) do
frame:Show()
end
end
Sinca - can you confirm the line numbers? When editing Core.lua from the zip file downloaded, line 615 says:
self:UpdateOptionsDbRef()
In the function block: self:UpdateOptionsDbRef()
Line 696 also is not after a trio of end statements. However, line 682 is right after a trio of end statements, right before the Object Handling section.
Thanks!
I looked over the functions in the areas where you specified and figured that the first 2 lines went inside the Fortress:OnEnable function.
I then added the 2 mini functions below the Fortess:PLAYER-REGEN_ENABLED() function, but changed them to be
function Fortress:PET_BATTLE_OPENING_START()
Fortress:HideAllObjects()
end
function Fortress:PET_BATTLE_OVER()
Fortress:ShowAllObjects()
end
Why would you want to replace it? This addon still works great. I've never had a problem with it.
The WowAce website lists this addon as abandoned. Anyone have any suggestions for a good replacement?
Any news on an update for this great addon?
Broker: TicketStatus addon doesnt seems to work with Fortress addon. It works with bazooka. Is it a fault in TicketStatus or in Fortress?
http://www.wowinterface.com/downloads/fileinfo.php?id=20888
Here is how the plugin and its tooltip appear on the Bazooka display addon: http://i.imgur.com/qSgUB.jpg
And here it is in Bazooka's list of plugins:
http://i.imgur.com/Avl3p.jpg
In case anyone is still wondering, this version of Fortress still works fine after all this time.
I've never had a single error that implicated Fortress, and I play a lot.
In my case I stuck one Plugin A to Plugin B when Plugin C was disabled and Plugin C had the same position. Now, when both are enabled they are at the same position... very annoying...
I think you split them with some modifier key. like holding alt or shift or ctrl or something when moving the block. Don't have wow up atm, but this is how i remember it.
Just wondering if you found a solution yet. I just had this happen and can't get to most of my blocks now.
Thanks!
Edit: I found a workaround, but having a "reset to center" option would be very nice :)
I'm typing in a name, like "bb01", pressing OK and have the check box to show the names on.
*the Alpha seems to change from about 75% to 100% every millisecond; as I move the cursor around (inside the box) it'll achieve 100% opaqueness in certain areas and strobe-light in others.
There are two ways to hide a block, a) really hide it or b) just make it invisible. With b) things like 'show on mouseover' still work, a really hidden block does not receive such input events.
The name of a block is composed by the prefix LegoFortress followed by the name of the DataBroker the block holds. So for Broker_Clock, the associated block would be LegoFortressBroker_Clock. You can get the name of a block by holding the mouse over it and executing the following command (e.g. in a macro per keybinding):
/dump GetMouseFocus():GetName()
Here are the commands to hide:
a)
or b)
To show a block again use a)
or b)