diff --git a/CHANGELOG.md b/CHANGELOG.md index bbdd791d..d608ae56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 1.4.131 - 2019/03/08 + * Updated boss curse effect penalty + * Removed min/max Crit Chance limits + * Fixed the passive tree node location popup showing the wrong locations + ### 1.4.130 - 2019/03/07 * Passive tree updated to 3.6 * Added the following 3.6 uniques: (thanks PJacek) diff --git a/Classes/CalcBreakdownControl.lua b/Classes/CalcBreakdownControl.lua index 6afe3c40..464801e1 100644 --- a/Classes/CalcBreakdownControl.lua +++ b/Classes/CalcBreakdownControl.lua @@ -510,8 +510,9 @@ function CalcBreakdownClass:DrawBreakdownTable(viewPort, x, y, section) DrawImage(nil, viewerX, viewerY, 304, 304) local viewer = self.nodeViewer viewer.zoom = 5 - viewer.zoomX = -ttNode.x / 11.85 - viewer.zoomY = -ttNode.y / 11.85 + local scale = self.calcsTab.build.targetVersion == "2_6" and 11.85 or 12.42 + viewer.zoomX = -ttNode.x / scale + viewer.zoomY = -ttNode.y / scale SetViewport(viewerX + 2, viewerY + 2, 300, 300) viewer:Draw(self.calcsTab.build, { x = 0, y = 0, width = 300, height = 300 }, { }) SetDrawLayer(nil, 30) diff --git a/Classes/ConfigTab.lua b/Classes/ConfigTab.lua index 2f7eed0a..90910626 100644 --- a/Classes/ConfigTab.lua +++ b/Classes/ConfigTab.lua @@ -10,7 +10,7 @@ local m_floor = math.floor local gameVersionDropList = { { label = "2.6 (Atlas of Worlds)", version = "2_6", versionPretty = "2.6" }, - { label = "3.5 (War for the Atlas)", version = "3_0", versionPretty = "3.5" }, + { label = "3.6 (War for the Atlas)", version = "3_0", versionPretty = "3.6" }, } local varList = LoadModule("Modules/ConfigOptions") diff --git a/Classes/ItemSlotControl.lua b/Classes/ItemSlotControl.lua index 735b83d4..027010d2 100644 --- a/Classes/ItemSlotControl.lua +++ b/Classes/ItemSlotControl.lua @@ -130,8 +130,9 @@ function ItemSlotClass:Draw(viewPort) local viewer = self.itemsTab.socketViewer local node = self.itemsTab.build.spec.nodes[self.nodeId] viewer.zoom = 5 - viewer.zoomX = -node.x / 11.85 - viewer.zoomY = -node.y / 11.85 + local scale = self.itemsTab.build.targetVersion == "2_6" and 11.85 or 12.42 + viewer.zoomX = -node.x / scale + viewer.zoomY = -node.y / scale SetViewport(viewerX + 2, viewerY + 2, 300, 300) viewer:Draw(self.itemsTab.build, { x = 0, y = 0, width = 300, height = 300 }, { }) SetDrawLayer(nil, 30) diff --git a/Classes/TreeTab.lua b/Classes/TreeTab.lua index 65443694..e97d05c3 100644 --- a/Classes/TreeTab.lua +++ b/Classes/TreeTab.lua @@ -282,7 +282,7 @@ function TreeTabClass:OpenImportPopup() end function TreeTabClass:OpenExportPopup() - local treeLink = self.build.spec:EncodeURL("https://www.pathofexile.com/passive-skill-tree/"..(self.build.targetVersion == "2_6" and "2.6.2/" or "3.4.0/")) + local treeLink = self.build.spec:EncodeURL("https://www.pathofexile.com/passive-skill-tree/"..(self.build.targetVersion == "2_6" and "2.6.2/" or "3.6.0/")) local popup local controls = { } controls.label = new("LabelControl", nil, 0, 20, 0, 16, "Passive tree link:") diff --git a/Modules/CalcSetup.lua b/Modules/CalcSetup.lua index 39483951..86c35b95 100644 --- a/Modules/CalcSetup.lua +++ b/Modules/CalcSetup.lua @@ -27,7 +27,7 @@ function calcs.initModDB(env, modDB) modDB:NewMod("EnduranceChargesMax", "BASE", 3, "Base") modDB:NewMod("MaxLifeLeechRate", "BASE", 20, "Base") modDB:NewMod("MaxManaLeechRate", "BASE", 20, "Base") - if env.build.targerVersion ~= "2_6" then + if env.build.targetVersion ~= "2_6" then modDB:NewMod("MaxEnergyShieldLeechRate", "BASE", 10, "Base") modDB:NewMod("MaxLifeLeechInstance", "BASE", 10, "Base") modDB:NewMod("MaxManaLeechInstance", "BASE", 10, "Base") diff --git a/changelog.txt b/changelog.txt index 0ec15034..9b9f61f6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +VERSION[1.4.131][2019/03/08] + * Updated boss curse effect penalty + * Removed min/max Crit Chance limits + * Fixed the passive tree node location popup showing the wrong locations VERSION[1.4.130][2019/03/07] * Passive tree updated to 3.6 * Added the following 3.6 uniques: (thanks PJacek) diff --git a/manifest.xml b/manifest.xml index 6b7f910c..b11caf3f 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,20 +1,20 @@ - + - + - + - + @@ -26,7 +26,7 @@ - + @@ -51,7 +51,7 @@ - + @@ -60,15 +60,15 @@ - + - + - +