Thread Tools Display Modes
09/16/14, 05:00 AM   #1
Kraeius
 
Kraeius's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 25
API 100009 and Patch 1.4.3

I experience some anchor related problems on InfoHub after I patched to 1.4.3. Is there any change about it? And you guys have missing addon name characters on addon selection menu or its just me? Its like third word on an addon's name which coloured with hex codes are missing. But not all of them.
  Reply With Quote
09/16/14, 10:12 AM   #2
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Kraeius View Post
I experience some anchor related problems on InfoHub after I patched to 1.4.3. Is there any change about it? And you guys have missing addon name characters on addon selection menu or its just me? Its like third word on an addon's name which coloured with hex codes are missing. But not all of them.
It seems that addon title can't have more then 32 characters now.
  Reply With Quote
09/16/14, 11:13 AM   #3
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
I'm slowly getting tired of this kind of changes. Why break something that works (1) without actually improving anything (2)? Would be nice if they just said "Hey guys, stop fcoloring your add-on names".

1) Previously if you had long addon name with colored parts, it got cut off where it should... well, almost. If you had a long texture filename in the title, it would happily cut in between |t tags so it came up as a white rectangle.

2) Colored names still don't order properly
  Reply With Quote
09/16/14, 11:23 AM   #4
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
I up this topic to ask if someone else than me got problem with LINK_HANDLER features ?..

I cannot do a LINK_HANDLER:RegisterCallback anymore, Unregister, Clean too.. code is simply ignored ?
Some functions have been removed, but this one still exists but does anything...
  Reply With Quote
09/16/14, 11:57 AM   #5
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Ayantir View Post
I up this topic to ask if someone else than me got problem with LINK_HANDLER features ?..

I cannot do a LINK_HANDLER:RegisterCallback anymore, Unregister, Clean too.. code is simply ignored ?
Some functions have been removed, but this one still exists but does anything...
I don't really understand why there are two different events for clicks (LINK_HANDLER.LINK_CLICKED_EVENT, LINK_HANDLER.LINK_MOUSE_UP_EVENT), but it was not hard to make DerpURL work again with the latest changes in EsoUI. Unfortunately I was not able to make it work with the latest changes you have made to pChat. What kind of magic did you use to break custom links?
  Reply With Quote
09/16/14, 01:06 PM   #6
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
Originally Posted by Garkin View Post
I don't really understand why there are two different events for clicks (LINK_HANDLER.LINK_CLICKED_EVENT, LINK_HANDLER.LINK_MOUSE_UP_EVENT), but it was not hard to make DerpURL work again with the latest changes in EsoUI. Unfortunately I was not able to make it work with the latest changes you have made to pChat. What kind of magic did you use to break custom links?
I rewrited ZO_LinkHandler_OnLinkClicked .. but if you get a better solution, I take it
*reading code of Copy Item Link *

Hum. ok, I read derpurl & your Copy Item Link. And Yes i did those changes, and nothing worked for me. still don't understand.
edit2: ok.. found. was very easy in fact. maybe i need coffee. still don't understand why need to register the 2 handlers now.

Last edited by Ayantir : 09/16/14 at 01:36 PM.
  Reply With Quote
09/16/14, 11:59 AM   #7
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
Another ridiculous change - paths to Lua files in manifest are now limited to 48 characters. Anything longer is not loaded.
  Reply With Quote
09/17/14, 08:45 AM   #8
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by merlight View Post
Another ridiculous change - paths to Lua files in manifest are now limited to 48 characters. Anything longer is not loaded.
It works a bit different way, it is not 48 characters written in the addon manifest, it's a lenght of the file path including the addon folder name.

For example this works (69 characters):
Code:
InventoryInsightFromAshes/libs/LibMediaProvi/LibMediaProvider-1.0.lua
This does not work (70 characters):
Code:
InventoryInsightFromAshes/libs/LibMediaProvid/LibMediaProvider-1.0.lua
Also this works (69 characters):
Code:
Azurah/TestWithLibrary1/LibMediaProvider-1.0/LibMediaProvider-1.0.lua
This does not (70):
Code:
Azurah/TestWithLibrary12/LibMediaProvider-1.0/LibMediaProvider-1.0.lua
Don't ask me why 69 characters, I have no idea. Probably there should be included also "AddOns/" and maybe something else (tested with EU client).
  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » API 100009 and Patch 1.4.3


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