Thread Tools Display Modes
07-12-12, 04:55 AM   #1
kaels
A Cyclonian
AddOn Author - Click to view addons
Join Date: Jan 2011
Posts: 46
Appropriate to submit tickets for minor issues?

I'm a newbie and I don't really know what the procedure is. There are a couple of issues with the current MoP beta build, and I don't know if I should submit tickets or what.

1) assistant.lua: Most recent commit lost an 'and' - no errors, but produces incorrect result:
lua Code:
  1. local isAssistant = UnitInRaid(unit) (WoW5 and UnitIsGroupAssistant(unit) or UnitIsRaidOfficer(unit)) and not (WoW5 and UnitIsGroupLeader(unit) or UnitIsPartyLeader(unit))
should be
lua Code:
  1. local isAssistant = UnitInRaid(unit) and (WoW5 and UnitIsGroupAssistant(unit) or UnitIsRaidOfficer(unit)) and not (WoW5 and UnitIsGroupLeader(unit) or UnitIsPartyLeader(unit))

2) The fix for GetAddonMetadata works for standalone oUF, but embedding is still broken. Easy to fix:
oUF.lua line 5:
lua Code:
  1. local global = GetAddOnMetadata(parent, 'X-oUF') or WoW5 and ((parent == 'oUF' and 'oUF') or parent .. 'oUF')

I can try to figure out how to submit tickets, but I don't know if I'm supposed to.
  Reply With Quote
07-12-12, 05:55 AM   #2
haste
Featured Artist
 
haste's Avatar
Premium Member
Featured
Join Date: Dec 2005
Posts: 1,027
The second issue is just a temporary hack to workaround the fact that GetAddOnMetadata() doesn't return X-values.

I'll look at the first one later.
__________________
「貴方は1人じゃないよ」
  Reply With Quote
07-12-12, 06:17 AM   #3
kaels
A Cyclonian
AddOn Author - Click to view addons
Join Date: Jan 2011
Posts: 46
Thank you
  Reply With Quote

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Appropriate to submit tickets for minor issues?


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off