Subject | Hash | Author | Date (UTC) |
---|---|---|---|
fix(choir): Render dungeon role correctly for Cata | 590a4abfd82659624688c4c1658de87693d3cd30 | Vladyslav Bondarenko | 2021-12-28 00:31:52 |
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 |
File | Lines added | Lines deleted |
---|---|---|
choir.lua | 9 | 0 |
File choir.lua changed (mode: 100644) (index a4908cd..c00782c) | |||
... | ... | local function updateUnitButtonRoleWidget(roleWidget, unitDesignation) | |
341 | 341 | assert (unitDesignation ~= nil) | assert (unitDesignation ~= nil) |
342 | 342 | ||
343 | 343 | local isTank, isHealer, isDamager = UnitGroupRolesAssigned(unitDesignation) | local isTank, isHealer, isDamager = UnitGroupRolesAssigned(unitDesignation) |
344 | |||
345 | --[[ Corner-case for Interface >= 40000 ]]-- | ||
346 | if 'string' == type(isTank) then | ||
347 | local roleDesignation = isTank | ||
348 | isTank = 'TANK' == roleDesignation | ||
349 | isHealer = 'HEALER' == roleDesignation | ||
350 | isDamager = 'DAMAGER' == roleDesignation | ||
351 | end | ||
352 | |||
344 | 353 | if isTank or isHealer or isDamager then | if isTank or isHealer or isDamager then |
345 | 354 | roleWidget:Show() | roleWidget:Show() |
346 | 355 | roleWidget:SetTexCoord(getRoleTexCoord(isTank, isHealer, isDamager)) | roleWidget:SetTexCoord(getRoleTexCoord(isTank, isHealer, isDamager)) |