Subject | Hash | Author | Date (UTC) |
---|---|---|---|
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 |
fix(choir)!: Health bar in combat | a6622578dd5a1b4e4babf699a4cf1e4eb6bb70d6 | Vladyslav Bondarenko | 2021-10-28 07:42:57 |
feat(choir)!: Decorate unit buttons | 4dc5ed44a9519b275f4256cfe4281110b7a94c9a | Vladyslav Bondarenko | 2021-10-25 21:20:56 |
feat(choir)!: Copy action bar binding | 70ce056ffda7f12d913ce9a42b128ea257bdd0dc | Vladyslav Bondarenko | 2021-10-23 23:34:56 |
feat!: Initial commit | 45c4e781e5ff0a69f8b0bea3a869e2384c7ca454 | Vladyslav Bondarenko | 2021-10-23 06:03:14 |
File | Lines added | Lines deleted |
---|---|---|
.luacheckrc | 2 | 0 |
choir.lua | 20 | 0 |
File .luacheckrc changed (mode: 100644) (index e289638..e83d272) | |||
... | ... | stds.wow = { | |
3 | 3 | globals = {}, --[[ these globals can be set and accessed ]]-- | globals = {}, --[[ these globals can be set and accessed ]]-- |
4 | 4 | read_globals = { | read_globals = { |
5 | 5 | 'CreateFrame', | 'CreateFrame', |
6 | 'GameTooltip', | ||
6 | 7 | 'GetBindingKey', | 'GetBindingKey', |
7 | 8 | 'GetClassColor', | 'GetClassColor', |
8 | 9 | 'GetLocale', | 'GetLocale', |
... | ... | stds.wow = { | |
17 | 18 | 'UnitClass', | 'UnitClass', |
18 | 19 | 'UnitExists', | 'UnitExists', |
19 | 20 | 'UnitExists', | 'UnitExists', |
21 | 'UnitGroupRolesAssigned', | ||
20 | 22 | 'UnitHealth', | 'UnitHealth', |
21 | 23 | 'UnitHealthMax', | 'UnitHealthMax', |
22 | 24 | 'UnitIsDead', | 'UnitIsDead', |
File choir.lua changed (mode: 100644) (index 988ac54..95db5e0) | |||
... | ... | local function createUnitButtonExistanceHandler(unitButton) | |
417 | 417 | return unitexistsHandler | return unitexistsHandler |
418 | 418 | end | end |
419 | 419 | ||
420 | local function createUnitButtonTooltip(unitButton) | ||
421 | assert (unitButton ~= nil) | ||
422 | |||
423 | unitButton:SetScript('OnEnter', function(self) | ||
424 | assert (self ~= nil) | ||
425 | |||
426 | local unitDesignation = self:GetAttribute('unit') or 'none' | ||
427 | if unitDesignation then | ||
428 | local tooltip = GameTooltip | ||
429 | tooltip:SetOwner(self, 'ANCHOR_BOTTOMRIGHT') | ||
430 | tooltip:SetUnit(unitDesignation) | ||
431 | end | ||
432 | end) | ||
433 | |||
434 | unitButton:SetScript('OnLeave', function() | ||
435 | GameTooltip:Hide() | ||
436 | end) | ||
437 | end | ||
438 | |||
420 | 439 | local function createUnitButton(parentFrame, frameName, unit, width, height) | local function createUnitButton(parentFrame, frameName, unit, width, height) |
421 | 440 | assert (parentFrame ~= nil) | assert (parentFrame ~= nil) |
422 | 441 | assert (frameName ~= nil) | assert (frameName ~= nil) |
... | ... | local function createUnitButton(parentFrame, frameName, unit, width, height) | |
459 | 478 | u.roleWidget = roleWidget | u.roleWidget = roleWidget |
460 | 479 | ||
461 | 480 | createUnitButtonExistanceHandler(u) | createUnitButtonExistanceHandler(u) |
481 | createUnitButtonTooltip(u) | ||
462 | 482 | ||
463 | 483 | u:SetAttribute('type', 'target') | u:SetAttribute('type', 'target') |
464 | 484 | u:SetAttribute('unit', unit) | u:SetAttribute('unit', unit) |