Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
bd1abc7
Create README.md
ScottIngram Mar 18, 2023
856e0ce
fix for issue #1 - errors when empty flyouts exist on bars
ScottIngram Mar 19, 2023
b017a22
FIX for fix for issue #1 - oops, left in a debug clause
ScottIngram Mar 19, 2023
7549885
fix for issue #3 - icon selection panel throws error when scrolling
ScottIngram Mar 20, 2023
b11264f
fix for issue #5 - flyouts don't turn on/off when the user turns its …
ScottIngram Apr 4, 2023
21aadd6
fix for issue #7 - openers on the primary action bar vanish
ScottIngram Apr 8, 2023
a90dd81
fix for issue #7 - openers on the primary action bar vanish - addendu…
ScottIngram Apr 8, 2023
d835a34
re-fix for issue #7 and issue #9 - openers on the primary action bar …
ScottIngram Apr 9, 2023
5b7792b
Merge branch 'fix_issue1_empties'
ScottIngram Apr 9, 2023
e619afa
Merge branch 'fix_issue3_icon_selector'
ScottIngram Apr 9, 2023
df5b636
throttle OnUpdate because it fires as often as FPS and is very resour…
ScottIngram Apr 10, 2023
d697e82
Merge branch 'fix_issue_11_on_update'
ScottIngram Apr 10, 2023
a6dfba0
oops, left in a debug statement
ScottIngram Apr 10, 2023
82c4531
Merge branch 'fix_issue_11_on_update'
ScottIngram Apr 10, 2023
eca5bbc
import Ace libs to support config switching
ScottIngram Apr 18, 2023
dd4ac05
increase max buttons per flyout to 20 instead of 10
ScottIngram Apr 18, 2023
6ee337b
within any profile shared by multiple toons, let them share the flyou…
ScottIngram Apr 18, 2023
9374654
hide any buttons that a toons can't cast/use
ScottIngram Apr 18, 2023
762d307
I decided it was overkill to let the user swap profiles willy-nilly, …
ScottIngram Apr 18, 2023
93f0987
support macros
ScottIngram Apr 21, 2023
3a49bc8
tinkering with some version tracking ideas
ScottIngram Apr 21, 2023
d972880
throttle FloFlyoutConfigPane_OnUpdate
ScottIngram Apr 21, 2023
fd8685e
battle pets are now supported
ScottIngram Apr 25, 2023
1827421
battle pets debugging the problem that happens when one flyout mixes …
ScottIngram Apr 26, 2023
6f89487
battle pets are now supported - cleaned up debugging and comments
ScottIngram Apr 26, 2023
a0e42bd
Merge branch 'support_pets'
ScottIngram Apr 26, 2023
9538fda
pushing support for MACROS and PETS
ScottIngram Apr 26, 2023
16dcd38
fixed bug of missing Ace dependencies
ScottIngram Apr 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,165 changes: 854 additions & 311 deletions FloFlyout.lua

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion FloFlyout.toc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
## Notes: Create custom Flyout buttons
## OptionalDeps: ClassicUI
## Dependencies:
## SavedVariables:
## SavedVariables: FLOFLYOUT_ACCOUNT_CONFIG
## SavedVariablesPerCharacter: FLOFLYOUT_CONFIG
embeds.xml
FloFlyout.xml
12 changes: 11 additions & 1 deletion FloFlyout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@
<CheckButton name="$parentButton8" inherits="FloFlyoutButtonTemplate" id="8" />
<CheckButton name="$parentButton9" inherits="FloFlyoutButtonTemplate" id="9" />
<CheckButton name="$parentButton10" inherits="FloFlyoutButtonTemplate" id="10" />
<CheckButton name="$parentButton11" inherits="FloFlyoutButtonTemplate" id="11" />
<CheckButton name="$parentButton12" inherits="FloFlyoutButtonTemplate" id="12" />
<CheckButton name="$parentButton13" inherits="FloFlyoutButtonTemplate" id="13" />
<CheckButton name="$parentButton14" inherits="FloFlyoutButtonTemplate" id="14" />
<CheckButton name="$parentButton15" inherits="FloFlyoutButtonTemplate" id="15" />
<CheckButton name="$parentButton16" inherits="FloFlyoutButtonTemplate" id="16" />
<CheckButton name="$parentButton17" inherits="FloFlyoutButtonTemplate" id="17" />
<CheckButton name="$parentButton18" inherits="FloFlyoutButtonTemplate" id="18" />
<CheckButton name="$parentButton19" inherits="FloFlyoutButtonTemplate" id="19" />
<CheckButton name="$parentButton20" inherits="FloFlyoutButtonTemplate" id="20" />
</Frames>
<Scripts>
<OnLoad function="SpellFlyout_OnLoad"/>
Expand Down Expand Up @@ -463,7 +473,7 @@
</Layers>
<Scripts>
<OnVerticalScroll>
FauxScrollFrame_OnVerticalScroll(self, offset, GEARSET_ICON_ROW_HEIGHT, FloFlyoutConfigDialogPopup_Update);
FauxScrollFrame_OnVerticalScroll(self, offset, 36, FloFlyoutConfigDialogPopup_Update);
</OnVerticalScroll>
</Scripts>
</ScrollFrame>
Expand Down
Loading