diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c160cd9..c6a2090e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed ### Changed +## [0.1.5] - YYYY-MM-DD +### Changed +`Recharge` Skill multiplier reduced 85/130/200 -> 70/110/170 +`Absorption` Skill duration reduced 5/7/9 -> 3/5/7 + ## [0.1.4 2019-09-18] ### Changed diff --git a/WORKLOG.md b/WORKLOG.md index 20cd76e7..1dd73284 100644 --- a/WORKLOG.md +++ b/WORKLOG.md @@ -14,6 +14,7 @@ ## SOON (Before or After PAX) +* Invert recharge * bot game grind * ACP * essential diff --git a/bin/client.sh b/bin/client.sh index 2ae62d06..06daf871 100755 --- a/bin/client.sh +++ b/bin/client.sh @@ -13,6 +13,8 @@ rm -rf dist npm i npm run build +cp tos.html dist/ + # echo "Building acp version $VERSION" # cd $MNML_PATH/acp # rm -rf dist diff --git a/client/assets/styles/menu.less b/client/assets/styles/menu.less index 9bcddbf2..93f6a63f 100644 --- a/client/assets/styles/menu.less +++ b/client/assets/styles/menu.less @@ -137,6 +137,10 @@ section { grid-template-columns: 1fr 1fr; grid-template-rows: min-content 1fr; + button { + cursor: default; + } + .colour-info { grid-area: vinfo; display: flex; diff --git a/client/src/components/welcome.register.jsx b/client/src/components/welcome.register.jsx index 838a48e7..c5ab9f79 100644 --- a/client/src/components/welcome.register.jsx +++ b/client/src/components/welcome.register.jsx @@ -34,7 +34,7 @@ function Register(args) { submitRegister, } = args; - const { password, confirm, name } = this.state; + const { password, confirm, name, terms } = this.state; const registerSubmit = (event) => { event.preventDefault(); @@ -45,7 +45,7 @@ function Register(args) { password === confirm; const registerDisabled = () => { - return !(registerConfirm() && password && name); + return !(registerConfirm() && password && name && terms); } return ( @@ -74,6 +74,14 @@ function Register(args) { value={this.state.confirm} onInput={linkState(this, 'confirm')} /> +
+ +   Confirm agreement to terms of service   + +