Thread Tools Display Modes
12/28/21, 10:06 AM   #1
identico
Join Date: Dec 2021
Posts: 6
Libs in Pawksickles addon

Pawksickles

It is outdated, and still works. BUT! It is not working with independent Libs, because it has its own libraries. What should i change in code to delete these dependencies?

Addon is great and it is better than ConsoleFont.
  Reply With Quote
12/28/21, 10:33 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
There are hundreds of posts about that in the forums already including the sticky posts at the addon help forum (where you currently post to...), please read them BEFORE posting (as they tell you to do) and especially read the sticky one about dependencies:
https://www.esoui.com/forums/showthread.php?t=9149

Remove all subfolders in "libs".
Install the libs in there directly to live/Addons (but do not install LibStub anymore as it is obsolete).
Change code lines in the lua files where "libStub" is used to use the global libraries variables instead e.g. change something like local LAM=LibStub("LibAddonMenu-2.0") to local LAM = LibAddonMenu2
Same for LibmediaProvider, e.g. change to local lmp = LibMediaProvider instead of LibStub usage.
  Reply With Quote
12/28/21, 10:43 AM   #3
identico
Join Date: Dec 2021
Posts: 6
Originally Posted by Baertram View Post
There are hundreds of posts about that in the forums already including the sticky posts at the addon help forum (where you currently post to...), please read them BEFORE posting (as they tell you to do) and especially read the sticky one about dependencies:
https://www.esoui.com/forums/showthread.php?t=9149

Remove all subfolders in "libs".
Install the libs in there directly to live/Addons (but do not install LibStub anymore as it is obsolete).
Change code lines in the lua files where "libStub" is used to use the global libraries variables instead e.g. change something like local LAM=LibStub("LibAddonMenu-2.0") to local LAM = LibAddonMenu2
Same for LibmediaProvider, e.g. change to local lmp = LibMediaProvider instead of LibStub usage.
I'm sorry =\ Thank you very much!
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » Libs in Pawksickles addon

Thread Tools
Display Modes

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