WoWInterface SVN OPieMasque

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 14 to Rev 13
    Reverse comparison

Rev 14 → Rev 13

trunk/LICENSE.txt File deleted \ No newline at end of file
trunk/README.txt
1,60 → 1,35
OPie Masque
==============
===========
 
Adds Masque skinning support to OPie.
* Written by Phanx <addons@phanx.net>
* http://www.wowinterface.com/downloads/info22226-OPieMasque.html
* http://www.curse.com/addons/wow/opie-masque
 
OPie dropped built-in Masque support in version Lime 1. This plugin
restores it. Obviously, you must have both Masque and OPie installed.
There are no options^. Just install it, and you will once again be able
to use Masque to skin OPie.
 
Also, you will be able to modify the numeric cooldown text using OmniCC
(and if you don't have OmniCC or something like it installed, you won't
see numeric cooldown text at all).
 
^ There is now one option, for controlling the visiblity of OPie's color
highlighting, because some Masque skins have really ugly "highlight"
textures. If you don't like how the color highlight looks, open the
Addon.lua file in Notepad and edit the value of the SPECIAL_COLOR_ALPHA
variable at the top. A value of 0 will completely hide the coloring, 1
will make it fully visible, and anything in between (eg. 0.5) will make
it partly transparent.
 
 
Download
Description
-----------
 
* [WoWInterface](http://www.wowinterface.com/downloads/info22226-OPieMasque.html)
* [Curse](http://www.curse.com/addons/wow/opie-masque)
Adds Masque skinning support to OPie.
 
 
Localization
---------------
------------
 
Compatible with all locales. Does not require translations.
 
 
Feedback
-----------
--------
 
To report problems, suggest features, or give other feedback,
post a comment on [the WoWInterface download page](http://www.wowinterface.com/downloads/info22226#comments),
or post a thread on [the WowAce Addon Help forums](http://forums.wowace.com/forumdisplay.php?f=63)
Bugs, errors, or other problems:
Please use the ticket system on either download page.
 
Feature requests or other suggestions:
Please use the ticket system on either download page.
 
Contact
----------
General questions or comments:
Post a comment on either download page.
 
If you need to contact me privately for a reason NOT listed above, you
can send private messages to Phanx on either download site, or email me
at <addons@phanx.net>.
 
 
License
----------
 
Copyright 2013-2014 Phanx <<addons@phanx.net>>.
 
See the accompanying LICENSE file for the terms under which this addon
is licensed. In particular, it may not be redistributed without prior
written permission. Do not upload it to other websites.
If you need to contact me privately for a reason other than those listed
above, you can send me a private message on either download site, or
email me at <addons@phanx.net>.
\ No newline at end of file
trunk/OPieMasque.toc
1,9 → 1,9
## Interface: 50400
## Version: 5.4.8.wowi:revision
## Version: 5.4.7.wowi:revision
 
## Title: OPie Masque
## Notes: Adds Masque skinning support to OPie.
## Notes-deDE: Ermöglicht Masque, um das Aussehen von Opie zu verändern.
## Notes-deDE: Masque ermöglichen, um das Aussehen von Opie zu verändern.
## Notes-esES: Capacita a Masque a cambiar la apariencia de OPie.
## Notes-esMX: Capacita a Masque a cambiar la apariencia de OPie.
## Notes-frFR: Accorde à Masque à modifier l'apparence du OPie.
12,8 → 12,7
 
## Author: Phanx
## X-Email: addons@phanx.net
## X-Copyright: Copyright 2013-2014 A. "Phanx" Kinley.
## X-License: Do not redistribute. See accompanying LICENSE file for details.
## X-License: Public Domain
## X-CompatibleLocales: deDE, enUS, esES, esMX, frFR, itIT, ptBR, koKR, ruRU, zhCN, zhTW
## X-Website: http://www.wowinterface.com/downloads/info22226-OPieMasque.html
## X-Curse-Project-Name: opie-masque
trunk/UNLICENSE.txt New file
0,0 → 1,24
This is free and unencumbered software released into the public domain.
 
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
 
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
 
For more information, please refer to <http://unlicense.org/>
\ No newline at end of file
trunk/Addon.lua
1,14 → 1,13
--[[--------------------------------------------------------------------
OPie Masque
Adds Masque skinning support to OPie.
Copyright 2013-2014 Phanx <addons@phanx.net>
See the accompanying README and LICENSE files for more information.
Written by Phanx <addons@phanx.net>
See the accompanying README file for more information.
http://www.wowinterface.com/downloads/info22226-OPieMasque.html
http://www.curse.com/addons/wow/opie-masque/
----------------------------------------------------------------------]]
 
local SPECIAL_COLOR_ALPHA = 0.75
-- 0 = invisible, 1 = fully visible
local SPECIAL_COLOR_ALPHA = 0.75 -- 0 = invisible, 1 = fully visible
 
------------------------------------------------------------------------