# HG changeset patch # User yellowfive # Date 1507141099 25200 # Node ID bccce18e12cb2812adbbe66d7f3f93d3c44f6877 # Parent 8bef8f88361ce6ad1a7c302be58b1e605676f8d2 Fixed a bug with transition from v52 crucible data to v53+. diff -r 8bef8f88361c -r bccce18e12cb AskMrRobot-Serializer/AskMrRobot-Serializer.lua --- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Wed Oct 04 01:09:12 2017 -0700 +++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Wed Oct 04 11:18:19 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", 53 +local MAJOR, MINOR = "AskMrRobot-Serializer", 54 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) if not Amr then return end -- already loaded by something else diff -r 8bef8f88361c -r bccce18e12cb AskMrRobot.toc --- a/AskMrRobot.toc Wed Oct 04 01:09:12 2017 -0700 +++ b/AskMrRobot.toc Wed Oct 04 11:18:19 2017 -0700 @@ -1,7 +1,7 @@ ## Interface: 70300 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 53 +## Version: 54 ## Notes: Gear import/export, combat logging, and more. ## URL: www.askmrrobot.com ## SavedVariables: AskMrRobotDb3 diff -r 8bef8f88361c -r bccce18e12cb Export.lua --- a/Export.lua Wed Oct 04 01:09:12 2017 -0700 +++ b/Export.lua Wed Oct 04 11:18:19 2017 -0700 @@ -383,6 +383,9 @@ end previewKey = table.concat(previewKey, "_") + if not crucible.Previewed then + crucible.Previewed = {} + end crucible.Previewed[previewKey] = preview end end