Download
(52Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 04-06-24 05:07 AM
Pictures
File Info
Compatibility:
Classic (1.15.2)
Plunderstorm (10.2.6)
WOTLK Patch (3.4.3)
Updated:04-06-24 05:07 AM
Created:10-09-19 02:47 PM
Downloads:1,701
Favorites:2
MD5:
Categories:Libraries, Classic - General, WOTLK Classic, Developer Utilities
10.2.6

LibAboutPanel-2.0

Version: 1.0.63
by: myrroddin [More]

LibAboutPanel-2.0
An embedded library that scans your AddOn's ToC to display that information either as a separate About button in the Interface Options panel or as part of AceConfig-3.0 options table.

Getting LAP into your own AddOn
Step one is to add LibAboutPanel-2.0 to your addon's .pkgmeta file. Assuming you have a folder named Libs into which you are adding all your libs, the .pkgmeta section would look like the following:

Code:
externals:
  Libs/LibAboutPanel-2.0: https://github.com/Myrroddin/libaboutpanel-2.0
Step two is in your ToC file, with either of the above methods, load the .xml file that loads LibAboutPanel-2.0:

Code:
Libs\LibAboutPanel-2.0\lib.xml
The final step is embedding LibAboutPanel-2.0 into your addon to use its APIs. Embedding LAP is optional yet recommended.

Lua Code:
  1. -- using Ace3
  2. local MyAddon = LibStub("AceAddon-3.0"):NewAddon("MyAddon", "LibAboutPanel-2.0")
  3.  
  4. -- not using Ace3
  5. local folderName, MyAddon = ...
  6. LibStub("LibAboutPanel-2.0"):Embed(MyAddon)
  7.  
  8. -- now you can use the APIs
  9. function MyAddon:DoSomething()
  10.     -- self refers to MyAddon
  11.     self:CreateAboutPanel() -- not strictly accurate, see docs
  12. end
  13.  
  14. -- not embedding LAP
  15. local folderName, MyAddon = ...
  16. local LAP = LibStub("LibAboutPanel-2.0")
  17.  
  18. function MyAddon:DoSomething()
  19.     LAP:CreateAboutPanel() -- not strictly accurate, see docs
  20. end

Please be aware that capitalization in the .pkgmeta and .toc files matters, and the different slashes ("/" in .pkgmeta and "\" in .toc files). These conventions are standards set by others. Like any other WoW addon or library, LibAboutPanel-2.0 must follow the standards.

Compatible game versions
LibAboutPanel-2.0 should work in all versions of the game.

Not a drop-in replacement
LibAboutPanel and LibAboutPanel-2.0 do more or less the same thing, but LAP2 will not replace Ackis' version just because you have it installed. As an author, you can make the choice which you prefer.

API
You can find the API here on this page, and the example here on how to embed and use LAP2.

Features that are new or different than Ackis' LibAboutPanel
  • More localization. LAP2 uses global strings to translate factions, locale names, etc. It also has more translatable strings than the original.
  • Its API is embedded, so MyAddOn:API() is the norm.
  • LAP2 has an API that supports AceConfig-3.0 options tables, thus the About panel can be displayed as a tab, part of a tree, etc.

List of supported ToC fields
  • Author
  • Notes in all languages the author has translated
  • Title in all languages the author has translated
  • Version @project-version@ is replaced with a translation of Developer Build
  • X-Date or X-ReleaseDate
  • X-Revision including wowi:revision
  • X-Author-Guild
  • X-Author-Faction (Horde or Alliance) translated
  • X-Author-Server
  • X-Website
  • X-Email
  • X-Localizations (enUS, deDE, etc) which are translated themselves. Note the z not s
  • X-Credits
  • X-Category
  • X-License All Rights Reserved is translated
  • X-Copyright Copyright and (c) are translated

Localization
There are several phrases and words that need translating. Please help and contribute.

Bugs and suggestions
There is a ticket tracker for that.

Lib: AboutPanel-2.0
1.0.63 (2024-04-06)
Full Changelog Previous Releases
  • [Classic] Bump ToC for patch 1.15.2
Optional Files (0)


There have been no comments posted to this file.
Be the first to add one.



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.