Skip to content

Commit

Permalink
Build 19551
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkub committed Jan 30, 2015
1 parent 412ac8d commit 21408f6
Show file tree
Hide file tree
Showing 60 changed files with 126 additions and 105 deletions.
2 changes: 1 addition & 1 deletion AddOns/Blizzard_AchievementUI/Blizzard_AchievementUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard_AchievementUI
## Notes: Hooray for Achievements! Everybody loves Achievements =D
## Secure: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_ArchaeologyUI/Blizzard_ArchaeologyUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Archaeology UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_ArenaUI/Blizzard_ArenaUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Arena UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_AuctionUI/Blizzard_AuctionUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Auction UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Auth Challenge UI
## Secure: 1
## LoadOnDemand: 0
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_BarbershopUI/Blizzard_BarberShopUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Barber Shop UI
## Notes: The barber's blade went snicker-snack! Have you seen my Jabberwocky?
## Secure: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Battlefield Minimap
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_BindingUI/Blizzard_BindingUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Key Binding UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_BlackMarketUI/Blizzard_BlackMarketUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Black Market UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_CUFProfiles/Blizzard_CUFProfiles.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard_CUFProfiles
## Secure: 1
## LoadOnDemand: 0
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_Calendar/Blizzard_Calendar.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Calendar
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_ChallengesUI/Blizzard_ChallengesUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Challenges UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard_ClientSavedVariables
## Secure: 1
## LoadOnDemand: 0
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_Collections/Blizzard_Collections.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Collections
## Notes: Collections
## Secure: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_CombatLog/Blizzard_CombatLog.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard CombatLog
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_CombatText/Blizzard_CombatText.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard CombatText
## Secure: 1
## LoadOnDemand: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Compact Raid Frames
## Secure: 1
## LoadOnDemand: 0
Expand Down
12 changes: 7 additions & 5 deletions AddOns/Blizzard_DeathRecap/Blizzard_DeathRecap.lua
Expand Up @@ -78,7 +78,7 @@ function DeathRecapFrame_OpenRecap( recapID )
if( not evtData.hideCaster ) then
dmgInfo.caster = evtData.sourceName or COMBATLOG_UNKNOWN_UNIT
else
dmgInfo.caster = "";
dmgInfo.caster = nil;
end
dmgInfo.school = evtData.school;

Expand Down Expand Up @@ -130,10 +130,12 @@ function DeathRecapFrame_Amount_OnEnter(self)
GameTooltip:AddLine(format(DEATH_RECAP_DAMAGE_TT, valueStr, self.dmgExtraStr), 1, 0, 0, true);
end

