View Single Post
12/22/14, 01:45 PM   #2
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Soull Destroyerr View Post
ive deleted and reinstalled it countless times trying to fix it and every time i open it in game setting is a big ul error.. if you can help id really appreciate the response.
Hm, it seems to be a simple oversight, there are two missing lines in addon manifest. If you are using more addons with LibAddonMenu, it will use "submenu" and "colorpicker" widgets from different addons, so it could be easily overlooked.

Open Destinations.txt in text editor and add lines:
Code:
Libs/LibAddonMenu-2.0/controls/submenu.lua
Libs/LibAddonMenu-2.0/controls/colorpicker.lua
Corrected file will look like this:
Code:
## Title: |cFFFFFFDestinations|r
## Version: 1.2.1
## Author: |c990000Snowman|r|cFFFFFFDK|r
## APIVersion: 100010
## Description: |cCC0000Made possible with a LOT of help from|r |c00C000Garkin|r.
## SavedVariables: Destinations_Settings
## OptionalDependsOn: LibAddonMenu-2.0 LibMapPins-1.0 CustomCompassPins

Libs/LibStub/LibStub.lua
Libs/LibMapPins-1.0/LibMapPins-1.0.lua
Libs/CustomCompassPins/CustomCompassPins.lua
Libs/LibAddonMenu-2.0/LibAddonMenu-2.0.lua
Libs/LibAddonMenu-2.0/controls/panel.lua
Libs/LibAddonMenu-2.0/controls/checkbox.lua
Libs/LibAddonMenu-2.0/controls/dropdown.lua
Libs/LibAddonMenu-2.0/controls/slider.lua
Libs/LibAddonMenu-2.0/controls/header.lua
Libs/LibAddonMenu-2.0/controls/submenu.lua
Libs/LibAddonMenu-2.0/controls/colorpicker.lua

Languages/Destinations-$(language).lua
Languages/DestinationsData-$(language).lua
Languages/Destinations_Quests-$(language).lua
DestinationsSharedData.lua

Destinations.lua
  Reply With Quote