View Single Post
04/15/20, 02:56 PM   #9
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Minion got some trouble sometimes:_
Depending on your folder depth you maybe need to change the scan depth of Minion. At the top right edge there is a gear icon where you can open the Minion settings.
And after you have added the folder manually (must be the live/AddOns folder) and the scan has taken place it might be that Minion keeps being empty (no addons shown).
Just close it, close the system tray icon as well so Minion is not active in the taskmanager anymore. And after a restart it most of the time shows the game and the installed addons then.

About PVPMeter:
if you still use it please logout, close the game.
Find the folder live/AddOns/PVPMeter and edit the file PVPMeter.txt with a text editor.
Change the exisitng line where there is written

Code:
## DependsOn: ...
(could be that it is ## OptionalDependsOn, then just leave this line and add the line below new!)
to this:

Code:
## DependsOn: LibAddonMenu-2.0>=28 LibMainMenu>=8
This assures that the addon won't be loaded with old libraries.

You could also search in the addon's lua files for LibStub("LibAddonMenu-2.0") and exhange it with LibAddonMenu2
e.g.
File PVPMeterSettings.lua
local LAM = LibStub("LibAddonMenu-2.0")
->
local LAM = LibAddonMenu2

In file PVPMeterMenu.lua
The same for LibMainMenu
local LMM = LibStub("LibMainMenu")
->
local LMM = LibMainMenu

Last edited by Baertram : 04/15/20 at 02:59 PM.
  Reply With Quote