r710

Details

  • Filename
    Ace3-r710.zip
  • Uploaded by
  • Uploaded
    Dec 19, 2008
  • Size
    130.50 KB
  • Downloads
    294
  • MD5
    f50a4e803a282d25f059d4718be4598d

Supported WoW Retail Versions

  • 3.0.3

Changelog

------------------------------------------------------------------------
r710 | nevcairiel | 2008-12-19 10:14:39 +0000 (Fri, 19 Dec 2008) | 1 line
Changed paths:
   A /trunk/.docmeta
   M /trunk/AceAddon-3.0/AceAddon-3.0.lua
   M /trunk/AceBucket-3.0/AceBucket-3.0.lua
   M /trunk/AceComm-3.0/AceComm-3.0.lua
   M /trunk/AceConfig-3.0/AceConfig-3.0.lua
   M /trunk/AceConfig-3.0/AceConfigCmd-3.0/AceConfigCmd-3.0.lua
   M /trunk/AceConfig-3.0/AceConfigDialog-3.0/AceConfigDialog-3.0.lua
   M /trunk/AceConfig-3.0/AceConfigRegistry-3.0/AceConfigRegistry-3.0.lua
   M /trunk/AceConsole-3.0/AceConsole-3.0.lua
   M /trunk/AceDB-3.0/AceDB-3.0.lua
   M /trunk/AceDBOptions-3.0/AceDBOptions-3.0.lua
   M /trunk/AceEvent-3.0/AceEvent-3.0.lua
   M /trunk/AceGUI-3.0/AceGUI-3.0.lua
   M /trunk/AceHook-3.0/AceHook-3.0.lua
   M /trunk/AceLocale-3.0/AceLocale-3.0.lua
   M /trunk/AceSerializer-3.0/AceSerializer-3.0.lua
   M /trunk/AceTab-3.0/AceConfigTab-3.0.lua
   M /trunk/AceTab-3.0/AceTab-3.0.lua
   M /trunk/AceTab-3.0/AceTab-3.0.xml
   M /trunk/AceTimer-3.0/AceTimer-3.0.lua

Add .docmeta file and luadoc file headers to all files
------------------------------------------------------------------------
r709 | antiarc | 2008-10-26 01:03:36 +0000 (Sun, 26 Oct 2008) | 1 line
Changed paths:
   M /trunk/AceGUI-3.0/widgets/AceGUIWidget-TreeGroup.lua

Adds a .visible flag to tree group entries; this allows for tree filtering without actually rebuilding the tree, preventing table churn. A tree branch will only show if there is at least one leaf node (without children) with .visible ~= false (true and nil both cause it to be shown, presuming that "true" means explicitly show, and "nil" means that there is no expressed show preference). To use filtering, :SetTree must be called with an additional boolean parameter; :SetTree(treeTable, true) will cause filtering to happen, whereas :SetTree(treeTable) or :SetTree(treeTable, false) will produce no filtering. This allows for easy switching between filtered/non-filtered modes, and preserves the widget's performance and default behavior for all non-filtered cases.
------------------------------------------------------------------------