List of commits:
Subject Hash Author Date (UTC)
fix(choir): Show raid frame at player login 21a86d3840fb810c4ff4c67490aae7d5251c1bae Vladyslav Bondarenko 2021-11-24 06:07:10
feat(choir)!: Add interface options for raid frame ce677d3d0e7cfe05d1da5b159f52a0808db9ce9a Vladyslav Bondarenko 2021-11-24 06:05:37
feat(choir): Add conf spell shortcut default button c8e2c3493896f5ae589c516f742bbafd528140db Vladyslav Bondarenko 2021-11-24 02:28:19
feat(choir)!: Add configuration menu 12319ce873aecea4bfc0addec7c5ac5c1f225237 Vladyslav Bondarenko 2021-11-21 09:26:05
feat(choir): Add unit game tooltip 3ec490e489bb105f5096d5bb3e56814873deec3f Vladyslav Bondarenko 2021-11-20 09:34:12
fix(choir): Raid group frame arrange correctly b592f3f018ee521a821447ccf837aded703ad447 Vladyslav Bondarenko 2021-11-18 22:02:52
feat(choir): Render group role indicator for units 5f3a7c24d3f79035b8faa156355a2d017688134e Vladyslav Bondarenko 2021-11-18 22:02:27
feat(choir): Adjust raid group frame position f99a54133a1761034baca93bfa8814c614191818 Vladyslav Bondarenko 2021-11-18 00:35:35
feat(choir): Add debuff buttons for raid fe66339420a9eb5e4823cc4fe45e0d97b2983073 Vladyslav Bondarenko 2021-11-17 00:55:54
feat(choir): Add texture to health bars ddaeb29d7ecfd95a98bcc85b3f4f7676c7ccd4d7 Vladyslav Bondarenko 2021-11-14 21:40:26
fix(choir)!: Obscure critical error 0f203b4d69f57240e97c66f1ab4510c6ac3e9276 Vladyslav Bondarenko 2021-11-11 12:52:02
feat(choir): Toggle button visibility given roster d193e7b5eb38cb3ac69d74eec1f96e00d90b6098 Vladyslav Bondarenko 2021-11-10 23:46:24
feat(choir)!: Add permanent raid frame 1839c35af4212c09038e972547d6b5893a9ce219 Vladyslav Bondarenko 2021-11-10 16:04:25
feat(choir)!: Employ Clearcasting subset feat 733c81538c3c965f07993fd7ddc482e724121b75 Vladyslav Bondarenko 2021-11-04 22:40:48
fix(choir): Improve shortcut binding keys eb636de6e3f7bada9f0064ffe4db1db3f6433f6c Vladyslav Bondarenko 2021-10-31 18:55:10
fix(choir): Improve choirBindingKey attribute handling 6c5c2214cc1809e5e5e59cd3672da3cca3f2701f Vladyslav Bondarenko 2021-10-31 13:23:24
feat(choir)!: Add spell shortcut prototype d34f22a6983ffc41122acb40d22e3cb29c208a3c Vladyslav Bondarenko 2021-10-31 12:39:39
feat(choir)!: Add spell effects on unit d581df9fce342709267a3221dead4d00b9d14319 Vladyslav Bondarenko 2021-10-31 10:49:19
feat(choir)!: Close spoiler by pressing Esc 22d7370011ac45d25a410a3f569183d0cc9fb232 Vladyslav Bondarenko 2021-10-29 16:10:08
feat(choir)!: Range indicator 931a0510b562986ec76dc22f329f4af4ed723cdf Vladyslav Bondarenko 2021-10-29 10:40:46
Commit 21a86d3840fb810c4ff4c67490aae7d5251c1bae - fix(choir): Show raid frame at player login
Player unit button should be shown in the custom raid frame at all
times. Previously, the button did not appear correctly when user appears
in the game world, that is when player logs in, specifically. After
player raid or party changed it rendered correctly so the error was not
detected earlier. It is not fixed.
Author: Vladyslav Bondarenko
Author date (UTC): 2021-11-24 06:07
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-11-24 06:07
Parent(s): ce677d3d0e7cfe05d1da5b159f52a0808db9ce9a
Signer:
Signing key:
Signing status: N
Tree: 5157f51c4855a50eb59033a57b3dba34e5321767
File Lines added Lines deleted
choir.lua 2 0
File choir.lua changed (mode: 100644) (index f995171..a4908cd)
... ... local function createRaidGroupFrame(raidFrame, groupNumber, unitSetOverride)
897 897 groupFrame:RegisterEvent('UPDATE_BATTLEFIELD_SCORE') groupFrame:RegisterEvent('UPDATE_BATTLEFIELD_SCORE')
898 898 groupFrame:RegisterEvent('ADDON_LOADED') groupFrame:RegisterEvent('ADDON_LOADED')
899 899 groupFrame:SetScript('OnEvent', raidGroupEventProcessor) groupFrame:SetScript('OnEvent', raidGroupEventProcessor)
900 raidGroupEventProcessor(groupFrame)
900 901
901 902 return groupFrame return groupFrame
902 903 end end
 
... ... local function createRaidFrame(rootFrame, spoilerHolder)
938 939 local partyUnitSet = {'player', 'party1', 'party2', 'party3', 'party4'} local partyUnitSet = {'player', 'party1', 'party2', 'party3', 'party4'}
939 940 local playerPartyFrame = createRaidGroupFrame(raidFrame, maxSubgroupQuantity + 1, partyUnitSet) local playerPartyFrame = createRaidGroupFrame(raidFrame, maxSubgroupQuantity + 1, partyUnitSet)
940 941 playerPartyFrame:SetScript('OnEvent', partyFrameEventProcessor) playerPartyFrame:SetScript('OnEvent', partyFrameEventProcessor)
942 partyFrameEventProcessor(playerPartyFrame)
941 943
942 944 raidFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID') raidFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID')
943 945 raidFrame:RegisterEvent('PARTY_MEMBERS_CHANGED') raidFrame:RegisterEvent('PARTY_MEMBERS_CHANGED')
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/choir

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/choir

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/choir

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