diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a23a1a..6b53bb46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,41 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.8.0] - 2019-10-31 +# Added +- Drag and drop for vbox interactions can be used instead of single click / double click + +- Base white items and be directly equipped from vbox rather than going through the inventory + - Useful if you want to equip an item without further combining with colours + +- You can swap skills and specs between constructs without using the inventory + +# Changed + +- Construct life changed + - You now start with 800 green life (down from 950) + - You now start with 125 red life and blue life (up from 0) + +- Game phase layout + - Enemy team effects appear under your construct instead of next to it + - Game phase constructs line up symmetrically now + +- Mobile + - Tutorial is disabled for mobile view + - Landscape is now default view + - Vbox phase everything is now in one view + - Game constructs and animations are much larger in mobile view + +- Absorb + - Reduced duration and cooldown from 2T -> 1T (Absorption duration unchanged) + - Absorption damage is now based on all damage taken (previously only green damage taken) + - Now recharges blue life based on 95 / 120 / 155 blue power + +- Intercept + - Reduced duration to 1T down from 2T + - Reduced cooldown to 1T down from 2T + + ## [1.7.0] - 2019-10-31 # Added - Step by step tutorial diff --git a/client/assets/styles/game.less b/client/assets/styles/game.less index 59b6cf32..408769e6 100644 --- a/client/assets/styles/game.less +++ b/client/assets/styles/game.less @@ -133,6 +133,7 @@ } .skills { + z-index: 2; button { width: 100%; height: 2em; @@ -144,6 +145,7 @@ } .effects { + z-index: 2; grid-area: effects; white-space: nowrap; width: 100%; @@ -230,7 +232,6 @@ padding-left: 1em; padding-right: 1em; text-align: center; - font-size: 0.8em; svg { display: inline; height: 1em; diff --git a/client/assets/styles/instance.less b/client/assets/styles/instance.less index 672fdc57..fdf9f4cd 100644 --- a/client/assets/styles/instance.less +++ b/client/assets/styles/instance.less @@ -132,6 +132,7 @@ grid-area: skills; padding: 0 0.5em; margin-bottom: 0.75em; + z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); @@ -149,6 +150,7 @@ grid-area: specs; padding: 0 0.5em; margin-bottom: 0.75em; + z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); diff --git a/client/assets/styles/styles.less b/client/assets/styles/styles.less index eef8c34f..99329d24 100644 --- a/client/assets/styles/styles.less +++ b/client/assets/styles/styles.less @@ -309,6 +309,7 @@ li { background-size: contain; background-repeat: no-repeat; background-position: center; + z-index: 0; // pointer-events: none; } diff --git a/client/src/components/instance.constructs.jsx b/client/src/components/instance.constructs.jsx index 0012c1b8..da843f8f 100644 --- a/client/src/components/instance.constructs.jsx +++ b/client/src/components/instance.constructs.jsx @@ -217,7 +217,10 @@ function Construct(props) { return ( -