List of commits:
Subject Hash Author Date (UTC)
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
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
Commit 4d37ff71e619e74f9cea4623c846125f274d8fa3 - feat!: Add absorbtion amount tracker option
Some effects absorb a specific amount of incoming damage.
This information is sometimes more valuable than the remaining
duration of an effect overall. Therefore add the option to
track the amount of damage absorbed instead of remaining lifespan
duration.
Author: Vladyslav Bondarenko
Author date (UTC): 2021-03-03 05:07
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-03-03 05:07
Parent(s): d92494b3dcdecfc82814a28d573daf9de85da92a
Signer:
Signing key:
Signing status: N
Tree: 1de97ccf3843394b95bfe511089fb5ac8490d25a
File Lines added Lines deleted
daybreak.lua 18 4
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index a7643fe..49b6314)
... ... local function getDefaultButtonSize()
19 19 return 28 return 28
20 20 end end
21 21
22 local function formatNumber(n)
23 if n > 1000 then
24 n = math.floor(n / 1000)
25 return tostring(n) .. 'K'
26 else
27 return tostring(n)
28 end
29 end
30
22 31 --[[-- --[[--
23 32 Process timer tick to update remaining aura duration. Process timer tick to update remaining aura duration.
24 33 The update employs artificial delay to hopefully reduce the memory cost of updates. The update employs artificial delay to hopefully reduce the memory cost of updates.
 
... ... local function applyOverlayUpdate(button)
42 51 assert (string.len(unitDesignation) <= 256) assert (string.len(unitDesignation) <= 256)
43 52
44 53 local filter = button.filter or 'HELPFUL' local filter = button.filter or 'HELPFUL'
45 local _, _, _, quantity, _, duration, expirationInstance = UnitAura(unitDesignation, auraName, nil, filter)
54 local _, _, _, quantity, _, duration, expirationInstance,
55 _, _, _, _, _, _, absorbtionAmount = UnitAura(unitDesignation, auraName, nil, filter)
46 56 quantity = quantity or 0 quantity = quantity or 0
47 57 assert (quantity ~= nil) assert (quantity ~= nil)
48 58 assert ('number' == type(quantity)) assert ('number' == type(quantity))
 
... ... local function applyOverlayUpdate(button)
55 65 local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) local remainingDuration = math.max(0, math.ceil(expirationInstance - now))
56 66 local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0 local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0
57 67 local t local t
58 if isDurationUnlimited or remainingDuration > 60 then
68 if button.isAbsorbtionTracker and absorbtionAmount > 0 then
69 t = formatNumber(absorbtionAmount)
70 elseif isDurationUnlimited or remainingDuration > 60 then
59 71 t = nil t = nil
60 72 elseif quantity < 2 then elseif quantity < 2 then
61 73 t = tostring(remainingDuration) t = tostring(remainingDuration)
 
... ... local function initSerendipity(rootFrame)
1040 1052 --[[ Priest general ]]-- --[[ Priest general ]]--
1041 1053 createButton(9, 0, 'Inspiration', 'DaybreakOverlayPriestInspiration', rootFrame) createButton(9, 0, 'Inspiration', 'DaybreakOverlayPriestInspiration', rootFrame)
1042 1054 createButton(9, 1, 'Renew', 'DaybreakOverlayPriestRenew', rootFrame) createButton(9, 1, 'Renew', 'DaybreakOverlayPriestRenew', rootFrame)
1043 createButton(9, 2, 'Power Word: Shield', 'DaybreakOverlayPriestPowerWordShield', rootFrame)
1055 local ill = createButton(9, 2, 'Power Word: Shield', 'DaybreakOverlayPriestPowerWordShield', rootFrame)
1056 ill.isAbsorbtionTracker = true
1044 1057 createButton(10, 2, 'Body and Soul', 'DaybreakOverlayPriestBodyAndSoul', rootFrame) createButton(10, 2, 'Body and Soul', 'DaybreakOverlayPriestBodyAndSoul', rootFrame)
1045 1058
1046 1059 --[[ 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 ]]--
 
... ... local function initDaybreak(rootFrame)
1108 1121 createButton(9, 2, 'Hand of Protection', 'DaybreakOverlayPaladinHandOfProtection', rootFrame) createButton(9, 2, 'Hand of Protection', 'DaybreakOverlayPaladinHandOfProtection', rootFrame)
1109 1122 createButton(9, 3, 'Divine Sacrifice', 'DaybreakOverlayPaladinDivineSacrifice', rootFrame) createButton(9, 3, 'Divine Sacrifice', 'DaybreakOverlayPaladinDivineSacrifice', rootFrame)
1110 1123 createButton(9, 4, 'Aura Mastery', 'DaybreakOverlayPaladinAuraMastery', rootFrame) createButton(9, 4, 'Aura Mastery', 'DaybreakOverlayPaladinAuraMastery', rootFrame)
1111 createButton(10, 0, 'Illuminated Healing', 'DaybreakOverlayPaladinIlluminatedHealing', rootFrame)
1124 local ill =createButton(10, 0, 'Illuminated Healing', 'DaybreakOverlayPaladinIlluminatedHealing', rootFrame)
1125 ill.isAbsorbtionTracker = true
1112 1126 createButton(10, 1, 'Conviction', 'DaybreakOverlayPaladinConviction', rootFrame) createButton(10, 1, 'Conviction', 'DaybreakOverlayPaladinConviction', rootFrame)
1113 1127 createButton(10, 2, 'Power Torrent', 'DaybreakOverlayPaladinPowerTorrent', rootFrame) createButton(10, 2, 'Power Torrent', 'DaybreakOverlayPaladinPowerTorrent', rootFrame)
1114 1128 createButton(10, 3, 'Surge of Dominance', 'DaybreakOverlayPaladinSurgeOfDominance', rootFrame) createButton(10, 3, 'Surge of Dominance', 'DaybreakOverlayPaladinSurgeOfDominance', rootFrame)
File daybreak.toc changed (mode: 100644) (index 373d780..fdf4989)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.1.1-SNAPSHOT
3 ##Version: 0.2.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