Skip to content

Commit

Permalink
WoW Patch 8.2 General Fixes
Browse files Browse the repository at this point in the history
- Cleanup on .pkgmeta file.
- Removed 3DModelsPatch plugin.
- ToC files Updated.
- Minor 8.2 API changes bug fixes.
  • Loading branch information
Tercioo committed Jun 26, 2019
1 parent e3c8542 commit 2018078
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 52,722 deletions.
11 changes: 1 addition & 10 deletions .pkgmeta
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
move-folders:
Details/plugins/Details_DmgRank: Details_DmgRank
Details/plugins/Details_EncounterDetails: Details_EncounterDetails
Details/plugins/Details_SpellDetails: Details_SpellDetails
Details/plugins/Details_TimeAttack: Details_TimeAttack
Details/plugins/Details_TinyThreat: Details_TinyThreat
Details/plugins/Details_Vanguard: Details_Vanguard
Details/plugins/Details_DataStorage: Details_DataStorage
Details/plugins/Details_3DModelsPaths: Details_3DModelsPaths
Details/plugins/Details_RaidCheck: Details_RaidCheck
Details/plugins/Details_DpsTuning: Details_DpsTuning
Details/plugins/Details_Streamer: Details_Streamer
Details/plugins/Details_RaidInfo-EmeraldNightmare: Details_RaidInfo-EmeraldNightmare
Details/plugins/Details_RaidInfo-Nighthold: Details_RaidInfo-Nighthold
Details/plugins/Details_RaidInfo-TrialOfValor: Details_RaidInfo-TrialOfValor
Details/plugins/Details_RaidInfo-TombOfSargeras: Details_RaidInfo-TombOfSargeras
Details/plugins/Details_Streamer: Details_Streamer
2 changes: 1 addition & 1 deletion Details.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 80100
## Interface: 80200
## Title: Details! Damage Meter
## Notes: Essential tool to impress that chick in your raid.
## SavedVariables: _detalhes_global
Expand Down
8 changes: 4 additions & 4 deletions boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
_ = nil
_detalhes = LibStub("AceAddon-3.0"):NewAddon("_detalhes", "AceTimer-3.0", "AceComm-3.0", "AceSerializer-3.0", "NickTag-1.0")

_detalhes.build_counter = 7129
_detalhes.alpha_build_counter = 7129 --if this is higher than the regular counter, use it instead
_detalhes.game_version = "v8.1.5"
_detalhes.userversion = "v8.1.5." .. _detalhes.build_counter
_detalhes.build_counter = 7135
_detalhes.alpha_build_counter = 7135 --if this is higher than the regular counter, use it instead
_detalhes.game_version = "v8.2.0"
_detalhes.userversion = "v8.2.0." .. _detalhes.build_counter
_detalhes.realversion = 140 --core version, this is used to check API version for scripts and plugins (see alias below)
_detalhes.APIVersion = _detalhes.realversion --core version
_detalhes.version = _detalhes.userversion .. " (core " .. _detalhes.realversion .. ")" --simple stirng to show to players
Expand Down
13 changes: 6 additions & 7 deletions classes/container_combatentes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -376,11 +376,8 @@

local pet_blacklist = {}
local pet_tooltip_frame = _G.DetailsPetOwnerFinder
local pet_text_object = _G ["DetailsPetOwnerFinderTextLeft2"]
local follower_text_object = _G ["DetailsPetOwnerFinderTextLeft3"]

local line1 = _G ["DetailsPetOwnerFinderTextLeft2"]
local line2 = _G ["DetailsPetOwnerFinderTextLeft3"]
local pet_text_object = _G ["DetailsPetOwnerFinderTextLeft2"] --not in use
local follower_text_object = _G ["DetailsPetOwnerFinderTextLeft3"] --not in use

local find_pet_found_owner = function (ownerName, serial, nome, flag, self)
local ownerGuid = _UnitGUID (ownerName)
Expand All @@ -406,7 +403,8 @@
pet_tooltip_frame:SetOwner (WorldFrame, "ANCHOR_NONE")
pet_tooltip_frame:SetHyperlink ("unit:" .. serial or "")

local text1 = line1:GetText()
local line1 = _G ["DetailsPetOwnerFinderTextLeft2"]
local text1 = line1 and line1:GetText()
if (text1 and text1 ~= "") then
for playerName, _ in _pairs (_detalhes.tabela_vigente.raid_roster) do
local pName = playerName
Expand All @@ -417,7 +415,8 @@
end
end

local text2 = line2:GetText()
local line2 = _G ["DetailsPetOwnerFinderTextLeft3"]
local text2 = line2 and line2:GetText()
if (text2 and text2 ~= "") then
for playerName, _ in _pairs (_detalhes.tabela_vigente.raid_roster) do
local pName = playerName
Expand Down
Loading

0 comments on commit 2018078

Please sign in to comment.