List of commits:
Subject Hash Author Date (UTC)
feat: Group debuff indicators for readability 5cdf65d5453897d244ae1d748b8a7c37ad30555b Vladyslav Bondarenko 2021-03-02 01:44:17
feat: Group debuff indicators be33382924b3dbb9509e2f9cf263392c50daea45 Vladyslav Bondarenko 2021-02-26 09:45:53
feat: Hostile debuffs trackers 4427a83e256e142c6be5f6f57e9ec1a41a8b7007 Vladyslav Bondarenko 2021-02-26 03:43:37
fix: Improve code maintainability e0aa6e601690fba16a0952a64b7c33edfb643b2a Vladyslav Bondarenko 2021-02-24 11:02:43
feat!: Track buff stacks 7c2973fb1d0e86082a0b344654fb2849ca38c9b7 Vladyslav Bondarenko 2021-02-24 01:27:03
feat: Add more priest overlay indicators fb4c03117e3287fddc91b593f409f990e3947223 Vladyslav Bondarenko 2021-02-20 23:52:56
feat!: Add holy priest overlay a33b2c323a1c9240b5abdb53a0c9758eb591aac8 Vladyslav Bondarenko 2021-02-20 16:06:00
fix!: Fix logical error to make Beacon appear correctly fa2446df85c2be3863dc03f99f63ab1444b97b0c Vladyslav Bondarenko 2021-02-18 11:29:59
feat!: Add Beacon of Light indicator 7121f0bba2055a652c607195dc51a1aa343ad757 Vladyslav Bondarenko 2021-02-13 22:34:41
feat: Automatically assign paladin party role cc3229299925367ed62dbbc0d4517430a3f12aea Vladyslav Bondarenko 2021-02-09 14:45:29
fix: Add backup font 0ebd17578b5dfc0cb47eb63860416536b93d4aaf Vladyslav Bondarenko 2021-02-08 09:08:44
feat: Add Inquisition buff indicator ca59d47fd34e155a6bc74805d980db3f6ae7b20d Vladyslav Bondarenko 2021-02-05 10:59:51
feat: Hide native spell activation overlay ddcc371861c562e3ea619510b0770259014be5df Vladyslav Bondarenko 2021-02-05 06:40:44
feat: Hide native paladin holy power indicator 1732d87a2bf90a3f53efeba8d7e815ba24320ea1 Vladyslav Bondarenko 2021-02-04 12:03:08
fix: Render decay degree correctly out of combat 893d43fe8418e5be5ed226fd5a0e484b65f34f91 Vladyslav Bondarenko 2021-02-02 16:20:19
fix: Apply Blessed Life indicator to holy spec only 1aef6bf1d31d5fccfafcc16d86c175844ed4def9 Vladyslav Bondarenko 2021-02-01 10:00:18
feat!: Track Blessed Life effect da49631eb74530816c74b17b5281087173414894 Vladyslav Bondarenko 2021-02-01 02:45:53
feat: Minor addition 3125daeab3730d2b9f0dde58e4ce747c8c262d24 Vladyslav Bondarenko 2021-01-27 03:28:48
fix: Adjust position of general indicators b1adb3cd69c9355552ac0faece7c7668b9771de6 Vladyslav Bondarenko 2021-01-26 20:26:16
fix: Render holy power decay smoothly 729371cd9355fdd0ac178a0e11f479ad0bea3ae3 Vladyslav Bondarenko 2021-01-26 04:41:18
Commit 5cdf65d5453897d244ae1d748b8a7c37ad30555b - feat: Group debuff indicators for readability
Author: Vladyslav Bondarenko
Author date (UTC): 2021-03-02 01:44
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-03-02 01:44
Parent(s): be33382924b3dbb9509e2f9cf263392c50daea45
Signer:
Signing key:
Signing status: N
Tree: 5dc96149ade4db30987587337f7280b705796356
File Lines added Lines deleted
daybreak.lua 85 144
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index 5f94fc2..3a148de)
... ... code line sorting.
146 146 @tparam string localizedSpellName aura name to track @tparam string localizedSpellName aura name to track
147 147 @tparam string buttonName @tparam string buttonName
148 148 @tparam frame parentFrame @tparam frame parentFrame
149 @tparam string filter optional filter keywords forwarded to UnitAura function
150 @tparam number size optional button artwork size pixels
151 @tparam number size optional button artwork padding pixels
149 152 @treturn frame newly allocated button frame instance @treturn frame newly allocated button frame instance
150 153 ]] ]]
151 local function createButton(column, row, localizedSpellName, buttonName, parentFrame, filter)
154 local function createButton(column, row, localizedSpellName, buttonName, parentFrame,
155 filter, size, padding)
152 156 assert (buttonName ~= nil) assert (buttonName ~= nil)
153 157 assert ('string' == type(buttonName)) assert ('string' == type(buttonName))
154 158 assert (string.len(buttonName) >= 2) assert (string.len(buttonName) >= 2)
 
