WoWInterface SVN StellarUF

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/Stuf
    from Rev 124 to Rev 125
    Reverse comparison

Rev 124 → Rev 125

text.lua
287,7 → 287,11
local r, g, b, text, symbol
if cevent == "WOUND" then
if amount ~= 0 then
text = "-"..amount
if amount > 999999 then
text = format("-%.2fM", amount/1000000)
else
text = "-"..amount
end
if flag == "CRITICAL" then
symbol = "!"
elseif flag == "CRUSHING" then
306,7 → 310,11
text = CombatFeedbackText[flag]
end
elseif cevent == "HEAL" then
text = "+"..amount
if amount > 999999 then
text = format("+%.2fM", amount/1000000)
else
text = "+"..amount
end
symbol = (flag == "CRITICAL" and "!") or ""
r, g, b = 0, 1, 0
elseif cevent == "BLOCK" then
Stuf.toc
1,8 → 1,8
## Interface: 60000
## Interface: 60200
## Title: Stuf Unit Frames
## Author: TotalPackage
## Notes: Main unitframes replacement. Assembly optional.
## Version: 6.0.001
## Version: 6.2.001
 
## SavedVariables: StufDB
## SavedVariablesPerCharacter: StufCharDB
libs/LibSharedMedia-3.0/LibSharedMedia-3.0/LibSharedMedia-3.0.lua
1,6 → 1,6
--[[
Name: LibSharedMedia-3.0
Revision: $Revision: 89 $
Revision: $Revision: 91 $
Author: Elkano (elkano@gmx.de)
Inspired By: SurfaceLib by Haste/Otravi (troeks@gmail.com)
Website: http://www.wowace.com/projects/libsharedmedia-3-0/
9,7 → 9,7
License: LGPL v2.1
]]
 
local MAJOR, MINOR = "LibSharedMedia-3.0", 6000201 -- 6.0.2 v1 / increase manually on changes
local MAJOR, MINOR = "LibSharedMedia-3.0", 6010002 -- 6.1.0 v2 / increase manually on changes
local lib = LibStub:NewLibrary(MAJOR, MINOR)
 
if not lib then return end
223,6 → 223,13
end
mediatype = mediatype:lower()
if mediatype == lib.MediaType.FONT and ((langmask and band(langmask, LOCALE_MASK) == 0) or not (langmask or locale_is_western)) then return false end
if mediatype == lib.MediaType.SOUND and type(data) == "string" then
local path = data:lower()
-- Only ogg and mp3 are valid sounds.
if not path:find(".ogg", nil, true) and not path:find(".mp3", nil, true) then
return false
end
end
if not mediaTable[mediatype] then mediaTable[mediatype] = {} end
local mtable = mediaTable[mediatype]
if mtable[key] then return false end
libs/LibSharedMedia-3.0/LibSharedMedia-3.0.toc
1,6 → 1,6
## Interface: 60000
## Interface: 60200
## LoadOnDemand: 1
## X-Curse-Packaged-Version: r89
## X-Curse-Packaged-Version: 6.2.0
## X-Curse-Project-Name: LibSharedMedia-3.0
## X-Curse-Project-ID: libsharedmedia-3-0
## X-Curse-Repository-ID: wow/libsharedmedia-3-0/mainline
8,12 → 8,12
## Title: Lib: SharedMedia-3.0
## Notes: Shared handling of media data (fonts, sounds, textures, ...) between addons.
## Author: Elkano
## Version: 3.0-89
## Version: 3.0-93
## X-Website: http://www.wowace.com/projects/libsharedmedia-3-0/
## X-Category: Library
 
## X-Revision: 89
## X-Date: 2014-10-16T17:09:57Z
## X-Revision: 93
## X-Date: 2015-06-24T01:30:16Z
 
LibStub\LibStub.lua
CallbackHandler-1.0\CallbackHandler-1.0.lua