- Plugin Vanguard: got full rewrite and now it is more easy to use.

- Plugin TimeAttack: fixed problem where sometimes required a reload to start a new time.
- Plugin Damage the Game!: fixed a problem where sometimes the time didn't started after level 2.
- Custom display 'Health Potion & Stone' now also track Healing Tonic.
- Custom display 'Damage Taken by Spell' now track more spells and also melee hits.
- Added 'Editing Group' check box on option panel, when enabled, settings changed also modifies on all windows in the group.
- Changing window's skin doesn't change any more settings not related with appearance, for example, Auto-Hide, Switches.\n\n
- Menus now uses 'Friz Quadrata TT' font as default, also added an option to change it on options panel -> miscellaneous.
- 'Switch to Current' feature now switches all windows which have this option enabled.
- The message telling to use '/details reinstall' now only shows if a problem happen during the addon load process.
- Segments Saved option now can be set to 25, up from 5.
- Attempt to fix the bug with the monk spell 'Storm, Earth, and Fire'.
- Fixed 'Icon Pick' panel.
- Fixed bug when reporting friendly fire through player detail window.
- Fixed bug with report window where sometimes it was reporting on a wrong channel.
- Fixed Auto-Hide where it wasn't hiding the wallpaper of the window.
This commit is contained in:
Tercio
2015-01-17 02:24:07 -02:00
parent b6d51315a5
commit 9b160cd591
7 changed files with 1074 additions and 124 deletions
+17 -1
View File
@@ -330,10 +330,12 @@ function _G._detalhes:Start()
--> check is this is the first run of this version
if (self.is_version_first_run) then
if (_detalhes_database.last_version and _detalhes.userversion == "v3.8c") then
if (_detalhes_database.last_version and _detalhes.userversion == "v3.8.1") then
--_detalhes:SetTutorialCVar ("UPDATE_WARNING_SPECICONS1", false)
if (not _detalhes:GetTutorialCVar ("UPDATE_WARNING_SPECICONS1")) then
_detalhes:SetTutorialCVar ("UPDATE_WARNING_SPECICONS1", true)
local func = function()
local window1 = _detalhes:GetInstance(1)
if (window1 and window1:IsEnabled()) then
window1:SetBarSpecIconSettings (true, [[Interface\AddOns\Details\images\spec_icons_normal]], true)
@@ -344,6 +346,20 @@ function _G._detalhes:Start()
end
_detalhes:CreateTestBars()
_detalhes:Ask ("Keep Changes? You may change later on Options Panel -> Rows: Settings", function()
end)
_detalhes.yesNo ["no"]:SetClickFunction (function()
if (window1 and window1:IsEnabled()) then
window1:SetBarSpecIconSettings (false)
end
if (window2 and window2:IsEnabled()) then
window2:SetBarSpecIconSettings (false)
end
_detalhes.yesNo:Hide()
end)
end
_detalhes:GetFramework():ShowTutorialAlertFrame ("Spec Icons!", "Now Available, click here!", func)
end