diff --git a/Details.toc b/Details.toc
index e4cf6d32..3ee42ad7 100644
--- a/Details.toc
+++ b/Details.toc
@@ -1,4 +1,4 @@
-## Interface: 70100
+## Interface: 70200
## Title: Details
## Notes: Computes detailed infos about combats.
## SavedVariables: _detalhes_global
@@ -9,16 +9,6 @@ Libs\libs.xml
#@end-no-lib-strip@
locales\Details-enUS.lua
-locales\Details-deDE.lua
-locales\Details-esES.lua
-locales\Details-esMX.lua
-locales\Details-frFR.lua
-locales\Details-itIT.lua
-locales\Details-koKR.lua
-locales\Details-ptBR.lua
-locales\Details-ruRU.lua
-locales\Details-zhCN.lua
-locales\Details-zhTW.lua
boot.lua
indent.lua
diff --git a/Libs/DF/cooltip.lua b/Libs/DF/cooltip.lua
index a47c259f..50ab5c49 100644
--- a/Libs/DF/cooltip.lua
+++ b/Libs/DF/cooltip.lua
@@ -901,7 +901,7 @@ function DF:CreateCoolTip()
function CoolTip:RefreshSpark (menuButton)
menuButton.spark:ClearAllPoints()
- menuButton.spark:SetPoint ("LEFT", menuButton.statusbar, "LEFT", (menuButton.statusbar:GetValue() * (menuButton.statusbar:GetWidth() / 100)) - 3, 0)
+ menuButton.spark:SetPoint ("LEFT", menuButton.statusbar, "LEFT", (menuButton.statusbar:GetValue() * (menuButton.statusbar:GetWidth() / 100)) - 5, 0)
menuButton.spark2:ClearAllPoints()
menuButton.spark2:SetPoint ("left", menuButton.statusbar, "left", menuButton.statusbar:GetValue() * (menuButton.statusbar:GetWidth()/100) - 16, 0)
end
diff --git a/Libs/DF/cooltip.xml b/Libs/DF/cooltip.xml
index e00483e6..d9723670 100644
--- a/Libs/DF/cooltip.xml
+++ b/Libs/DF/cooltip.xml
@@ -173,12 +173,12 @@
-
+
-
+
-
+
diff --git a/Libs/DF/fw.lua b/Libs/DF/fw.lua
index fcdab838..c515a11e 100644
--- a/Libs/DF/fw.lua
+++ b/Libs/DF/fw.lua
@@ -1,5 +1,5 @@
-local dversion = 48
+local dversion = 49
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary (major, minor)
diff --git a/Libs/DF/panel.lua b/Libs/DF/panel.lua
index 42361e0b..78d384f0 100644
--- a/Libs/DF/panel.lua
+++ b/Libs/DF/panel.lua
@@ -3103,7 +3103,7 @@ end
function DF:CreateGFrame (parent, w, h, linewidth, onenter, onleave, member, name)
local f = CreateFrame ("frame", name, parent)
f:SetSize (w or 450, h or 150)
- f.CustomLine = [[Interface\AddOns\Details\Libs\LibGraph-2.0\line]]
+ --f.CustomLine = [[Interface\AddOns\Details\Libs\LibGraph-2.0\line]]
if (member) then
parent [member] = f
diff --git a/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua b/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua
index dcd333df..6d3a3ce9 100644
--- a/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua
+++ b/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua
@@ -1,12 +1,39 @@
+--[[
+Name: DBIcon-1.0
+Revision: $Rev: 56 $
+Author(s): Rabbit (rabbit.magtheridon@gmail.com)
+Description: Allows addons to register to recieve a lightweight minimap icon as an alternative to more heavy LDB displays.
+Dependencies: LibStub
+License: GPL v2 or later.
+]]
+
+--[[
+Copyright (C) 2008-2011 Rabbit
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+]]
-----------------------------------------------------------------------
--- LibDBIcon-1.0
+-- DBIcon-1.0
--
--- Allows addons to easily create a lightweight minimap icon as an alternative to heavier LDB displays.
+-- Disclaimer: Most of this code was ripped from Barrel but fixed, streamlined
+-- and cleaned up a lot so that it no longer sucks.
--
local DBICON10 = "LibDBIcon-1.0"
-local DBICON10_MINOR = 34 -- Bump on changes
+local DBICON10_MINOR = tonumber(("$Rev: 56 $"):match("(%d+)"))
if not LibStub then error(DBICON10 .. " requires LibStub.") end
local ldb = LibStub("LibDataBroker-1.1", true)
if not ldb then error(DBICON10 .. " requires LibDataBroker-1.1.") end
@@ -19,7 +46,7 @@ lib.callbackRegistered = lib.callbackRegistered or nil
lib.callbacks = lib.callbacks or LibStub("CallbackHandler-1.0"):New(lib)
lib.notCreated = lib.notCreated or {}
-function lib:IconCallback(event, name, key, value)
+function lib:IconCallback(event, name, key, value, dataobj)
if lib.objects[name] then
if key == "icon" then
lib.objects[name].icon:SetTexture(value)
@@ -46,6 +73,7 @@ if not lib.callbackRegistered then
lib.callbackRegistered = true
end
+-- Tooltip code ripped from StatBlockCore by Funkydude
local function getAnchors(frame)
local x, y = frame:GetCenter()
if not x or not y then return "CENTER" end
@@ -75,7 +103,7 @@ end
--------------------------------------------------------------------------------
-local onClick, onMouseUp, onMouseDown, onDragStart, onDragStop, updatePosition
+local onClick, onMouseUp, onMouseDown, onDragStart, onDragStop, onDragEnd, updatePosition
do
local minimapShapes = {
diff --git a/Libs/LibItemUpgradeInfo-1.0/LibStub/LibStub.toc b/Libs/LibItemUpgradeInfo-1.0/LibStub/LibStub.toc
index fb20db36..3c21a7fa 100644
--- a/Libs/LibItemUpgradeInfo-1.0/LibStub/LibStub.toc
+++ b/Libs/LibItemUpgradeInfo-1.0/LibStub/LibStub.toc
@@ -5,7 +5,7 @@
## X-Website: http://www.wowace.com/addons/libstub/
## X-Category: Library
## X-License: Public Domain
-## X-Curse-Packaged-Version: Release-70000-24
+## X-Curse-Packaged-Version: Release-70100-27
## X-Curse-Project-Name: LibItemUpgradeInfo-1.0
## X-Curse-Project-ID: libitemupgradeinfo-1-0
## X-Curse-Repository-ID: wow/libitemupgradeinfo-1-0/mainline
diff --git a/boot.lua b/boot.lua
index 90ce0eb5..9859f074 100644
--- a/boot.lua
+++ b/boot.lua
@@ -3,8 +3,8 @@
_ = nil
_detalhes = LibStub("AceAddon-3.0"):NewAddon("_detalhes", "AceTimer-3.0", "AceComm-3.0", "AceSerializer-3.0", "NickTag-1.0")
- _detalhes.build_counter = 3459
- _detalhes.userversion = "v7.1.5." .. _detalhes.build_counter
+ _detalhes.build_counter = 3460
+ _detalhes.userversion = "v7.2.0." .. _detalhes.build_counter
_detalhes.realversion = 116 --core version
_detalhes.version = _detalhes.userversion .. " (core " .. _detalhes.realversion .. ")"
Details = _detalhes