Merge branch 'develop' of ssh://git.mnml.gg:40022/~/mnml into develop

This commit is contained in:
Mashy 2019-10-20 16:53:03 +10:00
commit 487bca473e
10 changed files with 29 additions and 22 deletions

View File

@ -2,13 +2,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.1] - 2019-10-?? ## [1.6.2] - 2019-10-20
### Fixed ### Fixed
- Combiner bug where it would preview items for different combinations
- Skill descriptions are cleared when animations start
- Combiner bug where it would preview items for different combinations ## [1.6.1] - Skipped
- Skill descriptions are cleared when animations start
## [1.6.0] - 2019-10-18 ## [1.6.0] - 2019-10-18
### Added ### Added

View File

@ -1 +1 @@
1.6.0 1.6.2

View File

@ -1,6 +1,6 @@
{ {
"name": "mnml-client", "name": "mnml-client",
"version": "1.6.0", "version": "1.6.2",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -144,6 +144,12 @@ aside {
} }
} }
.play-ctrl {
.controls {
grid-template-rows: 1fr 1fr 1fr 3fr 1fr;
}
}
.abandon:not([disabled]) { .abandon:not([disabled]) {
&:hover { &:hover {
color: @red; color: @red;

View File

@ -1,6 +1,6 @@
{ {
"name": "mnml-client", "name": "mnml-client",
"version": "1.6.0", "version": "1.6.2",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -130,16 +130,14 @@ function JoinButtons(args) {
<aside class='play-ctrl'> <aside class='play-ctrl'>
<div class="timer-container"></div> <div class="timer-container"></div>
<div class="controls"> <div class="controls">
<button
class='practice ready'
onClick={() => sendInstancePractice()}
type="submit">
Learn
</button>
{inviteBtn()}
{discordBtn} {discordBtn}
<div class="flex">
<button
class='practice ready'
onClick={() => sendInstancePractice()}
type="submit">
Learn
</button>
{inviteBtn()}
</div>
<AccountBox /> <AccountBox />
<div class="instance-ctrl-btns"> <div class="instance-ctrl-btns">
<button disabled={true} >Chat</button> <button disabled={true} >Chat</button>

View File

@ -93,18 +93,18 @@ function Play(args) {
return ( return (
<section class="top"> <section class="top">
<div class="news"> <div class="news">
<h1>v{VERSION}</h1> <h2>v{VERSION}</h2>
<p class="play-p">Use the buttons on the right to join an instance.</p> <p class="play-p">Use the buttons on the right to join an instance.</p>
<p> <p>
Select <b>PVP</b> to play against other players.<br /> Select <b>PVP</b> to play against other players.<br />
Select <b>INVITE</b> then click <b>COPY LINK</b> to generate an instance invitation for a friend.<br /> Select <b>INVITE</b> then click <b>COPY LINK</b> to generate an instance invitation for a friend.<br />
Click <b>LEARN</b> to practice the game without time controls. Click <b>LEARN</b> to practice the game without time controls.
</p> </p>
<p>Join our Discord server to find opponents, message @ntr or @mashy for some credits to get started.</p>
<p> <p>
If you enjoy the game please support its development by <b>subscribing</b> or purchasing <b>credits</b>.<br /> If you enjoy the game please support its development by <b>subscribing</b> or purchasing <b>credits</b>.<br />
glhf glhf
</p> </p>
<p>--ntr & mashy</p>
</div> </div>
<div> <div>
<h1 class="credits">¤ {account.balance}</h1> <h1 class="credits">¤ {account.balance}</h1>

View File

@ -30,7 +30,11 @@ function createSocket(events) {
// ------------- // -------------
function send(msg) { function send(msg) {
if (msg[0] !== 'Ping') console.log('outgoing msg', msg); if (msg[0] !== 'Ping') console.log('outgoing msg', msg);
ws.send(cbor.encode(msg)); try {
ws.send(cbor.encode(msg));
} catch (e) {
console.warn(e);
}
} }
let ping; let ping;

View File

@ -1,6 +1,6 @@
{ {
"name": "mnml-ops", "name": "mnml-ops",
"version": "1.6.0", "version": "1.6.2",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mnml" name = "mnml"
version = "1.6.0" version = "1.6.2"
authors = ["ntr <ntr@smokestack.io>"] authors = ["ntr <ntr@smokestack.io>"]
[dependencies] [dependencies]