... ... local function createButton(column, row, localizedSpellName, buttonName, parentF
162 166 assert (string.len(localizedSpellName) <= 256) assert (string.len(localizedSpellName) <= 256)
163 167
164 168 local button = CreateFrame('BUTTON', buttonName, parentFrame) local button = CreateFrame('BUTTON', buttonName, parentFrame)
165 local padding = 4
166 local size = getDefaultButtonSize()
169 if not padding then
170 padding = 4
171 end
172 if not size then
173 size = getDefaultButtonSize()
174 end
167 175 local s = size + padding local s = size + padding
168 176 button:SetSize(size, size) button:SetSize(size, size)
169 177 button:SetPoint('BOTTOMLEFT', column * s, row * s) button:SetPoint('BOTTOMLEFT', column * s, row * s)
 
... ... Lose control indicator.
612 620 @section cyclone @section cyclone
613 621 ]] ]]
614 622
615 local function createCycloneButton(column, row, localizedSpellName, buttonDesignation, parentFrame)
616 return createButton(column, row, localizedSpellName, buttonDesignation, parentFrame, 'HARMFUL')
617 end
618
619 623 local function cycloneEventProcessor(self) local function cycloneEventProcessor(self)
620 624 local unitDesignation = self.unit or 'player' local unitDesignation = self.unit or 'player'
621 625
 
... ... local function cycloneEventProcessor(self)
627 631 end end
628 632 local i = #auraTable local i = #auraTable
629 633 local activeSpellName, activeSpellIcon local activeSpellName, activeSpellIcon
634 local filter = self.filter or 'HARMFUL'
630 635 while (i > 0) do while (i > 0) do
631 636 local spellName = auraTable[i] local spellName = auraTable[i]
632 637 if spellName ~= nil and 'string' == type(spellName) then if spellName ~= nil and 'string' == type(spellName) then
633 local n, _, icon = UnitDebuff(unitDesignation, spellName)
638 local n, _, icon = UnitAura(unitDesignation, spellName, nil, filter)
634 639 if n then if n then
635 640 activeSpellName = n activeSpellName = n
636 641 activeSpellIcon = icon activeSpellIcon = icon
 