if( self.spellName and self.caster ) then
GameTooltip:AddLine(format(DEATH_RECAP_CAST_BY_TT, self.spellName, self.caster), 1, 1, 1, true );
elseif( self.spellName ) then
GameTooltip:AddLine(self.spellName, 1, 1, 1, true );
if( self.spellName ) then
if( self.caster and #self.caster > 0 ) then
GameTooltip:AddLine(format(DEATH_RECAP_CAST_BY_TT, self.spellName, self.caster), 1, 1, 1, true );
else
GameTooltip:AddLine(self.spellName, 1, 1, 1, true );
end
end

local seconds = -floor((self.timestamp - DeathRecapFrame.DeathTimeStamp)*10)/10;
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_DeathRecap/Blizzard_DeathRecap.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard DeathRecap
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_DebugTools/Blizzard_DebugTools.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard UI Debug Tools
## Notes: Tools for developing addons
## Secure: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Dungeon Journal
## Notes: Show Boss Info
## Secure: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GMChatUI/Blizzard_GMChatUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard_GMChatUI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GMSurveyUI/Blizzard_GMSurveyUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard GM Survey UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
30 changes: 16 additions & 14 deletions AddOns/Blizzard_GarrisonUI/Blizzard_GarrisonMissionUI.lua
Expand Up @@ -601,16 +601,6 @@ function GarrisonMissionList_Update()
else
button.Summary:SetFormattedText(PARENS_TEMPLATE, mission.duration);
end
if ( button.Title:GetWidth() + button.Summary:GetWidth() + 8 < 655 - mission.numRewards * 65 ) then
button.Title:SetPoint("LEFT", 165, 0);
button.Summary:ClearAllPoints();
button.Summary:SetPoint("BOTTOMLEFT", button.Title, "BOTTOMRIGHT", 8, 0);
else
button.Title:SetPoint("LEFT", 165, 10);
button.Title:SetWidth(655 - mission.numRewards * 65);
button.Summary:ClearAllPoints();
button.Summary:SetPoint("TOPLEFT", button.Title, "BOTTOMLEFT", 0, -4);
end
if ( mission.locPrefix ) then
button.LocBG:Show();
button.LocBG:SetAtlas(mission.locPrefix.."-List");
Expand Down Expand Up @@ -647,6 +637,16 @@ function GarrisonMissionList_Update()
else
button.Overlay:Hide();
end
if ( button.Title:GetWidth() + button.Summary:GetWidth() + 8 < 655 - mission.numRewards * 65 ) then
button.Title:SetPoint("LEFT", 165, 0);
button.Summary:ClearAllPoints();
button.Summary:SetPoint("BOTTOMLEFT", button.Title, "BOTTOMRIGHT", 8, 0);
else
button.Title:SetPoint("LEFT", 165, 10);
button.Title:SetWidth(655 - mission.numRewards * 65);
button.Summary:ClearAllPoints();
button.Summary:SetPoint("TOPLEFT", button.Title, "BOTTOMLEFT", 0, -4);
end
button.MissionType:SetAtlas(mission.typeAtlas);
GarrisonMissionButton_SetRewards(button, mission.rewards, mission.numRewards);
button:Show();
Expand Down Expand Up @@ -798,11 +798,9 @@ function GarrisonMissionButton_SetInProgressTooltip(missionInfo, showRewards)
else
GameTooltip:AddLine(format(GARRISON_MISSION_LEVEL_TOOLTIP, missionInfo.level), 1, 1, 1);
end
-- time
-- completed?
if(missionInfo.isComplete) then
GameTooltip:AddLine(COMPLETE, 1, 1, 1);
else
GameTooltip:AddLine(tostring(missionInfo.timeLeft), 1, 1, 1);
end
-- success chance
local successChance = C_Garrison.GetMissionSuccessChance(missionInfo.missionID);
Expand Down Expand Up @@ -1005,7 +1003,11 @@ end

function GarrisonMissionPageFollowerFrame_OnMouseUp(self, button)
if ( button == "RightButton" ) then
GarrisonMissionPage_ClearFollower(self, true);
if ( self.info ) then
GarrisonMissionPage_ClearFollower(self, true);
else
MISSION_PAGE_FRAME.CloseButton:Click();
end
end
end

Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GarrisonUI/Blizzard_GarrisonMissionUI.xml
Expand Up @@ -1817,7 +1817,7 @@
<Anchor point="BOTTOMRIGHT" relativePoint="TOPRIGHT"/>
</Anchors>
</Frame>
<Frame parentKey="CompleteDialog" enableMouse="true" frameStrata="HIGH" hidden="true">
<Frame parentKey="CompleteDialog" topLevel="true" enableMouse="true" hidden="true">
<Size x="956" y="637"/>
<Anchors>
<Anchor point="TOPLEFT" x="-33" y="43"/>
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GarrisonUI/Blizzard_GarrisonUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Garrison UI
## Secure: 1
## Author: Blizzard Entertainment
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GlyphUI/Blizzard_GlyphUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Glyph UI
## Notes: Get some cool tats and mod your spells.
## Secure: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GuildBankUI/Blizzard_GuildBankUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Guild Bank UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GuildControlUI/Blizzard_GuildControlUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Guild Control UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_GuildUI/Blizzard_GuildUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Guild UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_InspectUI/Blizzard_InspectUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Inspect UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Item Alteration UI
## Secure: 1
## Author: Blizzard Entertainment
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Item Socketing UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_ItemUpgradeUI/Blizzard_ItemUpgradeUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Item Upgrade UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard LookingForGuild UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_MacroUI/Blizzard_MacroUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Macro UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_MovePad/Blizzard_MovePad.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard MovePad
## Author: slouken and karl
## Notes: A clickable movement pad
Expand Down
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Objective Tracker UI
## Secure: 1
## LoadOnDemand: 0
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_PVPUI/Blizzard_PVPUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard PVP UI
## Notes: MegaQueue
## Secure: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_PetBattleUI/Blizzard_PetBattleUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Pet Battle UI
## Secure: 1
## LoadOnDemand: 0
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_QuestChoice/Blizzard_QuestChoice.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Quest Choice UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_RaidUI/Blizzard_RaidUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Raid UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_SocialUI/Blizzard_SocialUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Social UI
## Secure: 1
## Author: Blizzard Entertainment
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_StoreUI/Blizzard_StoreUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Store UI
## Secure: 1
Blizzard_StoreUI.xml
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_TalentUI/Blizzard_TalentUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Talent UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_TimeManager/Blizzard_TimeManager.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Time Manager
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_TokenUI/Blizzard_TokenUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard_TokenUI
## Secure: 1
Blizzard_TokenUI.lua
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_TradeSkillUI/Blizzard_TradeSkillUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Trade Skill UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_TrainerUI/Blizzard_TrainerUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Trainer UI
## Secure: 1
## LoadOnDemand: 1
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_Tutorial/Blizzard_Tutorial.toc
@@ -1,6 +1,6 @@
## Author: Blizzard Entertainment
## Title: Blizzard Tutorial
## Interface: 60000
## Interface: 60100
## Secure: 1
## LoadOnDemand: 1
# Inspired by the Newbie Assistant written by 网易
Expand Down
2 changes: 1 addition & 1 deletion AddOns/Blizzard_VoidStorageUI/Blizzard_VoidStorageUI.toc
@@ -1,4 +1,4 @@
## Interface: 60000
## Interface: 60100
## Title: Blizzard Void Storage UI
## Secure: 1
## Author: Blizzard Entertainment
Expand Down
2 changes: 1 addition & 1 deletion FrameXML/FrameXML.toc
@@ -1,5 +1,5 @@
# Do not delete the following line!
## Interface: 60000
## Interface: 60100
GlobalStrings.lua
Constants.lua
Localization.xml
Expand Down

0 comments on commit 21408f6

Please sign in to comment.