• World of Warcraft Addons
Advertisement
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

LibAboutPanel

  Download the Curse Client

Project Updated:
Files Updated: Mon, Oct 20 2008
Category: Libraries
Tags:

[Edit Tags]

Project Manager: Ackis
Current Version: v1.111
Downloads Today: 4
Downloads Total: 549
Favorites: 5
Comments: 8
  • About LibAboutPanel
  •  

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

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 manditory 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)
## Notes-enUS: Plays a noise when you're alt-tabbed for a ready check (even when sound is turned off)

## Author: Ackis
## X-Author-Server: Illidan US
## X-Author-Faction: Horde
## eMail: ackis AT shaw DOT ca
## X-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: 78812 $
## 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/
## X-AceForum: 13439
## X-RelSite-Curse: 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

WoW Wiki

  • Downloads (4)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  LibAboutPanel v1.111 Release 3.0.2 81 10/20/2008
  LibAboutPanel v1.11 Release None 16 10/20/2008
  LibAboutPanel 1.1 Release 2.4.3 74 10/2/2008
  LibAboutPanel 1.0 Release 2.4.3 7 8/12/2008
  • 1 page(s)
Advertisement
  • Screenshots (3)
  •  
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • Ackis said 

    Just a ToC update.

    JewDew4: This is a library for addon authors to use in their mods to add an "About" panel to the Blizzard interface options. Originally written by Tekkub and bastardized by me.

  • JewDew4 said 

    So , what did it doo ? =P
    I kinda didnt get it ^^