List of commits:
Subject Hash Author Date (UTC)
fix: Improve maintainability of cyclone section b87e15cc3bcf23e4fa9623fd3b43ec10975eb142 Vladyslav Bondarenko 2021-03-05 07:44:26
fix: Improve maintainability of overlay section bb2fe4cdd72d69c4de5caeeb56a668f7d94bb2b4 Vladyslav Bondarenko 2021-03-04 10:18:19
feat!: Add absorbtion amount tracker option 4d37ff71e619e74f9cea4623c846125f274d8fa3 Vladyslav Bondarenko 2021-03-03 05:07:08
feat: Power bar indicator custom texture 960a1e592bfe9b2f7e0b537da24ecbef79c7f479 Vladyslav Bondarenko 2021-03-03 03:45:18
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
Commit b87e15cc3bcf23e4fa9623fd3b43ec10975eb142 - fix: Improve maintainability of cyclone section
Author: Vladyslav Bondarenko
Author date (UTC): 2021-03-05 07:44
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-03-05 07:44
Parent(s): b3b53e13c184ced12ed2f37f14117cef8d7fc394
Signer:
Signing key:
Signing status: N
Tree: 3fc671029b9f380a196fdcc33590213947b860de
File Lines added Lines deleted
daybreak.lua 42 26
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index a2c4249..96da8bb)
... ... local function getArtworkTransparency(remainingDuration, duration)
85 85 end end
86 86 end end
87 87
88 local function findFirstAura(unitDesignation, auraTable, optionalFilter)
89 unitDesignation = unitDesignation or 'player'
90 assert (unitDesignation ~= nil)
91 assert ('string' == type(unitDesignation))
92 assert (string.len(unitDesignation) >= 2)
93 assert (string.len(unitDesignation) <= 256)
94
95 assert (auraTable ~= nil)
96 assert ('table' == type(auraTable))
97 assert (#auraTable >= 2)
98
99 local filter = optionalFilter or 'HELPFUL'
100 assert (filter ~= nil)
101 assert ('string' == type(filter))
102 assert (string.len(filter) >= 2)
103 assert (string.len(filter) <= 256)
104
105 local i = 0
106 local j = math.min(#auraTable, 256)
107 while (i < j) do
108 i = i + 1
109 local auraName = auraTable[i]
110 if auraName ~= nil and
111 'string' == type(auraName) and
112 string.len(auraName) >= 2 then
113 local n = UnitAura(unitDesignation, auraName, nil, filter)
114 if n then
115 return UnitAura(unitDesignation, auraName, nil, filter)
116 end
117 end
118 end
119 return nil
120 end
121
88 122 local function applyOverlayUpdateDelay(self, updateDurationSec) local function applyOverlayUpdateDelay(self, updateDurationSec)
89 123 assert (self ~= nil) assert (self ~= nil)
90 124
 
... ... local function acceptOverlayUnitAura(button, eventCategory)
268 302 button:SetScript('OnUpdate', overlayUpdateProcessorDuration) button:SetScript('OnUpdate', overlayUpdateProcessorDuration)
269 303 elseif 2 == archetypeDesignation then elseif 2 == archetypeDesignation then
270 304 button:SetScript('OnUpdate', overlayUpdateProcessorAbsorption) button:SetScript('OnUpdate', overlayUpdateProcessorAbsorption)
305 elseif 3 == archetypeDesignation then
306 button:SetScript('OnUpdate', overlayUpdateProcessorDuration)
271 307 end end
272 308 else else
273 309 button:Hide() button:Hide()
 
... ... Lose control indicator.
768 804 @section cyclone @section cyclone
769 805 ]] ]]
770 806
771 local function cycloneEventProcessor(self)
807 local function cycloneEventProcessor(self, eventCategory)
772 808 local unitDesignation = self.unit or 'player' local unitDesignation = self.unit or 'player'
809 local filter = self.filter or 'HELPFUL'
773 810
774 811 local auraTable = self.auraTable local auraTable = self.auraTable
775 812 if not auraTable then if not auraTable then
 
... ... local function cycloneEventProcessor(self)
777 814 elseif 'table' ~= type(auraTable) then elseif 'table' ~= type(auraTable) then
778 815 return return
779 816 end end
780 local i = #auraTable
781 local activeSpellName, activeSpellIcon
782 local filter = self.filter or 'HARMFUL'
783 while (i > 0) do
784 local spellName = auraTable[i]
785 if spellName ~= nil and 'string' == type(spellName) then
786 local n, _, icon = UnitAura(unitDesignation, spellName, nil, filter)
787 if n then
788 activeSpellName = n
789 activeSpellIcon = icon
790 break
791 end
792 end
793 i = i - 1
794 end
817 local activeSpellName = findFirstAura(unitDesignation, auraTable, filter)
795 818 if activeSpellName then if activeSpellName then
796 819 self.spell = activeSpellName self.spell = activeSpellName
797 self:SetNormalTexture(activeSpellIcon)
798 self:SetScript('OnUpdate', overlayUpdateProcessorDuration)
799 self:Show()
800 else
801 self.spell = nil
802 self:SetNormalTexture(nil)
803 self:SetScript('OnUpdate', nil)
804 self:SetText(nil)
805 self:Hide()
806 820 end end
821 acceptOverlayUnitAura(self, eventCategory)
807 822 end end
808 823
809 824 local function createCycloneButton(column, row, buttonDesignation, parentFrame, auraTable) local function createCycloneButton(column, row, buttonDesignation, parentFrame, auraTable)
 
... ... local function createCycloneButton(column, row, buttonDesignation, parentFrame,
818 833 b.unit = 'player' b.unit = 'player'
819 834 b.auraTable = auraTable b.auraTable = auraTable
820 835
821 b:UnregisterAllEvents()
822 836 b:SetScript('OnEvent', cycloneEventProcessor) b:SetScript('OnEvent', cycloneEventProcessor)
823 837 b:RegisterEvent('UNIT_AURA') b:RegisterEvent('UNIT_AURA')
824 838
 
... ... local function initCyclone(rootFrame)
916 930 'Dazed', 'Dazed',
917 931 'Daze', 'Daze',
918 932 'Hamstring', 'Hamstring',
933 'Claw Grasp',
934 'Net',
919 935 --[[ Environmental slow ]]-- --[[ Environmental slow ]]--
920 936 'Desecration', 'Desecration',
921 937 'Ice Trap', 'Ice Trap',
File daybreak.toc changed (mode: 100644) (index d1479c4..845031f)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.2.1-SNAPSHOT
3 ##Version: 0.2.2-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