Thread: pChat
View Single Post
09/30/19, 03:32 AM   #10
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
I managed to have Pchat works fine actually BUT only by updating the libs, and using only the non embedded libraries up to date.
Seems to be a good example for the "do not include libraries loaded from pChat.txt":
https://wiki.esoui.com/Libraries#Pro..._but_how.3F.29


Change the pChat.txt from this:
Code:
## Title: pChat
## Description: pChat overhaul the way text is displayed in the chatbox
## Version: 9.3.11.25
## Author: DesertDwellers
## APIVersion: 100023 100024
## SavedVariables: PCHAT_OPTS
## AddOnVersion: 9031125
## OptionalDependsOn: LibAddonMenu-2.0

lib/libstub/libstub.lua
lib/LibAnnyoingUpdateNotificationInGame/LibAnnyoingUpdateNotificationInGame.lua
lib/LibMediaProvider-1.0/LibMediaProvider-1.0.lua
lib/LibMainMenu/LibMainMenu.lua
lib/LibCustomTitles/LibCustomTitles.lua

lib/LibAddonMenu-2.0/LibAddonMenu-2.0.lua
lib/LibAddonMenu-2.0/controls/button.lua
lib/LibAddonMenu-2.0/controls/custom.lua
lib/LibAddonMenu-2.0/controls/description.lua
lib/LibAddonMenu-2.0/controls/divider.lua
lib/LibAddonMenu-2.0/controls/editbox.lua
lib/LibAddonMenu-2.0/controls/iconpicker.lua
lib/LibAddonMenu-2.0/controls/submenu.lua
lib/LibAddonMenu-2.0/controls/texture.lua
lib/LibAddonMenu-2.0/controls/panel.lua
lib/LibAddonMenu-2.0/controls/checkbox.lua
lib/LibAddonMenu-2.0/controls/colorpicker.lua
lib/LibAddonMenu-2.0/controls/dropdown.lua
lib/LibAddonMenu-2.0/controls/header.lua
lib/LibAddonMenu-2.0/controls/slider.lua
lib/libChat2/libChat2.lua

i18n/en.lua
i18n/$(language).lua
fonts.lua
pChat.lua
pChat.xml
copyDialog.xml
bindings.xml
To this:
Code:
; This Add-on is not created by, affiliated with or sponsored by ZeniMax
; Media Inc. or its affiliates. The Elder Scrolls® and related logos are
; registered trademarks or trademarks of ZeniMax Media Inc. in the United
; States and/or other countries. All rights reserved.
; You can read the full terms at https://account.elderscrollsonline.com/add-on-terms

## Title: pChat
## Description: pChat overhaul the way text is displayed in the chatbox
## Version: 9.3.11.25
## Author: DesertDwellers
## APIVersion: 100028 100029
## SavedVariables: PCHAT_OPTS
## AddOnVersion: 9031125
## DependsOn: LibAddonMenu-2.0 LibMediaProvider-1.0

lib/LibAnnyoingUpdateNotificationInGame/LibAnnyoingUpdateNotificationInGame.lua
lib/LibCustomTitles/LibCustomTitles.lua
lib/libChat2/libChat2.lua
lib/LibMainMenu/LibMainMenu.lua

i18n/en.lua
i18n/$(language).lua
fonts.lua
pChat.lua
pChat.xml
copyDialog.xml
bindings.xml
Delete the following subfolders:
Code:
libs/LibAddonMenu-2.0
Install the following libraries as standalones:
LibAddonMenu-2.0
LibMediaProvider-1.0

Last edited by Baertram : 10/01/19 at 07:32 AM.
  Reply With Quote