# HG changeset patch # User yellowfive # Date 1490742600 25200 # Node ID e635cd648e01837047cc6c3cc9522548578945d3 # Parent 3ce266c86bd3c055ec89065c9c058787a5055a76 7.2 update diff -r 3ce266c86bd3 -r e635cd648e01 AskMrRobot-Serializer/AskMrRobot-Serializer.lua --- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Wed Nov 16 00:03:40 2016 -0800 +++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Tue Mar 28 16:10:00 2017 -0700 @@ -1,7 +1,7 @@ -- AskMrRobot-Serializer will serialize and communicate character data between users. -- This is used primarily to associate character information to logs uploaded to askmrrobot.com. -local MAJOR, MINOR = "AskMrRobot-Serializer", 48 +local MAJOR, MINOR = "AskMrRobot-Serializer", 49 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) if not Amr then return end -- already loaded by something else diff -r 3ce266c86bd3 -r e635cd648e01 AskMrRobot.toc --- a/AskMrRobot.toc Wed Nov 16 00:03:40 2016 -0800 +++ b/AskMrRobot.toc Tue Mar 28 16:10:00 2017 -0700 @@ -1,7 +1,7 @@ -## Interface: 70100 +## Interface: 70200 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 48 +## Version: 49 ## Notes: Gear import/export, combat logging, and more. ## URL: www.askmrrobot.com ## SavedVariables: AskMrRobotDb3 diff -r 3ce266c86bd3 -r e635cd648e01 Export.lua --- a/Export.lua Wed Nov 16 00:03:40 2016 -0800 +++ b/Export.lua Tue Mar 28 16:10:00 2017 -0700 @@ -277,9 +277,9 @@ local powerRanks = {} for k,v in pairs(powers) do - local spellId, cost, rank, maxRank, relicRank = C_ArtifactUI.GetPowerInfo(v) - if rank - relicRank > 0 then - powerRanks[v] = rank - relicRank + local powerInfo = C_ArtifactUI.GetPowerInfo(v) + if powerInfo.currentRank - powerInfo.bonusRanks > 0 then + powerRanks[v] = powerInfo.currentRank - powerInfo.bonusRanks end end diff -r 3ce266c86bd3 -r e635cd648e01 Libs/AceAddon-3.0/AceAddon-3.0.xml --- a/Libs/AceAddon-3.0/AceAddon-3.0.xml Wed Nov 16 00:03:40 2016 -0800 +++ b/Libs/AceAddon-3.0/AceAddon-3.0.xml Tue Mar 28 16:10:00 2017 -0700 @@ -1,4 +1,4 @@