diff --git a/Libs/LibOpenRaid/LibOpenRaid.lua b/Libs/LibOpenRaid/LibOpenRaid.lua index a1a1b737b..4292c6df2 100644 --- a/Libs/LibOpenRaid/LibOpenRaid.lua +++ b/Libs/LibOpenRaid/LibOpenRaid.lua @@ -44,7 +44,7 @@ end local major = "LibOpenRaid-1.0" -local CONST_LIB_VERSION = 130 +local CONST_LIB_VERSION = 131 if (LIB_OPEN_RAID_MAX_VERSION) then if (CONST_LIB_VERSION <= LIB_OPEN_RAID_MAX_VERSION) then diff --git a/boot.lua b/boot.lua index 69a12cc58..e4b9ca4cb 100644 --- a/boot.lua +++ b/boot.lua @@ -19,8 +19,8 @@ local addonName, Details222 = ... local version, build, date, tvs = GetBuildInfo() - Details.build_counter = 12817 - Details.alpha_build_counter = 12817 --if this is higher than the regular counter, use it instead + Details.build_counter = 12818 + Details.alpha_build_counter = 12818 --if this is higher than the regular counter, use it instead Details.dont_open_news = true Details.game_version = version Details.userversion = version .. " " .. Details.build_counter diff --git a/luaserver.lua b/luaserver.lua index 31e977e3c..63d956358 100644 --- a/luaserver.lua +++ b/luaserver.lua @@ -945,6 +945,37 @@ function C_Item.GetItemCount() end function C_Item.GetItemInfoInstant() end function C_Item.GetStackCount() end + +--faction +---@class factioninfo +---@field hasBonusRepGain boolean +---@field description string +---@field isHeaderWithRep boolean +---@field isHeader boolean +---@field currentReactionThreshold number +---@field canSetInactive boolean +---@field atWarWith boolean +---@field isWatched boolean +---@field isCollapsed boolean +---@field canToggleAtWar boolean +---@field nextReactionThreshold number +---@field factionID number +---@field name string +---@field currentStanding number +---@field isAccountWide boolean +---@field isChild boolean +---@field reaction number + +C_Reputation = {} +---return a table of class 'factioninfo' containing the faction data +---@param id number +---@return factioninfo +function C_Reputation.GetFactionDataByID(id) return {} end + +---return a table of class 'factioninfo' containing the player guild rep information +---@return factioninfo +function C_Reputation.GetGuildFactionData() return {} end + C_UnitAuras = {} ---@param privateAuraAnchor privateaura_anchor