List of commits:
Subject Hash Author Date (UTC)
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
fix: Adjust position of general indicators b1adb3cd69c9355552ac0faece7c7668b9771de6 Vladyslav Bondarenko 2021-01-26 20:26:16
Commit 960a1e592bfe9b2f7e0b537da24ecbef79c7f479 - feat: Power bar indicator custom texture
Hopefully improve visibility of paladin custom holy power bar.
Author: Vladyslav Bondarenko
Author date (UTC): 2021-03-03 03:45
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-03-03 03:45
Parent(s): 5918293c97e978bc2e33309e18c6279ce0c8f808
Signer:
Signing key:
Signing status: N
Tree: 0b8b2ec3b05874ec6306d1e25278aa838251639b
File Lines added Lines deleted
daybreak.lua 6 5
daybreak.toc 2 1
power.tga 0 0
File daybreak.lua changed (mode: 100644) (index 3a148de..a7643fe)
... ... Access constant default indicator color.
296 296 @return red green blue @return red green blue
297 297 ]] ]]
298 298 local function getHolyPowerIndicatorColor() local function getHolyPowerIndicatorColor()
299 return 153 / 255, 0 / 255, 102 / 255
299 return 202 / 255, 0 / 255, 102 / 255
300 300 end end
301 301
302 302 --[[-- --[[--
 
... ... local function applyHolyPowerIndicatorCombat(self)
447 447 while (i < hppq - 1) do while (i < hppq - 1) do
448 448 i = i + 1 i = i + 1
449 449 local p = t[i] local p = t[i]
450 p:SetTexture(r, g, b, 1)
450 p:SetVertexColor(r, g, b, 1)
451 451 end end
452 452 if q then if q then
453 453 local decayInstance = getDecayInstance(self) local decayInstance = getDecayInstance(self)
454 454 assert (decayInstance ~= nil) assert (decayInstance ~= nil)
455 455 local a = produceHolyPowerIndicatorTransparency(unitDesignation, decayInstance) local a = produceHolyPowerIndicatorTransparency(unitDesignation, decayInstance)
456 456 a = math.min(math.max(0.34, a + 0.34), 1) a = math.min(math.max(0.34, a + 0.34), 1)
457 q:SetTexture(r, g, b, a)
457 q:SetVertexColor(r * a, g * a, b * a, a)
458 458 end end
459 459 end end
460 460
 
... ... local function createHolyPowerIndicator(frameName, parentFrame, unitDesignation)
567 567
568 568 local background = f:CreateTexture(frameName .. 'Background', 'BACKGROUND') local background = f:CreateTexture(frameName .. 'Background', 'BACKGROUND')
569 569 background:SetAllPoints() background:SetAllPoints()
570 background:SetTexture(0, 0, 0, 0.64)
570 background:SetTexture(0, 0, 0, 0.2)
571 571 f.background = background f.background = background
572 572
573 573 local t = {} local t = {}
 
... ... local function createHolyPowerIndicator(frameName, parentFrame, unitDesignation)
577 577 while (q < maxQuantity) do while (q < maxQuantity) do
578 578 q = q + 1 q = q + 1
579 579 local p = f:CreateTexture(frameName .. tostring(q), 'OVERLAY') local p = f:CreateTexture(frameName .. tostring(q), 'OVERLAY')
580 p:SetTexture(getHolyPowerIndicatorColor())
580 p:SetTexture("Interface\\AddOns\\daybreak\\power.tga")
581 p:SetVertexColor(getHolyPowerIndicatorColor())
581 582 p:SetSize(size, size) p:SetSize(size, size)
582 583 p:SetPoint('BOTTOMLEFT', padding + x * (size + padding), y + padding) p:SetPoint('BOTTOMLEFT', padding + x * (size + padding), y + padding)
583 584 p:Hide() p:Hide()
File daybreak.toc changed (mode: 100644) (index fd5f067..373d780)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.1.0-SNAPSHOT
3 ##Version: 0.1.1-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
7 7 unifont.ttf unifont.ttf
8 power.tga
File power.tga added (mode: 100644) (index 0000000..392e06a)
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