Change TOC to include Blizzard required fields - add-on would be marked incompatible without them
(minor edits) |
(Change TOC to include Blizzard required fields - add-on would be marked incompatible without them) |
||
| Line 32: | Line 32: | ||
A functioning AddOn will need a file named <code><YourAddOnDirectoryName>.toc</code> in "<code>Interface\AddOns\YourAddOnDirectoryName\</code>". | A functioning AddOn will need a file named <code><YourAddOnDirectoryName>.toc</code> in "<code>Interface\AddOns\YourAddOnDirectoryName\</code>". | ||
This file needs to have two things - an interface keyword with a correct interface number, and the name(s) of one or more files to load. However, Blizzard asks that you include at least these | This file needs to have two things - an interface keyword with a correct interface number, and the name(s) of one or more files to load. However, Blizzard asks that you include at least these five client recognized tag lines: | ||
## Interface: 30000 | ## Interface: 30000 | ||
## Title: My Add On | ## Title: My Add On | ||
## Version: 1.0.0 | |||
## Notes: A short description of my AddOn | ## Notes: A short description of my AddOn | ||
## Author: Your name or memorable descriptor (e.g. LuckyLuke) | |||
* Tip: Make sure you do not have any extra spaces at the end of the line with the filename specified. If you do, the extra space is taken as part of the filename and will cause your AddOn to silently fail to load. | * Tip: Make sure you do not have any extra spaces at the end of the line with the filename specified. If you do, the extra space is taken as part of the filename and will cause your AddOn to silently fail to load. | ||