Merge branch 'release/1.8.2'
This commit is contained in:
commit
e7fe53e79f
@ -1,4 +1,7 @@
|
|||||||
## [1.8.1] - 2019-11-07
|
## [1.8.2] - 2019-11-10
|
||||||
|
- Fixed a duplicate button issue in reshape tab
|
||||||
|
|
||||||
|
## [1.8.1] - 2019-11-09
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- An issue where skills would not be put on cooldown after being used.
|
- An issue where skills would not be put on cooldown after being used.
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mnml-client",
|
"name": "mnml-client",
|
||||||
"version": "1.8.1",
|
"version": "1.8.2",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mnml-client",
|
"name": "mnml-client",
|
||||||
"version": "1.8.1",
|
"version": "1.8.2",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -56,7 +56,7 @@ function Reshape(args) {
|
|||||||
const useMtx = (item, i) => {
|
const useMtx = (item, i) => {
|
||||||
const price = item === 'Rename' ? 5 : 1;
|
const price = item === 'Rename' ? 5 : 1;
|
||||||
return (
|
return (
|
||||||
<figure key={i} onClick={e => {
|
<figure key={i * 2} onClick={e => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
setMtxActive(item);
|
setMtxActive(item);
|
||||||
}}>
|
}}>
|
||||||
@ -67,7 +67,7 @@ function Reshape(args) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const availableMtx = (item, i) => (
|
const availableMtx = (item, i) => (
|
||||||
<figure key={i}>
|
<figure key={i * 2 + 1}>
|
||||||
<figcaption>Enable {item.variant}</figcaption>
|
<figcaption>Enable {item.variant}</figcaption>
|
||||||
<button onClick={() => mtxBuy(item)} disabled={account.balance < item.credits}>¤{item.credits}</button>
|
<button onClick={() => mtxBuy(item)} disabled={account.balance < item.credits}>¤{item.credits}</button>
|
||||||
</figure>
|
</figure>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mnml-ops",
|
"name": "mnml-ops",
|
||||||
"version": "1.8.1",
|
"version": "1.8.2",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "mnml"
|
name = "mnml"
|
||||||
version = "1.8.1"
|
version = "1.8.2"
|
||||||
authors = ["ntr <ntr@smokestack.io>"]
|
authors = ["ntr <ntr@smokestack.io>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user