List of commits:
Subject Hash Author Date (UTC)
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
fix: Typo The error did not affect performance. 216d3738bf4ef2de6be1361b7e2b57a6a7387f71 Vladyslav Bondarenko 2021-01-12 01:28:45
feat!: Show indicators correctly while in combat 0b6bf32b2a6ad2537b8cba766384e2d7f4b053d5 Vladyslav Bondarenko 2021-01-11 23:35:19
Initial commit 447e6a5ac2cc64f0f818663ba08681615327b19a Vladyslav Bondarenko 2021-01-11 20:26:55
Commit cc3229299925367ed62dbbc0d4517430a3f12aea - feat: Automatically assign paladin party role
Author: Vladyslav Bondarenko
Author date (UTC): 2021-02-09 14:45
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-02-09 14:45
Parent(s): 0ebd17578b5dfc0cb47eb63860416536b93d4aaf
Signer:
Signing key:
Signing status: N
Tree: 792ca28da9212fcf76db0807528525fe53c4a1b0
File Lines added Lines deleted
daybreak.lua 53 0
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index 5d86344..6746be3)
... ... local function getDefaultButtonSize()
17 17 return 28 return 28
18 18 end end
19 19
20 --[[--
21 Assign player role in battlegrounds automatically.
22 @section role
23 ]]
24
25 local function getEstimatedBattlegroundRole(unitDesignation)
26 assert (unitDesignation ~= nil)
27 assert ('string' == type(unitDesignation))
28 assert (string.len(unitDesignation) >= 2)
29 assert (string.len(unitDesignation) <= 256)
30
31
32 --[[ TODO ]]--
33 local roleDesignation = 'NONE'
34 local _, classDesignation = UnitClass(unitDesignation)
35 local i = GetPrimaryTalentTree()
36 if 'PALADIN' == classDesignation then
37 if 1 == i then
38 roleDesignation = 'HEALER'
39 elseif 2 == i then
40 roleDesignation = 'TANK'
41 elseif 3 == i then
42 roleDesignation = 'DAMAGER'
43 end
44 end
45
46 assert (roleDesignation ~= nil)
47 assert ('string' == type(roleDesignation))
48 assert (string.len(roleDesignation) >= 2)
49 assert (string.len(roleDesignation) <= 256)
50 return roleDesignation
51 end
52
53
54 local function roleFrameEventProcessor(roleFrame, eventCategory)
55 local unitDesignation = 'player'
56 local roleDesignation = getEstimatedBattlegroundRole(unitDesignation)
57 UnitSetRole(unitDesignation, roleDesignation)
58 end
59
60 local function initRole(rootFrame)
61 assert (rootFrame ~= nil)
62
63 local roleFrame = CreateFrame('FRAME', 'DaybreakRoleFrame', rootFrame)
64 roleFrame:SetScript('OnEvent', roleFrameEventProcessor)
65 roleFrame:RegisterEvent('PLAYER_ENTERING_BATTLEGROUND')
66 roleFrame:RegisterEvent('PLAYER_TALENT_UPDATE')
67 roleFrame:RegisterEvent('ZONE_CHANGED_NEW_AREA')
68
69 return roleFrame
70 end
71
20 72 --[[-- --[[--
21 73 Unit holy power indicator. Unit holy power indicator.
22 74 @section holypower @section holypower
 
... ... local function init(rootFrame)
685 737 initBlessedLife(rootFrame) initBlessedLife(rootFrame)
686 738 initDaybreak(rootFrame) initDaybreak(rootFrame)
687 739 initHolyPower(rootFrame) initHolyPower(rootFrame)
740 initRole(rootFrame)
688 741
689 742 print('[Daybreak]: Addon loaded.') print('[Daybreak]: Addon loaded.')
690 743
File daybreak.toc changed (mode: 100644) (index 54ee787..f8a1543)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.0.18-SNAPSHOT
3 ##Version: 0.0.19-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