... ... local function cycloneEventProcessor(self)
643 648 self.spell = activeSpellName self.spell = activeSpellName
644 649 self:SetNormalTexture(activeSpellIcon) self:SetNormalTexture(activeSpellIcon)
645 650 self:SetScript('OnUpdate', applyOverlayUpdate) self:SetScript('OnUpdate', applyOverlayUpdate)
651 self:Show()
646 652 else else
647 653 self.spell = nil self.spell = nil
648 654 self:SetNormalTexture(nil) self:SetNormalTexture(nil)
649 655 self:SetScript('OnUpdate', nil) self:SetScript('OnUpdate', nil)
650 656 self:SetText(nil) self:SetText(nil)
657 self:Hide()
651 658 end end
652 659 end end
653 660
661 local function createCycloneButton(column, row, buttonDesignation, parentFrame, auraTable)
662 assert (auraTable ~= nil)
663 assert ('table' == type(auraTable))
664
665 local size = 40
666 local padding = 8
667 local b = createButton(column, row, 'Cyclone', buttonDesignation, parentFrame,
668 'HARMFUL', size, padding)
669
670 b.unit = 'player'
671 b.auraTable = auraTable
672
673 b:UnregisterAllEvents()
674 b:SetScript('OnEvent', cycloneEventProcessor)
675 b:RegisterEvent('UNIT_AURA')
676
677 return b
678 end
679
654 680 --[[-- --[[--
655 681 Initialize character lose control indicators. Initialize character lose control indicators.
656 682 @function initCyclone @function initCyclone
 
... ... Initialize character lose control indicators.
659 685 ]] ]]
660 686 local function initCyclone(rootFrame) local function initCyclone(rootFrame)
661 687 local p = CreateFrame('FRAME', 'DaybreakCycloneFrame', rootFrame) local p = CreateFrame('FRAME', 'DaybreakCycloneFrame', rootFrame)
662 local size = 32
688 local size = 40
663 689 local padding = 8 local padding = 8
664 p:SetSize((padding + size), (padding + size) * 4)
690 local paddedSize = size + padding
691 p:SetSize(paddedSize, paddedSize * 4)
665 692 p:SetPoint('CENTER', 0, 0) p:SetPoint('CENTER', 0, 0)
666 693
667 local fontHandle = DaybreakFont or NumberFont_Outline_Large
668 local text
669
670 local q = CreateFrame('BUTTON', 'DaybreakCycloneFrame4', p)
671 q.unit = 'player'
672 q.filter = 'HARMFUL'
673
674 text = q:CreateFontString(q:GetName() .. 'Text', 'OVERLAY')
675 text:SetFontObject(fontHandle)
676 text:SetAllPoints()
677
678 q:SetFontString(text)
679 q:SetText(nil)
680
681 q:SetSize(size, size)
682 q:SetPoint('BOTTOMLEFT', 0, (q:GetHeight() + padding) * 3)
683 q.auraTable = {
694 createCycloneButton(0, 3, 'DaybreakCycloneFrame4', p, {
684 695 --[[ Magic ]]-- --[[ Magic ]]--
685 696 --[[ Disorient ]]-- --[[ Disorient ]]--
686 697 'Death Coil', 'Death Coil',
 
... ... local function initCyclone(rootFrame)
694 705 'Hammer of Justice', 'Hammer of Justice',
695 706 'Ring of Frost', 'Ring of Frost',
696 707 'Fire Blast', 'Fire Blast',
708 'Intimidation',
697 709 --[[ Poison ]]-- --[[ Poison ]]--
698 --[[ Curse ]]--
699 'Hex',
710 'Wyvern Sting',
700 711 --[[ Physical ]]-- --[[ Physical ]]--
701 712 --[[ Disorient ]]-- --[[ Disorient ]]--
713 'Scattering Shot',
702 714 'Head Butt', 'Head Butt',
703 715 'Blind', 'Blind',
704 716 'Gouge', 'Gouge',
705 717 'Holy Word: Chastise', 'Holy Word: Chastise',
706 718 'Intimidating Shout', 'Intimidating Shout',
707 719 'Sap', 'Sap',
720 --[[ Curse ]]--
721 'Hex',
708 722 --[[ Stun ]]-- --[[ Stun ]]--
709 723 'Maim', 'Maim',
710 724 'Mutilate', 'Mutilate',
711 725 'Cheap Shot', 'Cheap Shot',
712 726 'Concussion Blow', 'Concussion Blow',
713 'Cyclone',
714 727 'Gnaw', 'Gnaw',
715 728 'Intercept', 'Intercept',
729 'Feral Charge',
716 730 'Kidney Shot', 'Kidney Shot',
717 731 'Shockwave', 'Shockwave',
718 732 'Throwdown', 'Throwdown',
719 }
720 q:SetScript('OnEvent', cycloneEventProcessor)
721 q:RegisterEvent('UNIT_AURA')
722
723 local r = CreateFrame('BUTTON', 'DaybreakCycloneFrame3', p)
724 r.unit = 'player'
725 r.filter = 'HARMFUL'
726
727 text = r:CreateFontString(r:GetName() .. 'Text', 'OVERLAY')
728 text:SetFontObject(fontHandle)
729 text:SetAllPoints()
730
731 r:SetFontString(text)
732 r:SetText(nil)
733 'Bash',
734 'Pounce',
735 'Maim',
736 'Cyclone',
737 })
733 738
734 r:SetSize(size, size)
735 r:SetPoint('BOTTOMLEFT', 0, (r:GetHeight() + padding) * 2)
736 r.auraTable = {
739 createCycloneButton(0, 2, 'DaybreakCycloneFrame3', p, {
740 --[[ Magic removable ]]--
737 741 'Counterspell', 'Counterspell',
738 742 'Silence', 'Silence',
739 743 'Spell Lock', 'Spell Lock',
740 744 'Strangulate', 'Strangulate',
745 --[[ Unremovable ]]--
746 'Garrote - Silence',
741 747 'Gag Order', 'Gag Order',
742 748 'Solar Beam', 'Solar Beam',
743 }
744 r:SetScript('OnEvent', cycloneEventProcessor)
745 r:RegisterEvent('UNIT_AURA')
749 'Pummel',
750 'Dark Simulacrum',
751 })
746 752
747 local s = CreateFrame('BUTTON', 'DaybreakCycloneFrame2', p)
748 s.unit = 'player'
749 s.filter = 'HARMFUL'
750
751 text = s:CreateFontString(s:GetName() .. 'Text', 'OVERLAY')
752 text:SetFontObject(fontHandle)
753 text:SetAllPoints()
754
755 s:SetFontString(text)
756 s:SetText(nil)
757
758 s:SetSize(size, size)
759 s:SetPoint('BOTTOMLEFT', 0, (s:GetHeight() + padding) * 1)
760 s.auraTable = {
753 createCycloneButton(0, 1, 'DaybreakCycloneFrame2', p, {
754 --[[ Removable unit magic root ]]--
761 755 'Frost Nova', 'Frost Nova',
762 756 'Entangling Roots', 'Entangling Roots',
763 'Earth Trap',
757 'Earth Grab',
758 --[[ Removable unit magic slow ]]--
759 'Frost Shock',
764 760 'Slow', 'Slow',
765 761 'Cone of Cold', 'Cone of Cold',
766 762 'Earthbind Totem', 'Earthbind Totem',
763 'Thunderstrom',
764 --[[ Removable unit poison slow ]]--
767 765 'Crippling Poison', 'Crippling Poison',
766 'Infected Wounds',
767 --[[ Physical unit slow ]]--
768 768 'Dazed', 'Dazed',
769 769 'Daze', 'Daze',
770 770 'Hamstring', 'Hamstring',
771 --[[ Environmental slow ]]--
771 772 'Desecration', 'Desecration',
772 773 'Ice Trap', 'Ice Trap',
773 }
774 s:SetScript('OnEvent', cycloneEventProcessor)
775 s:RegisterEvent('UNIT_AURA')
776
777 local t = CreateFrame('BUTTON', 'DaybreakCycloneFrame1', p)
778 t.unit = 'player'
779 t.filter = 'HARMFUL'
774 --[[ Seal of justice lowest priority
775 -- because it does not actively slow a unit ]]--
776 'Seal of Justice',
777 })
780 778
781 text = t:CreateFontString(t:GetName() .. 'Text', 'OVERLAY')
782 text:SetFontObject(fontHandle)
783 text:SetAllPoints()
784
785 t:SetFontString(text)
786 t:SetText(nil)
787
788 t:SetSize(size, size)
789 t:SetPoint('BOTTOMLEFT', 0, (t:GetHeight() + padding) * 0)
790 t.auraTable = {
779 createCycloneButton(0, 0, 'DaybreakCycloneFrame1', p, {
791 780 'Wound Poison', 'Wound Poison',
792 781 'Necrotic Strike', 'Necrotic Strike',
793 782 'Mortal Strike', 'Mortal Strike',
794 783 'Aimed Shot', 'Aimed Shot',
795 784 'Curse of Tongues', 'Curse of Tongues',
785 'Colossus Smash',
796 786 'Skull Bash', 'Skull Bash',
797 }
798 t:SetScript('OnEvent', cycloneEventProcessor)
799 t:RegisterEvent('UNIT_AURA')
800
801 --[[ Ass ]]--
802 --createCycloneButton(2, 4, 'Cyclone', 'DaybreakCycloneCyclone', p)
803
804 --[[ Stun ]]--
805 --createCycloneButton(2, 1, 'Charge', 'DaybreakCycloneCharge', p)
806 --createCycloneButton(2, 1, 'Cheap Shot', 'DaybreakCycloneCheapShot', p)
807 --createCycloneButton(2, 1, 'Concussion Blow', 'DaybreakCycloneConcussionBlow', p)
808 --createCycloneButton(2, 1, 'Fire Blast', 'DaybreakCycloneFireBlast', p)
809 --createCycloneButton(2, 1, 'Gnaw', 'DaybreakCycloneGnaw', p)
810 --createCycloneButton(2, 1, 'Intercept', 'DaybreakCycloneIntercept', p)
811 --createCycloneButton(2, 1, 'Kidney Shot', 'DaybreakCycloneKidenyShot', p)
812 --createCycloneButton(2, 1, 'Shockwave', 'DaybreakCycloneShockwave', p)
813 --createCycloneButton(2, 1, 'Throwdown', 'DaybreakCycloneThrowdown', p)
814 --createCycloneButton(2, 4, 'Deep Freeze', 'DaybreakCycloneDeepFreeze', p)
815 --createCycloneButton(2, 4, 'Hammer of Justice', 'DaybreakCycloneHammerOfJustice', p)
816
817 --[[ Disorient ]]--
818 --createCycloneButton(1, 1, 'Blind', 'DaybreakCycloneBlind', p)
819 --createCycloneButton(1, 1, 'Gouge', 'DaybreakCycloneGouge', p)
820 --createCycloneButton(1, 1, 'Sap', 'DaybreakCycloneSap', p)
821 --createCycloneButton(1, 2, 'Hex', 'DaybreakCycloneHex', p)
822 --createCycloneButton(1, 4, 'Death Coil', 'DaybreakCycloneFear', p)
823 --createCycloneButton(1, 4, 'Dragon Breath', 'DaybreakCycloneDragonBreath', p)
824 --createCycloneButton(1, 4, 'Fear', 'DaybreakCycloneFear', p)
825 --createCycloneButton(1, 4, 'Feezing Trap', 'DaybreakCycloneFreezingTrap', p)
826 --createCycloneButton(1, 4, 'Holy Word: Chastise', 'DaybreakCycloneHolyWordChastise', p)
827 --createCycloneButton(1, 4, 'Howl of Terror', 'DaybreakCycloneFear', p)
828 --createCycloneButton(1, 4, 'Intimidating Shout', 'DaybreakCycloneIntimidatingShout', p)
829 --createCycloneButton(1, 4, 'Polymorph', 'DaybreakCycloneFear', p)
830 --createCycloneButton(1, 4, 'Ring of Frost', 'DaybreakCycloneRingOfFrost', p)
831
832 --[[ Silence ]]--
833 --createCycloneButton(1, 1, 'Gag Order', 'DaybreakCycloneGagOrder', p)
834 --createCycloneButton(1, 4, 'Counterspell', 'DaybreakCycloneCounterspell', p)
835 --createCycloneButton(1, 4, 'Silence', 'DaybreakCycloneSilence', p)
836 --createCycloneButton(1, 4, 'Spell Lock', 'DaybreakCycloneSpellLock', p)
837 --createCycloneButton(1, 4, 'Strangulate', 'DaybreakCycloneFear', p)
838
839 --[[ Root ]]--
840 --createCycloneButton(0, 4, 'Frost Nova', 'DaybreakCycloneFrostNova', p)
841 --createCycloneButton(0, 4, 'Entangling Roots', 'DaybreakCycloneEntanglingRoots', p)
842
843 --[[ Slow ]]--
844 --createCycloneButton(0, 1, 'Chains of Ice', 'DaybreakCycloneChainsOfIce', p)
845 --createCycloneButton(0, 1, 'Hamstring', 'DaybreakCycloneHamstring', p)
846 --createCycloneButton(0, 3, 'Crippling Poison', 'DaybreakCycloneCripplingPoison', p)
847 --createCycloneButton(0, 4, 'Cone of Cold', 'DaybreakCycloneConeOfCold', p)
848 --createCycloneButton(0, 4, 'Earthbind Totem', 'DaybreakCycloneEarthbindTotem', p)
849 --createCycloneButton(0, 4, 'Slow', 'DaybreakCycloneSlow', p)
850
851 --[[ Healing reduction ]]--
852 --createCycloneButton(3, 1, 'Aimed Shot', 'DaybreakCycloneAimedShot', p)
853 --createCycloneButton(3, 1, 'Mortal Strike', 'DaybreakCycloneMortalStrike', p)
854 --createCycloneButton(3, 1, 'Necrotic Strike', 'DaybreakCycloneNecroticStrike', p)
855 --createCycloneButton(3, 3, 'Wound Poison', 'DaybreakCycloneWoundPoison', p)
856 --createCycloneButton(3, 2, 'Curse of Tongues', 'DaybreakCycloneCurseOfTongues', p)
787 })
857 788
858 789 return p return p
859 790 end end
 
