View Single Post
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