What it does
Lib About Panel is a small library which will add an about panel to your Blizzard interface options. You can specify whether or not to have the panel linked to a main panel, or just have it created separately. It will populate the fields of the about panel from the fields located in your ToC.
Where to get it
- CurseForge - Often Beta quality
- Curse - Most updated stable version
Donations
I have setup a donation site via Pledgie. Feel free to donate if you like this mod. I have put countless hours of time and effort into it along with many people who have helped me. I did not write this mod with the intent to make any money from it, I wrote it to help me with some needs that I saw in-game.
If you don't wish to donate money feel free to consider one of the following methods which may be more suitable:
- Volunteer time at your local animal shelter such as the Society for Prevention of Cruelty for Animals (SPCA) or drop a few bucks off for them. If you do this, please let me know.
- Send me some UDE Points. These points are obtained from the World of Warcraft TCG and Mini game.
- Send some gold to one of the authors in-game or help out with some achievements, or even send a message saying thanks. :)
How to get it to work
To create the about panel, just add the following line of code into your mod:
LibStub("LibAboutPanel").new(parentframe, addonname)
It will also return the frame so you can call it like:
frame = LibStub("LibAboutPanel").new(parentframe, addonname)
The parentframe option may be nil, in which case it will not anchor the about panel to any frame. Otherwise, it will anchor the about frame to that frame.
The second option is the name of your add-on. This is mandatory as the about panel will pull all information from this add-ons ToC.
The ToC fields which the add-on reads are:
"Notes"
"Version"
"Author"
"X-Author-Faction"
"X-Author-Server"
"X-Category"
"X-License"
"X-Email"
"X-Website"
"X-Credits"
"X-Localizations"
"X-Donate"
It will only read fields when they exist, and skip them if they do not exist.
Example Code
ToC File:
## Title: Alt-Tabber
## Notes: Plays a noise when you're alt-tabbed for a ready check (even when sound is turned off)
## Author: Ackis
## X-Author-Server: Azgalor US
## X-Author-Faction: Horde
## eMail: ackis AT shaw DOT ca
## X-License: MIT modified with notification clause
## X-Donate: Send me UDE Point codes, a Murky Code, or donate a few bucks/hours at your local animal shelter.
## Interface: 20400
## Version: 1.2
## X-Revision: Rev: 431
## X-Date: $Date: 2008-07-20 14:41:47 -0600 (Sun, 20 Jul 2008) $
## X-credits:
## X-Category: Raid
## X-Localizations: enUS
## X-Website: http://www.wowwiki.com/AltTabber/
## X-Feedback: http://www.curse.com/downloads/details/12774/
Load the panel in LUA code not attached to anything:
LibStub("LibAboutPanel").new(nil, "AltTabber")
Load the panel in LUA code attached to other panels:
self.optionsFrame[L["About"]] = LibStub("LibAboutPanel").new("Ackis Recipe List", "Ackis Recipe List")
Known Issues
All known issues will be kept at the CurseForge tracker.
Please use the CurseForge tracker to file bug reports.
Wish List
Please use the CurseForge tracker to add suggestions and feature requests.
Bug Reporting
Please use the CurseForge tracker to file bug reports.
Wiki
- 3 comments
- 3 comments
Facts
- Date created
- 12 Aug 2008
- Category
- Last update
- 23 Jun 2009
- Development stage
- Release
- Language
- enUS
- License
- Public Domain
- Curse link
- LibAboutPanel
- Reverse relationships
- 29
- Recent files
- A: v1.41-2-g892469d for 3.1.0 on 23 Jun 2009
- A: v1.41-1-gcdd93ae for 3.1.0 on 22 Jun 2009
- R: v1.41 for 3.1.0 on 27 May 2009
- A: v1.4-4-g6e00198 for 3.1.0 on 27 May 2009
- A: v1.4-1-ge30258e for 3.1.0 on 27 May 2009
Authors
Relationships
- Tool used
- Download Count
- Querier
- Embedded library
- CallbackHandler-1.0
- LibStub
- #3
Ackis Mon, 20 Oct 2008 05:07:40Just a ToC update.
- #2
Ackis Wed, 13 Aug 2008 17:29:37Wiki has been created at WoWWIki
- #1
Ackis Tue, 12 Aug 2008 16:42:28Really only posted this to make code changes a bit more efficient, and to play around with CF's svn system. :) Which I'm liking so far :D