List of commits:
Subject Hash Author Date (UTC)
fix(clearcasting): Reduce update frequency 7bf094779eef383805e43a711ac5339a7677c860 Vladyslav Bondarenko 2021-12-19 10:30:17
fix(clearcasting)!: Reduce redundant updates e93ca1628e362276ef20d10bbc0b4314d8bb0ae9 Vladyslav Bondarenko 2021-11-09 07:18:49
fix(clearcasting): Lower priority of debuff type 5e74f3bb6adcf5ee9644a08f839ec6fdf7f59027 Vladyslav Bondarenko 2021-11-07 14:27:37
feat(clearcasting): Remove individual class profiles c7b4d8cf1ad3885e8f0bd84f33082a29330f1f18 Vladyslav Bondarenko 2021-11-05 18:41:10
fix(clearcasting): Correct subset button order when first allocated f3b52da4b40e436e7dc5fc5bda8c4cdbf2c3f4a7 Vladyslav Bondarenko 2021-11-05 13:15:09
fix(clearcasting): Subset button clickable and updates slower ec4768e7b925e52126140788fe866070ee3796c3 Vladyslav Bondarenko 2021-11-05 13:05:13
fix(clearcasting): Improve subset buttons readabilitiy a86de677ad80a16372b76c67d1f8baa457f72faa Vladyslav Bondarenko 2021-11-04 22:23:53
fix(clearcasting)!: Export createSubset correctly e4a0fdb48ac3e3e63d7e763460fb6ca2d95a1f9f Vladyslav Bondarenko 2021-11-04 22:02:35
feat(choir): Render debuff type color for subset cb13282dcb4c42732eccf46821d9ff49e6f8bdff Vladyslav Bondarenko 2021-11-04 20:12:49
fix(choir)!: Subset auras update in combat 081493e96ee7c72371f8770d8bbdc9b108db53ac Vladyslav Bondarenko 2021-11-04 19:02:16
feat(choir)!: Add alternative section creation 1aac7826a961509021679db26b95071edba77ad8 Vladyslav Bondarenko 2021-11-04 17:36:05
feat(clearcasting): Add death knight indicators 5c42814210b355e6de601faaf8e173222995cfa6 Vladyslav Bondarenko 2021-10-30 12:23:43
feat!: Show spell tooltip on indicator mouseover dd69f46f1522f49ce942d8e0b3756c609471be7a Vladyslav Bondarenko 2021-10-13 01:12:08
feat!: Indicator grouping feature df7e0579a51388dba73bc5d92b3d04369bb0e426 Vladyslav Bondarenko 2021-10-13 00:17:28
feat!: Redo the core functionality 085af1bc403b3a9d2d4b99ec460d67889239fabd Vladyslav Bondarenko 2021-07-09 11:15:31
feat: Track additional auras 958e52f9808d64ebb816663d2aa22a4eb39a2068 Vladyslav Bondarenko 2021-01-22 20:28:13
fix!: No longer crash on unknown spell 65061085f0f55b75910c9ed4d8249b1e8e30f9ee Vladyslav Bondarenko 2020-12-11 17:31:16
fix: Render indicators properly on first login bf102cc749cc23d3769a82f10fe93a05afc5277f Vladyslav Bondarenko 2020-12-11 14:25:11
feat: Add Serendipity and Surge of Light indicators ba1d0f32a4b8f4f5d4e2730f0a4e409e23b52974 Vladyslav Bondarenko 2020-12-10 16:19:55
Initial commit 9b3df418e373218125fec12271084afebb11cfc2 Vladyslav Bondarenko 2020-12-04 10:27:24
Commit 7bf094779eef383805e43a711ac5339a7677c860 - fix(clearcasting): Reduce update frequency
Author: Vladyslav Bondarenko
Author date (UTC): 2021-12-19 10:30
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-12-19 10:30
Parent(s): 831918e86341e590375cd9afb2fefc59b1448c15
Signer:
Signing key:
Signing status: N
Tree: bba3d3e3e3d591e94f1a610b8287b9226c02465a
File Lines added Lines deleted
clearcasting.lua 52 11
File clearcasting.lua changed (mode: 100644) (index 3aa2d46..5edec42)
... ... local function sortUnitAuraTable(a, b)
163 163 return getAuraWeight(a) > getAuraWeight(b) return getAuraWeight(a) > getAuraWeight(b)
164 164 end end
165 165
166 local function requestUnitAuraIndexTable(unitDesignation, filterDescriptor)
167 assert (unitDesignation ~= nil)
168 assert ('string' == type(unitDesignation))
169 unitDesignation = strtrim(unitDesignation)
170 assert (string.len(unitDesignation) >= 4)
171 assert (string.len(unitDesignation) <= 64)
172
173 assert (filterDescriptor ~= nil)
174 assert ('string' == type(filterDescriptor))
175 filterDescriptor = strtrim(filterDescriptor)
176 assert (string.len(filterDescriptor) >= 4)
177 assert (string.len(filterDescriptor) <= 128)
178
179 local e = {}
180
181 local i = 0
182 local maxAuraQuantityPerUnit = 144
183 while (i < maxAuraQuantityPerUnit) do
184 i = i + 1
185 local name = UnitAura(unitDesignation, i, filterDescriptor)
186 if not name then
187 break
188 end
189 e[i] = i
190 end
191
192 table.sort(e, function(a, b)
193 local aw = getAuraWeight(UnitAura(unitDesignation, a, filterDescriptor))
194 local bw = getAuraWeight(UnitAura(unitDesignation, b, filterDescriptor))
195 return aw > bw
196 end)
197
198 assert (e ~= nil)
199 assert ('table' == type(e))
200 return e
201 end
202
166 203 local function requestUnitAuraTable(unitDesignation, filterDescriptor) local function requestUnitAuraTable(unitDesignation, filterDescriptor)
167 204 assert (unitDesignation ~= nil) assert (unitDesignation ~= nil)
168 205 assert ('string' == type(unitDesignation)) assert ('string' == type(unitDesignation))
 
