Skip to content

Commit

Permalink
1.13.4 (33491)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketho committed Feb 28, 2020
1 parent 874dcab commit 30ee4c0
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 10 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -3,5 +3,7 @@ Global resources extracted from World of Warcraft for development purposes.
* See also [Foxlit/Helix](https://www.townlong-yak.com/framexml/) and [Resike/BlizzardInterfaceResources](https://github.com/Resike/BlizzardInterfaceResources)
* Dumped from the [KethoDoc](https://github.com/Ketho/KethoDoc) addon
* GlobalStrings are parsed from https://wow.tools/dbc/?dbc=globalstrings

```lua
GetBuildInfo() => "1.13.4", "33491", "Feb 25 2020", 11304
```
![](https://raw.githubusercontent.com/Ketho/BlizzardInterfaceResources/classic/Resources/WidgetHierarchy.png)
5 changes: 5 additions & 0 deletions Resources/Events.lua
Expand Up @@ -177,6 +177,7 @@ local Events = {
},
C_Commentator = {
"COMMENTATOR_ENTER_WORLD",
"COMMENTATOR_IMMEDIATE_FOV_UPDATE",
"COMMENTATOR_MAP_UPDATE",
"COMMENTATOR_PLAYER_NAME_OVERRIDE_UPDATE",
"COMMENTATOR_PLAYER_UPDATE",
Expand Down Expand Up @@ -252,6 +253,9 @@ local Events = {
"ENABLE_LOW_LEVEL_RAID",
"ENCOUNTER_END",
"ENCOUNTER_START",
"INSTANCE_LOCK_START",
"INSTANCE_LOCK_STOP",
"INSTANCE_LOCK_WARNING",
"RAID_TARGET_UPDATE",
"UPDATE_INSTANCE_INFO",
},
Expand Down Expand Up @@ -502,6 +506,7 @@ local Events = {
"UPDATE_ACTIVE_BATTLEFIELD",
"UPDATE_BATTLEFIELD_SCORE",
"UPDATE_BATTLEFIELD_STATUS",
"WARGAME_REQUESTED",
},
C_QuestLog = {
"QUEST_ACCEPTED",
Expand Down
20 changes: 19 additions & 1 deletion Resources/FrameXML.lua
Expand Up @@ -772,6 +772,8 @@ local FrameXML = {
"ComboFrame_UpdateMax",
"ComboPointShineFadeIn",
"ComboPointShineFadeOut",
"CommentatorEventAlertsFrame_OnEvent",
"CommentatorEventAlertsFrame_OnLoad",
"CommentatorUnitFrameLayout_GetLayout",
"Commentator_LoadUI",
"CommunitiesAddToChatDropDown_Initialize",
Expand Down Expand Up @@ -1055,13 +1057,13 @@ local FrameXML = {
"Craft_SetSubTextColor",
"Craft_UpdateTrainingPoints",
"CreateActorPool",
"CreateAndInitFromMixin",
"CreateAtlasMarkup",
"CreateAvailableChatChannelList",
"CreateCatmullRomSpline",
"CreateChatChannelList",
"CreateCircularBuffer",
"CreateColor",
"CreateCommentatorCooldownPool",
"CreateFontStringPool",
"CreateFramePool",
"CreateFromMixins",
Expand Down Expand Up @@ -1743,6 +1745,7 @@ local FrameXML = {
"HybridScrollFrame_CollapseButton",
"HybridScrollFrame_CreateButtons",
"HybridScrollFrame_ExpandButton",
"HybridScrollFrame_GetButtonIndex",
"HybridScrollFrame_GetButtons",
"HybridScrollFrame_GetOffset",
"HybridScrollFrame_OnLoad",
Expand Down Expand Up @@ -2348,6 +2351,13 @@ local FrameXML = {
"OptionsList_SelectButton",
"OrderHallMissionFrame_EscapePressed",
"OrderHallTalentFrame_EscapePressed",
"PVPFramePopup_OnEvent",
"PVPFramePopup_OnLoad",
"PVPFramePopup_OnResponse",
"PVPFramePopup_OnUpdate",
"PVPFramePopup_SetupPopUp",
"PVPHelperFrame_OnEvent",
"PVPHelperFrame_OnLoad",
"PanelTemplates_DeselectTab",
"PanelTemplates_DisableTab",
"PanelTemplates_EnableTab",
Expand Down Expand Up @@ -2852,6 +2862,7 @@ local FrameXML = {
"SetRaidTargetIconTexture",
"SetRemoveButtonText",
"SetSmallGuildTabardTextures",
"SetSpectatorModeForOtherFrames",
"SetSpellNameColor",
"SetStoreUIShown",
"SetTableColor",
Expand Down Expand Up @@ -3540,16 +3551,22 @@ local FrameXML = {
"Vector2D_ScaleBy",
"Vector2D_Subtract",
"Vector3D_Add",
"Vector3D_AddVector",
"Vector3D_CalculateNormalFromYawPitch",
"Vector3D_CalculateYawPitchFromNormal",
"Vector3D_CalculateYawPitchFromNormalVector",
"Vector3D_CreateNormalVectorFromYawPitch",
"Vector3D_Cross",
"Vector3D_DivideBy",
"Vector3D_Dot",
"Vector3D_GetLength",
"Vector3D_GetLengthSquared",
"Vector3D_Normalize",
"Vector3D_NormalizeVector",
"Vector3D_ScaleBy",
"Vector3D_ScaleVector",
"Vector3D_Subtract",
"Vector3D_SubtractVector",
"VideoOptionsCheckbox_OnLoad",
"VideoOptionsDropDownMenu_AddButton",
"VideoOptionsDropDownMenu_CreateInfo",
Expand Down Expand Up @@ -3651,6 +3668,7 @@ local FrameXML = {
"print",
"setglobal",
"setprinthandler",
"tAppendAll",
"tContains",
"tDeleteItem",
"tFilter",
Expand Down
6 changes: 5 additions & 1 deletion Resources/Frames.lua
Expand Up @@ -77,7 +77,7 @@ local Frames = {
"CombatLogUpdateFrame",
"CombatText",
"ComboFrame",
"CommentatorCooldownDisplayFrame",
"CommentatorEventAlertsFrame",
"CommentatorFadeToBlackFrame",
"CommentatorTeamDisplay",
"CommentatorVictoryFanfareFrame",
Expand Down Expand Up @@ -134,6 +134,8 @@ local Frames = {
"GuildControlPopupFrame",
"GuildRegistrarFrame",
"HelpFrame",
"HelpPlate",
"HelpPlateTooltip",
"IMECandidatesFrame",
"InspectFrame",
"InterfaceOptionsFrame",
Expand Down Expand Up @@ -170,6 +172,8 @@ local Frames = {
"OpacityFrame",
"OpacityFrameCloseButton",
"OpenMailFrame",
"PVPFramePopup",
"PVPHelperFrame",
"PartyMemberBackground",
"PartyMemberBuffTooltip",
"PartyMemberFrame1",
Expand Down
18 changes: 17 additions & 1 deletion Resources/GlobalAPI.lua
Expand Up @@ -252,6 +252,7 @@ local GlobalAPI = {
"C_Commentator.GetTimeLeftInMatch",
"C_Commentator.GetTrackedDefensiveCooldowns",
"C_Commentator.GetTrackedOffensiveCooldowns",
"C_Commentator.GetUnitTeamIndex",
"C_Commentator.GetWargameInfo",
"C_Commentator.HasTrackedAuras",
"C_Commentator.IsSmartCameraLocked",
Expand Down Expand Up @@ -520,6 +521,7 @@ local GlobalAPI = {
"C_Spell.IsSpellDataCached",
"C_Spell.RequestLoadSpellData",
"C_StorePublic.DoesGroupHavePurchaseableProducts",
"C_StorePublic.HasPurchaseableProducts",
"C_StorePublic.IsDisabledByParentalControls",
"C_StorePublic.IsEnabled",
"C_SummonInfo.CancelSummon",
Expand Down Expand Up @@ -651,6 +653,7 @@ local GlobalAPI = {
"CanGuildPromote",
"CanGuildRemove",
"CanHearthAndResurrectFromArea",
"CanInitiateWarGame",
"CanInspect",
"CanJoinBattlefieldAsGroup",
"CanLootUnit",
Expand Down Expand Up @@ -1080,6 +1083,8 @@ local GlobalAPI = {
"GetInspectPVPRankProgress",
"GetInstanceBootTimeRemaining",
"GetInstanceInfo",
"GetInstanceLockTimeRemaining",
"GetInstanceLockTimeRemainingEncounter",
"GetInventoryAlertStatus",
"GetInventoryItemBroken",
"GetInventoryItemCooldown",
Expand Down Expand Up @@ -1410,6 +1415,8 @@ local GlobalAPI = {
"GetTimeToWellRested",
"GetTitleText",
"GetToolTipInfo",
"GetTotemInfo",
"GetTotemTimeLeft",
"GetTrackingTexture",
"GetTradePlayerItemInfo",
"GetTradePlayerItemLink",
Expand Down Expand Up @@ -1456,6 +1463,7 @@ local GlobalAPI = {
"GetUnitSpeed",
"GetVideoCaps",
"GetVideoOptions",
"GetWarGameQueueStatus",
"GetWatchedFactionInfo",
"GetWeaponEnchantInfo",
"GetWebTicket",
Expand Down Expand Up @@ -1656,7 +1664,9 @@ local GlobalAPI = {
"IsUsableAction",
"IsUsableItem",
"IsUsableSpell",
"IsUsingFixedTimeStep",
"IsVeteranTrialAccount",
"IsWargame",
"IsWindowsClient",
"ItemHasRange",
"ItemTextGetCreator",
Expand Down Expand Up @@ -1835,6 +1845,7 @@ local GlobalAPI = {
"ResetTutorials",
"ResetView",
"ResistancePercent",
"RespondInstanceLock",
"RespondMailLockSendItem",
"RespondToInviteConfirmation",
"RestartGx",
Expand Down Expand Up @@ -2017,6 +2028,9 @@ local GlobalAPI = {
"StartAuction",
"StartAutoRun",
"StartDuel",
"StartSpectatorWarGame",
"StartWarGame",
"StartWarGameByName",
"StopAttack",
"StopAutoRun",
"StopCinematic",
Expand Down Expand Up @@ -2052,6 +2066,7 @@ local GlobalAPI = {
"TargetNearestRaidMember",
"TargetPriorityHighlightEnd",
"TargetPriorityHighlightStart",
"TargetTotem",
"TargetUnit",
"TaxiGetDestX",
"TaxiGetDestY",
Expand Down Expand Up @@ -2191,6 +2206,7 @@ local GlobalAPI = {
"UseHearthstone",
"UseInventoryItem",
"UseItemByName",
"WarGameRespond",
"addframetext",
"debuglocals",
"debugprofilestart",
Expand Down Expand Up @@ -2354,4 +2370,4 @@ local LuaAPI = {
"xpcall",
}

return GlobalAPI, LuaAPI
return {GlobalAPI, LuaAPI}
8 changes: 2 additions & 6 deletions Resources/LuaEnum.lua
Expand Up @@ -666,8 +666,8 @@ Enum = {
},
VasErrorMeta = {
MinValue = 0,
NumValues = 31,
MaxValue = 20085,
NumValues = 32,
MaxValue = 20087,
},
VasPurchaseProgress = {
Invalid = 0,
Expand Down Expand Up @@ -830,10 +830,6 @@ LE_CHARACTER_UPGRADE_RESULT_UPGRADE_PENDING = 10
LE_CHARACTER_UPGRADE_RESULT_INVALID_CHARACTER = 11
LE_CHARACTER_UPGRADE_RESULT_NOT_FRESH_CHARACTER = 12

NUM_LE_CONVERT_RESULTS = 2
LE_CONVERT_RESULT_SUCCESS = 1
LE_CONVERT_RESULT_ERROR_OTHER = 2

NUM_LE_DEMON_HUNTER_CREATION_DISABLED_REASONS = 3
LE_DEMON_HUNTER_CREATION_DISABLED_REASON_HAVE_DH = 1
LE_DEMON_HUNTER_CREATION_DISABLED_REASON_NEED_LEVEL_70 = 2
Expand Down

0 comments on commit 30ee4c0

Please sign in to comment.