... ... local function initDaybreak(rootFrame)
1152 1083 createButton(11, 0, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura', rootFrame, 'PLAYER HELPFUL') createButton(11, 0, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura', rootFrame, 'PLAYER HELPFUL')
1153 1084 createButton(11, 0, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura', rootFrame, 'PLAYER HELPFUL') createButton(11, 0, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura', rootFrame, 'PLAYER HELPFUL')
1154 1085
1086 local auraFrame = CreateFrame('FRAME', 'DaybreakAuraHeader', rootFrame)
1087 auraFrame:SetSize(16*5, 16*5)
1088 auraFrame:SetPoint('BOTTOMLEFT', 128 + 64, 0)
1089 createButton(12, 0, 'Concentration Aura', 'DaybreakOverlayPaladinConcentrationAura2', auraFrame, 'HELPFUL', 14, 2)
1090 createButton(13, 0, 'Crusader Aura', 'DaybreakOverlayPaladinCrusaderAura2', auraFrame, 'HELPFUL', 14, 2)
1091 createButton(14, 0, 'Devotion Aura', 'DaybreakOverlayPaladinDevotionAura2', auraFrame, 'HELPFUL', 14, 2)
1092 createButton(12, 1, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura2', auraFrame, 'HELPFUL', 14, 2)
1093 createButton(13, 1, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura2', auraFrame, 'HELPFUL', 14, 2)
1094
1155 1095 createButton(11, 1, 'Seal of Insight', 'DaybreakOverlayPaladinSealOfInsight', rootFrame, 'PLAYER HELPFUL') createButton(11, 1, 'Seal of Insight', 'DaybreakOverlayPaladinSealOfInsight', rootFrame, 'PLAYER HELPFUL')
1156 1096 createButton(11, 1, 'Seal of Justice', 'DaybreakOverlayPaladinSealOfJustice', rootFrame, 'PLAYER HELPFUL') createButton(11, 1, 'Seal of Justice', 'DaybreakOverlayPaladinSealOfJustice', rootFrame, 'PLAYER HELPFUL')
1157 1097 createButton(11, 1, 'Seal of Righteousness', 'DaybreakOverlayPaladinSealOfRighteousness', rootFrame, 'PLAYER HELPFUL') createButton(11, 1, 'Seal of Righteousness', 'DaybreakOverlayPaladinSealOfRighteousness', rootFrame, 'PLAYER HELPFUL')
1158 1098 createButton(11, 1, 'Seal of Truth', 'DaybreakOverlayPaladinSealOfTruth', rootFrame, 'PLAYER HELPFUL') createButton(11, 1, 'Seal of Truth', 'DaybreakOverlayPaladinSealOfTruth', rootFrame, 'PLAYER HELPFUL')
1159 1099
1160 createButton(11, 2, 'Blessing of Might', 'DaybreakOverlayPaladinBlessingOfMight', rootFrame, 'PLAYER HELPFUL')
1161 createButton(11, 2, 'Blessing of Kings', 'DaybreakOverlayPaladinBlessingOfKings', rootFrame, 'PLAYER HELPFUL')
1100 createButton(11, 2, 'Blessing of Kings', 'DaybreakOverlayPaladinBlessingOfKings', rootFrame, 'HELPFUL')
1101 createButton(11, 2, 'Mark of the Wild', 'DaybreakOverlayPaladinMarkOfTheWild', rootFrame, 'HELPFUL')
1102 createButton(11, 3, 'Blessing of Might', 'DaybreakOverlayPaladinBlessingOfMight', rootFrame, 'HELPFUL')
1162 1103
1163 1104 --[[ Effects that may be applied by other players place on the right side ]]-- --[[ Effects that may be applied by other players place on the right side ]]--
1164 1105 createButton(9, 0, 'Hand of Freedom', 'DaybreakOverlayPaladinHandOfFreedom', rootFrame) createButton(9, 0, 'Hand of Freedom', 'DaybreakOverlayPaladinHandOfFreedom', rootFrame)
File daybreak.toc changed (mode: 100644) (index 2f5d2cb..fd5f067)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.0.27-SNAPSHOT
3 ##Version: 0.1.0-SNAPSHOT
4 4 ##Notes: Custom spell activation overlay and power bar. ##Notes: Custom spell activation overlay and power bar.
5 5 daybreak.xml daybreak.xml
6 6 daybreak.lua daybreak.lua
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/wowaddons

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/wowaddons

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/wowaddons

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main