View Single Post
06-07-05, 12:49 PM   #1
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
UI Errors in Today's Patch (7 Jun 05)

- There has been an error found with the mod Archaeologist. Disable it until Anduinlothar releases the update on Curse-Gaming. Thread

- There have been reported errors with CT_RaidAssist. Disable it until Cide & TS get the patched version out. Threads here and here

- And the big one that seems to be causing the most problems so far:

[string "Interface\FrameXML\UIPanelTemplates.lua"]:214: attempt to conccatenate local 'button' (a table value)

They seem to have tracked down what the problem that is causing the above error.

For mod users, Vika has uploaded a temporary fix, you can get it here

For mod authors, the complete fix you need for your mod is:

Originally Posted by Vika

Here is a change we were not notified about, the function,FauxScrollFrame_Update

Has been changed.

It now accepts 10 arguements instead of 7.

If you used it previously, like this:

FauxScrollFrame_Update(old1,old2,old3,old4,old5,old6,old7)

You now need to use it like this

FauxScrollFrame_Update(old1,old2,old3,old4,nill,nil,nil,old5,old6,old7)

Please make your changes, Mod Authors
Further info for mod authors:

Originally Posted by Iriel

Technically speaking this wasn't really an API change, and so no notifcation isn't really that surprising. All manner of small changes happen in the UI each patch.

Looking at the UI code, the change was from:

FauxScrollFrame_Update (frame,numItems,numToDisplay,valueStep,highlightFrame,smallHighlightWidth,bigHighlightWidth)

To

FauxScrollFrame_Update (frame,numItems,numToDisplay,valueStep,button,smallWidth,bigWidth,highlightFrame,smallHighlightWidth,bigHighlightWidth)

Other minor changes that might bite people:

* UnitFrame_UpdateManaType(unitFrame) now has the frame as an argument, and used to have no arguments.
* SecondsToTime(seconds, noSeconds) now has the optional noSeconds argument, which wasn't there before.
* BattlefieldFrameJoinButton_OnClick(joinAsGroup) now has the new optional joinAsGroup argument.
* JoinBattlefield(?,?) now has an optional second argument (I'm guessing it'll be joinAsGroup)
Will continue to update this as further errors and fixes are discovered.

Last edited by Cairenn : 06-07-05 at 05:36 PM.
  Reply With Quote