List of commits:
Subject Hash Author Date (UTC)
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
feat: Prototype decay indicator f16a16c34d25fd71ad74347da09c0f410a7768cf Vladyslav Bondarenko 2021-01-25 22:26:52
feat: Color indicator after unit combat status cf42abb180bc02da2aeedd8bccda693a167017c8 Vladyslav Bondarenko 2021-01-22 09:01:53
feat: Improve power indicator appearance fcd41d0a2cb7234c00f26ed2f0dc5c1183397d52 Vladyslav Bondarenko 2021-01-22 07:10:55
feat: Reduce update load 76a011715619c33caed714fec4161e53ecb1512c Vladyslav Bondarenko 2021-01-16 19:47:37
feat: Track more relevant effects f5f8803fa3cb59b43e144d9e53ea50fafcc23008 Vladyslav Bondarenko 2021-01-16 12:40:07
fix: Code base maintainance Add documentation and sanitise some arguments. 52e74dfb3f9fce8617ed4d4c63105966bb388daa Vladyslav Bondarenko 2021-01-12 13:07:49
Commit a33b2c323a1c9240b5abdb53a0c9758eb591aac8 - feat!: Add holy priest overlay
Author: Vladyslav Bondarenko
Author date (UTC): 2021-02-20 16:06
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-02-20 16:06
Parent(s): e4dfffb7d2385a50276faab268b387c5ec0905eb
Signer:
Signing key:
Signing status: N
Tree: 7e22080901d734042d551577508899df9ffac6ed
File Lines added Lines deleted
daybreak.lua 53 1
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index 4e11256..3ad6162)
... ... local function getEstimatedBattlegroundRole(unitDesignation)
41 41 elseif 3 == i then elseif 3 == i then
42 42 roleDesignation = 'DAMAGER' roleDesignation = 'DAMAGER'
43 43 end end
44 elseif 'PRIEST' == classDesignation then
45 if 1 == i then
46 roleDesignation = 'HEALER'
47 elseif 2 == i then
48 roleDesignation = 'HEALER'
49 elseif 3 == i then
50 roleDesignation = 'DAMAGER'
51 end
52 elseif 'WARRIOR' == classDesignation then
53 if 1 == i then
54 roleDesignation = 'DAMAGER'
55 elseif 2 == i then
56 roleDesignation = 'DAMAGER'
57 elseif 3 == i then
58 roleDesignation = 'TANK'
59 end
60 elseif 'WARLOCK' == classDesignation then
61 if 1 == i then
62 roleDesignation = 'DAMAGER'
63 elseif 2 == i then
64 roleDesignation = 'DAMAGER'
65 elseif 3 == i then
66 roleDesignation = 'DAMAGER'
67 end
44 68 end end
45 69
46 70 assert (roleDesignation ~= nil) assert (roleDesignation ~= nil)
 
... ... end
394 418 local function initHolyPower(rootFrame) local function initHolyPower(rootFrame)
395 419 assert (rootFrame ~= nil) assert (rootFrame ~= nil)
396 420
421 local _, c = UnitClass('player')
422 if 'PALADIN' ~= c then
423 return
424 end
425
397 426 local hpf = createHolyPowerIndicator('DaybreakHolyPowerPlayerFrame', rootFrame, 'player') local hpf = createHolyPowerIndicator('DaybreakHolyPowerPlayerFrame', rootFrame, 'player')
398 427 hpf:SetPoint('CENTER', 0, 0) hpf:SetPoint('CENTER', 0, 0)
399 428 hpf:SetPoint('BOTTOM', 0, 0) hpf:SetPoint('BOTTOM', 0, 0)
 
... ... local function applyUpdate(button, updateDurationSec)
676 705 assert (string.len(unitDesignation) >= 2) assert (string.len(unitDesignation) >= 2)
677 706 assert (string.len(unitDesignation) <= 256) assert (string.len(unitDesignation) <= 256)
678 707
679 local _, _, _, _, _, _, expirationInstance = UnitBuff(unitDesignation, auraName)
708 local _, _, _, _, _, duration, expirationInstance = UnitBuff(unitDesignation, auraName)
680 709 if nil == expirationInstance then if nil == expirationInstance then
681 710 return return
682 711 end end
683 712 local now = GetTime() local now = GetTime()
684 713 local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) local remainingDuration = math.max(0, math.ceil(expirationInstance - now))
714 local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0
715 if isDurationUnlimited then
716 remainingDuration = nil
717 end
685 718 button:SetText(remainingDuration) button:SetText(remainingDuration)
686 719 end end
687 720
 
... ... local function createButton(column, row, localizedSpellName, buttonName, parentF
779 812 end end
780 813
781 814 local function initDaybreak(rootFrame) local function initDaybreak(rootFrame)
815 --[[ Paladin ]]--
782 816 --[[ General ]]-- --[[ General ]]--
783 817 createButton(0, 0, 'Crusader', 'DaybreakButton01', rootFrame) createButton(0, 0, 'Crusader', 'DaybreakButton01', rootFrame)
784 818 createButton(0, 1, 'Divine Plea', 'DaybreakButton02', rootFrame) createButton(0, 1, 'Divine Plea', 'DaybreakButton02', rootFrame)
 
... ... local function initDaybreak(rootFrame)
811 845 --[[ Retribution ]]-- --[[ Retribution ]]--
812 846 createButton(10, 1, 'Inquisition', 'DaybreakButton22', rootFrame) createButton(10, 1, 'Inquisition', 'DaybreakButton22', rootFrame)
813 847
848 --[[ Priest ]]--
849 local _, classDesignation = UnitClass('player')
850 if 'PRIEST' == classDesignation then
851 createButton(0, 0, 'Chakra: Chastise', 'DaybreakChakraChastiseButton', rootFrame)
852 createButton(0, 0, 'Chakra: Sanctuary', 'DaybreakChakraSanctuaryButton', rootFrame)
853 createButton(0, 0, 'Chakra: Serenity', 'DaybreakChakraSerenityButton', rootFrame)
854 createButton(0, 1, 'Chakra', 'DaybreakChakraButton', rootFrame)
855 --[[ Holy ]]--
856 createButton(1, 1, 'Surge of Light', 'DaybreakSurgeOfLightButton', rootFrame)
857 createButton(1, 2, 'Serendipity', 'DaybreakSerendipityButton', rootFrame)
858 createButton(1, 3, 'Guardian Spirit', 'DaybreakGuardianSpiritButton', rootFrame)
859
860 --[[ Priest general ]]--
861 createButton(9, 0, 'Inspiration', 'DaybreakInspirationButton', rootFrame)
862 createButton(9, 1, 'Renew', 'DaybreakRenewButton', rootFrame)
863 createButton(9, 2, 'Power Word: Shield', 'DaybreakPowerWordShieldButton', rootFrame)
864 end
865
814 866 --[[ Hide native spell proc indicators that flash in the middle of the screen ]]-- --[[ Hide native spell proc indicators that flash in the middle of the screen ]]--
815 867 SetCVar("displaySpellActivationOverlays", false) SetCVar("displaySpellActivationOverlays", false)
816 868 end end
File daybreak.toc changed (mode: 100644) (index 81964f3..31a55b8)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.0.21-SNAPSHOT
3 ##Version: 0.0.22-SNAPSHOT
4 4 ##Notes: Add paladin player buff indicator ##Notes: Add paladin player buff indicator
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