Skip to content

Commit

Permalink
10.0.5
Browse files Browse the repository at this point in the history
All comes at the proper time to him who knows how to wait.
  • Loading branch information
opussf committed Jan 30, 2023
1 parent a2e362b commit 0213930
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
INTERFACE=100002
INTERFACE=100005
ADDONLOC=/Applications/World of Warcraft/_retail_/Interface/Addons
16 changes: 11 additions & 5 deletions test/wowStubs.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-----------------------------------------
-- Author : Opussf
-- Date : December 6 2022
-- Revision: 9.0.3-3-g352f9e6-100002
-- Date : January 2 2023
-- Revision: 9.0.3-5-g5f3a636-100002
-----------------------------------------
-- These are functions from wow that have been needed by addons so far
-- Not a complete list of the functions.
Expand Down Expand Up @@ -214,6 +214,8 @@ globals.FACTION_STANDING_LABEL7 = "Revered"
globals.FACTION_STANDING_LABEL8 = "Exalted"

COMBATLOG_OBJECT_AFFILIATION_OUTSIDER = 8
COMBATLOG_XPGAIN_FIRSTPERSON = "%s dies, you gain %d experience."
COMBATLOG_XPGAIN_EXHAUSTION1 = "%s dies, you gain %d experience. (%s exp %s bonus)"

-- TT.fName, TT.fDescription, TT.fStandingId, TT.fBottomValue, TT.fTopValue, TT.fEarnedValue, TT.fAtWarWith,
-- TT.fCanToggleAtWar, TT.fIsHeader, TT.fIsCollapsed, TT.fIsWatched, TT.isChild, TT.factionID,
Expand Down Expand Up @@ -391,14 +393,15 @@ Frame = {
["GetHeight"] = function(self) return( self.height ); end,
["CreateFontString"] = function(self, ...) return(CreateFontString(...)) end,

["SetMinMaxValues"] = function() end,
["SetValue"] = function() end,
["SetMinMaxValues"] = function(self, min, max) self.min=min; self.max=max; end,
["SetValue"] = function(self, value) self.value=value end,
["SetStatusBarColor"] = function() end,
["SetScript"] = function() end,
["SetAttribute"] = function() end,

["SetChecked"] = function() end,
["SetText"] = function() end,
["SetText"] = function(self, textIn) self.textValue = textIn; end,
["GetText"] = function(self) return( self.textValue ); end,
}
FrameGameTooltip = {
["HookScript"] = function( self, callback ) end,
Expand Down Expand Up @@ -1206,6 +1209,9 @@ end
function GetDifficultyInfo( diffInt )
return dungeonDifficultyLookup[diffInt]
end
function GetFramerate()
return 8
end
function IsResting()
return true
end
Expand Down

0 comments on commit 0213930

Please sign in to comment.