diff --git a/ChangeLog.txt b/ChangeLog.txt index e5d25f8..1aca67a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,12 @@ +v1.6.8 + Fix conditional modifiers, #97 + Fix tooltip capitalization + Add more tooltips to result card + Fix saved simulation import bugs + Refactor performPostSimAnalysis + Fix lingering results from previous runs + Display auto eat threshold in stats card + v1.6.7 Fix Agility Import Add Clear All Pets button to pets card diff --git a/Extension/manifest.json b/Extension/manifest.json index 54841b2..19f8b88 100644 --- a/Extension/manifest.json +++ b/Extension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Melvor Idle Combat Simulator Reloaded", - "version": "1.6.7", + "version": "1.6.8", "description": "Adds a combat simulator to Melvor Idle", "icons": { "48": "icons/melvorSim-48.png" diff --git a/Extension/sources/injectable/util.js b/Extension/sources/injectable/util.js index aa3ab08..8d34684 100644 --- a/Extension/sources/injectable/util.js +++ b/Extension/sources/injectable/util.js @@ -37,7 +37,7 @@ // combat sim version MICSR.majorVersion = 1; MICSR.minorVersion = 6; - MICSR.patchVersion = 7; + MICSR.patchVersion = 8; MICSR.preReleaseVersion = undefined; MICSR.version = `v${MICSR.majorVersion}.${MICSR.minorVersion}.${MICSR.patchVersion}`; if (MICSR.preReleaseVersion !== undefined) {