... ... local function unapplySubsetButtonSpell(subsetButton, unitDesignation, filterDes
283 320 subsetButton:Hide() subsetButton:Hide()
284 321 end end
285 322
286 local function applySubsetButtonSpell(subsetButton, unitDesignation, filterDescriptor,
323 local function applySubsetButtonSpell(subsetButton, unitDesignation, filterDescriptor, unitAuraIndex,
287 324 spellName, spellRank, pictureFile, stackQuantity, category, spellName, spellRank, pictureFile, stackQuantity, category,
288 325 durationSec, expirationInstance, durationSec, expirationInstance,
289 casterUnitDesignation, stealableFlag, consolidationFlag, spellId, unitAuraIndex)
326 casterUnitDesignation, stealableFlag, consolidationFlag, spellId)
290 327 assert (subsetButton ~= nil) assert (subsetButton ~= nil)
291 328 assert (unitDesignation ~= nil) assert (unitDesignation ~= nil)
292 329 assert (filterDescriptor ~= nil) assert (filterDescriptor ~= nil)
 
... ... return function(subsetFrame)
348 385 assert (string.len(filterDescriptor) >= 4) assert (string.len(filterDescriptor) >= 4)
349 386 assert (string.len(filterDescriptor) <= 128) assert (string.len(filterDescriptor) <= 128)
350 387
351 local e = requestUnitAuraTable(unitDesignation, filterDescriptor)
388 local e = requestUnitAuraIndexTable(unitDesignation, filterDescriptor)
352 389
353 390 local i = 0 local i = 0
354 391 --[[local t = {subsetFrame:GetChildren()}]]-- --[[local t = {subsetFrame:GetChildren()}]]--
 
... ... return function(subsetFrame)
358 395 local b = t[i] local b = t[i]
359 396 assert (b ~= nil) assert (b ~= nil)
360 397
361 local auraTable = e[i]
362 assert (auraTable ~= nil)
398 local auraIndex = e[i]
399 assert (auraIndex ~= nil)
363 400
364 applySubsetButtonSpell(b, unitDesignation, filterDescriptor, unpackAuraTable(auraTable))
401 applySubsetButtonSpell(b, unitDesignation, filterDescriptor, auraIndex,
402 UnitAura(unitDesignation, auraIndex, filterDescriptor))
365 403 end end
366 404
367 405 local k = #e local k = #e
 
... ... local function createSubset(parentFrame, frameDesignation, unitDesignation, filt
612 650 subsetFrame.filter = filterDescriptor subsetFrame.filter = filterDescriptor
613 651 subsetFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID') subsetFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID')
614 652 subsetFrame:RegisterEvent('PARTY_MEMBERS_CHANGED') subsetFrame:RegisterEvent('PARTY_MEMBERS_CHANGED')
615 subsetFrame:RegisterEvent('PLAYER_FOCUS_CHANGED')
653 --subsetFrame:RegisterEvent('PLAYER_FOCUS_CHANGED')
616 654 subsetFrame:RegisterEvent('PLAYER_LOGIN') subsetFrame:RegisterEvent('PLAYER_LOGIN')
617 subsetFrame:RegisterEvent('PLAYER_TARGET_CHANGED')
618 subsetFrame:RegisterEvent('PLAYER_SPECIALIZATION_CHANGED')
655 --subsetFrame:RegisterEvent('PLAYER_TARGET_CHANGED')
656 --subsetFrame:RegisterEvent('PLAYER_SPECIALIZATION_CHANGED')
619 657 subsetFrame:RegisterEvent('RAID_ROSTER_UPDATE') subsetFrame:RegisterEvent('RAID_ROSTER_UPDATE')
620 658 subsetFrame:RegisterEvent('UNIT_AURA') subsetFrame:RegisterEvent('UNIT_AURA')
621 subsetFrame:RegisterEvent('UNIT_HEALTH')
622 subsetFrame:RegisterEvent('UPDATE_BATTLEFIELD_SCORE')
659 --subsetFrame:RegisterEvent('UNIT_HEALTH')
660 --subsetFrame:RegisterEvent('UPDATE_BATTLEFIELD_SCORE')
623 661 local subsetEventProcessor = subsetEventProcessorFactory(t) local subsetEventProcessor = subsetEventProcessorFactory(t)
624 662 subsetFrame:SetScript('OnEvent', subsetEventProcessor) subsetFrame:SetScript('OnEvent', subsetEventProcessor)
625 663 subsetEventProcessor(subsetFrame) subsetEventProcessor(subsetFrame)
 
... ... local function initSpellActivationOverlay(rootFrame)
649 687 targetHarmSubset:SetPoint('CENTER', rootFrame, targetHarmSubset:SetPoint('CENTER', rootFrame,
650 688 'CENTER', 0, rootFrame:GetHeight() / 3 - targetHelpSubset:GetHeight() + 4) 'CENTER', 0, rootFrame:GetHeight() / 3 - targetHelpSubset:GetHeight() + 4)
651 689
690 helpSubset:RegisterEvent('PLAYER_SPECIALIZATION_CHANGED')
691 targetHelpSubset:RegisterEvent('PLAYER_TARGET_CHANGED')
692 targetHarmSubset:RegisterEvent('PLAYER_TARGET_CHANGED')
652 693 return {helpSubset, harmSubset} return {helpSubset, harmSubset}
653 694 end end
654 695
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