List of commits:
Subject Hash Author Date (UTC)
feat: Add more priest spell indicators a3bd0312d74ef9ef7210e0f052b2815dfbcbe863 Vladyslav Bondarenko 2021-07-05 07:30:21
feat: Add indicator for duration of an interrupt c89d09f5bc7bfde9a8eac3924cba35f2ddb5eadf Vladyslav Bondarenko 2021-05-21 12:52:41
feat: Highlight target powerful buffs and debuffs 98aa3d2af718bc2a6bf9880bc21361e3762c78bd Vladyslav Bondarenko 2021-03-11 17:16:36
fix: Render cyclone section artwork correctly 5489777709e6ac544816769e98812498059b17ec Vladyslav Bondarenko 2021-03-09 08:07:40
fix: Brighten power bar when in combat 82bb8fe999d30e331a08319fba6d8aaed9c9a94f Vladyslav Bondarenko 2021-03-07 09:35:43
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
Commit a3bd0312d74ef9ef7210e0f052b2815dfbcbe863 - feat: Add more priest spell indicators
Author: Vladyslav Bondarenko
Author date (UTC): 2021-07-05 07:30
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-07-05 07:30
Parent(s): ee592d9d8542798e7ddeaab594c3f2252cf8aabd
Signer:
Signing key:
Signing status: N
Tree: fc11b9d6e73e28ef1bdc5d3e46209727199b41fe
File Lines added Lines deleted
daybreak.lua 29 8
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index 96b3046..f3870cc)
... ... end
481 481
482 482 local function roleFrameEventProcessor() local function roleFrameEventProcessor()
483 483 local unitDesignation = 'player' local unitDesignation = 'player'
484 local roleDesignation = getEstimatedBattlegroundRole(unitDesignation)
485 UnitSetRole(unitDesignation, roleDesignation)
484 local roleDesignationGuess = getEstimatedBattlegroundRole(unitDesignation)
485 if roleDesignationGuess ~= UnitGroupRolesAssigned(unitDesignation) then
486 UnitSetRole(unitDesignation, roleDesignationGuess)
487 end
486 488 end end
487 489
488 490 local function initRole(rootFrame) local function initRole(rootFrame)
 
... ... local function initCyclone(rootFrame)
941 943 'Holy Word: Chastise', 'Holy Word: Chastise',
942 944 'Intimidating Shout', 'Intimidating Shout',
943 945 'Sap', 'Sap',
946 'Repentance',
944 947 --[[ Curse ]]-- --[[ Curse ]]--
945 948 'Hex', 'Hex',
946 949 --[[ Stun ]]-- --[[ Stun ]]--
 
... ... Query if the player character invested into Blessed Life talent.
1263 1266 @treturn bool @treturn bool
1264 1267 ]] ]]
1265 1268 local function isBlessedLifePresent() local function isBlessedLifePresent()
1269 local _, classDesignation = UnitClass('player')
1270 if 'PALADIN' ~= classDesignation then
1271 return
1272 end
1273
1266 1274 local specNumber = 1 local specNumber = 1
1267 1275 local talentNumber = 19 local talentNumber = 19
1268 1276 local _, _, _, _, a = GetTalentInfo(specNumber, talentNumber) local _, _, _, _, a = GetTalentInfo(specNumber, talentNumber)
 
... ... local function initSerendipity(rootFrame)
1390 1398 end end
1391 1399
1392 1400 --[[ Priest ]]-- --[[ Priest ]]--
1393 createButton(0, 0, 'Chakra: Chastise', rootFrame)
1394 createButton(0, 0, 'Chakra: Sanctuary', rootFrame)
1395 createButton(0, 0, 'Chakra: Serenity', rootFrame)
1396 createButton(0, 1, 'Chakra', rootFrame)
1401 local innerFireFrame = CreateFrame('FRAME', 'DaybreakOverlayPriestInnerFireFrame', rootFrame)
1402 innerFireFrame:SetSize(16, 16)
1403 innerFireFrame:SetPoint('BOTTOMLEFT', 16*22, 16*2)
1404 local duration = getArchetypeDesignationDuration()
1405 createButton(0, 0, 'Inner Fire', innerFireFrame, duration, 'player', 'PLAYER HELPFUL', 14, 2)
1406 createButton(0, 0, 'Inner Will', innerFireFrame, duration, 'player', 'PLAYER HELPFUL', 14, 2)
1407 createButton(1, 1, 'Shadow Protection', innerFireFrame, duration, 'player', 'HELPFUL', 14, 2)
1408 createButton(1, 0, 'Power Word: Fortitude', innerFireFrame, duration, 'player', 'HELPFUL', 14, 2)
1409
1410
1411 createButton(11, 0, 'Chakra: Chastise', rootFrame)
1412 createButton(11, 0, 'Chakra: Sanctuary', rootFrame)
1413 createButton(11, 0, 'Chakra: Serenity', rootFrame)
1414 createButton(0, 0, 'Chakra', rootFrame)
1397 1415 createButton(0, 1, 'Blessed Resilience', rootFrame) createButton(0, 1, 'Blessed Resilience', rootFrame)
1398 1416 --[[ d ]]-- --[[ d ]]--
1399 1417 createButton(0, 0, 'Inner Focus', rootFrame) createButton(0, 0, 'Inner Focus', rootFrame)
1400 1418 createButton(0, 1, 'Pain Suppression', rootFrame) createButton(0, 1, 'Pain Suppression', rootFrame)
1401 1419 createButton(0, 2, 'Power Infusion', rootFrame) createButton(0, 2, 'Power Infusion', rootFrame)
1420 local absorb = getArchetypeDesignationAbsorption()
1421 createButton(10, 0, 'Divine Aegis', rootFrame, absorb, 'player', 'HELPFUL')
1422 createButton(10, 1, 'Grace', rootFrame)
1402 1423
1403 1424 createButton(1, 2, 'Borrowed Time', rootFrame) createButton(1, 2, 'Borrowed Time', rootFrame)
1404 1425 createButton(1, 3, 'Pain Supression', rootFrame) createButton(1, 3, 'Pain Supression', rootFrame)
 
... ... local function initSerendipity(rootFrame)
1412 1433 --[[ Priest general ]]-- --[[ Priest general ]]--
1413 1434 createButton(9, 0, 'Inspiration', rootFrame) createButton(9, 0, 'Inspiration', rootFrame)
1414 1435 createButton(9, 1, 'Renew', rootFrame) createButton(9, 1, 'Renew', rootFrame)
1415 local arch = getArchetypeDesignationAbsorption()
1416 createButton(9, 2, 'Power Word: Shield', rootFrame, arch, 'player', 'HELPFUL')
1436 createButton(8, 2, 'Weakened Soul', rootFrame, duration, 'player', 'HARMFUL')
1437 createButton(9, 2, 'Power Word: Shield', rootFrame, absorb, 'player', 'HELPFUL')
1417 1438 createButton(9, 3, 'Fear Ward', rootFrame) createButton(9, 3, 'Fear Ward', rootFrame)
1418 1439 createButton(10, 2, 'Body and Soul', rootFrame) createButton(10, 2, 'Body and Soul', rootFrame)
1419 1440
File daybreak.toc changed (mode: 100644) (index 9c28f17..7dda76c)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.3.1-SNAPSHOT
3 ##Version: 0.3.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