From c8f7c4fd0db9ba3716459fd218d39f2c80d6bd53 Mon Sep 17 00:00:00 2001 From: Piotr Szymaniec Date: Fri, 15 Jan 2021 07:14:43 +0100 Subject: [PATCH] increased ver and added version notes --- README.md | 34 +++++++++++++++++- looty/src/main/public/manifest.json | 4 +-- .../src/main/scala/looty/views/HomeView.scala | 35 ++++++++++++++++++- 3 files changed, 69 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd2697b..89af095 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,39 @@ Quoted from Steve Yegge's [Excellent Blog Post](http://steve-yegge.blogspot.com/ ## Developer Log ```code # Version History -## 0.2.1.78 (2019-09-17) +## 0.2.1.79 (2021-01-15) + +Design +- Added dark theme! to easy strain on your eyes at night - switch is on the right side +- item tooltips in dark theme now closer resemble those on official site/in game +- added Incubators to item tooltips - fancy progressbar with current/total kills and what it's incubating into +- added improvements to XP page and its gem experience tables + +Features +- Added option to Settings panel to show tooltip when CTRL key is pressed, solving issue with tooltip obscuring vision. + note: When pressing ctrl being on some row, you have to reenter this row with mouse pointer to show tooltip - thats best I can do right now +- Added option to Settings panel to align text in tooltip to the left - in dark theme is centered - so you can override it here. + +- Added following columns + - IncubatorReward - what incubator on item is going to drop + - % Armor local to item + - % Evasion Rating local to item + - % Energy Shield local to item + - % Armor global to character stats - now recognize "% increased Armor" on talismans, rings, belts, jewels + - % Evasion Rating global to character stats - now recognize "% increased Evasion Rating" on talismans, rings, belts, jewels + - % chance to Dodge Spell Hits + - % chance to Block Spells Damage + - Added columns for checking if items are: Identified, Crafted, Corrupted, Veiled, Synthesised (has fractured modes), Mirrored to new group Miscellaneous, moved also influences there which shows list of influences on item + note: Enchanted items has own columns enchc (enchants count) and ench (enchants list) + +- Bug fixes + - flasks display now their real values instead of "{0}" and "{1}" + - enchants are not duplicated anymore in column "unparsed" + - changed behavior of Evasion Rating and Armor increased mods, added their local variations, and added local Energy Shield increase + - armor and evasion rating are correctly calculated and now are global - it recognize "% increased Armor" and "% increased Evasion Rating" on talismans, rings, belts, jewels + - items with dexterity include "global Evasion Rating" column (as every 5 dexterity increases Evasion Rating by 1 %) + +## 0.2.1.78 (2020-09-17) - Added types - "Organs" (from Metamorph league) - Timeless Jewel diff --git a/looty/src/main/public/manifest.json b/looty/src/main/public/manifest.json index 9a4ff4a..32c1d2d 100644 --- a/looty/src/main/public/manifest.json +++ b/looty/src/main/public/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, - "name": "Looty! Stash search for Path of Exile", - "version": "0.2.1.78", + "name": "Looty! Stash search for Path of Exile", + "version": "0.2.1.79", "description": "Looty! Helps you quickly find items by their stats or name in large Path of Exile stashes.", diff --git a/looty/src/main/scala/looty/views/HomeView.scala b/looty/src/main/scala/looty/views/HomeView.scala index ff7e3d6..b65ac62 100644 --- a/looty/src/main/scala/looty/views/HomeView.scala +++ b/looty/src/main/scala/looty/views/HomeView.scala @@ -13,7 +13,40 @@ class HomeView(val banner: String, val version: String) extends View { val jq: JQueryStatic = global.jQuery.asInstanceOf[JQueryStatic] def versionHistory = """ # Version History -## 0.2.1.78 + +## 0.2.1.79 (2021-01-15) + +Design +- Added dark theme! to easy strain on your eyes at night - switch is on the right side +- item tooltips in dark theme now closer resemble those on official site/in game +- added Incubators to item tooltips - fancy progressbar with current/total kills and what it's incubating into +- added improvements to XP page and its gem experience tables + +Features +- Added option to Settings panel to show tooltip when CTRL key is pressed, solving issue with tooltip obscuring vision. + note: When pressing ctrl being on some row, you have to reenter this row with mouse pointer to show tooltip - thats best I can do right now +- Added option to Settings panel to align text in tooltip to the left - in dark theme is centered - so you can override it here. + +- Added following columns + - IncubatorReward - what incubator on item is going to drop + - % Armor local to item + - % Evasion Rating local to item + - % Energy Shield local to item + - % Armor global to character stats - now recognize "% increased Armor" on talismans, rings, belts, jewels + - % Evasion Rating global to character stats - now recognize "% increased Evasion Rating" on talismans, rings, belts, jewels + - % chance to Dodge Spell Hits + - % chance to Block Spells Damage + - Added columns for checking if items are: Identified, Crafted, Corrupted, Veiled, Synthesised (has fractured modes), Mirrored to new group Miscellaneous, moved also influences there which shows list of influences on item + note: Enchanted items has own columns enchc (enchants count) and ench (enchants list) + +- Bug fixes + - flasks display now their real values instead of "{0}" and "{1}" + - enchants are not duplicated anymore in column "unparsed" + - changed behavior of Evasion Rating and Armor increased mods, added their local variations, and added local Energy Shield increase + - armor and evasion rating are correctly calculated and now are global - it recognize "% increased Armor" and "% increased Evasion Rating" on talismans, rings, belts, jewels + - items with dexterity include "global Evasion Rating" column (as every 5 dexterity increases Evasion Rating by 1 %) + +## 0.2.1.78 (2020-09-17) - Added types - "Organs" (from Metamorph league) - Timeless Jewel