Skip to content

Commit

Permalink
0.1.12
Browse files Browse the repository at this point in the history
Version 0.1.12
  • Loading branch information
e11io committed Aug 15, 2018
1 parent 110df77 commit 3534feb
Show file tree
Hide file tree
Showing 8 changed files with 82 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -21,7 +21,6 @@ install:
env:
global:
- SOLIDITY_COVERAGE=true
- UPLOAD_COVERALLS=false
before_script:
- truffle version
script:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

0.1.12 / 2018-08-15
==================

* Re-enable coverage
* Fixed Quantum dust translation

0.1.11 / 2018-08-8
==================

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "crypto-wars-solidity",
"author": "Experimental - e11.io",
"version": "0.1.11",
"version": "0.1.12",
"license": "ISC",
"description": "",
"private": true,
Expand Down
1 change: 1 addition & 0 deletions src/app/+battle/+history/history.component.ts
Expand Up @@ -52,6 +52,7 @@ export class BattleHistoryComponent extends AbstractContainerComponent implement

ngOnInit() {
if (!this.battleDetails || this.battleDetails.length === 0) {
this.store.dispatch(new PlayerBattleActions.ClearBattleHistory());
this.store.dispatch(new PlayerBattleActions.GetBattleHistory());
}
}
Expand Down
1 change: 1 addition & 0 deletions src/assets/i18n/en.json
Expand Up @@ -690,6 +690,7 @@
"gold": "Gold",
"crystal": "Crystal",
"quantum-dust": "Quantum dust",
"quantum": "Quantum dust",
"e11": "E11 tokens",
"e11Balance": "E11 balance",
"ethBalance": "Ethereum balance"
Expand Down
36 changes: 36 additions & 0 deletions src/redirect-alpha-cryptowars-jp.html
@@ -0,0 +1,36 @@
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, viewport-fit=cover">
<meta http-equiv="refresh" content="0; url=https://alpha.cryptowars.jp">
<script type="text/javascript">
window.location.href = "https://alpha.cryptowars.jp"
</script>
<title>Redirect to alpha.cryptowars.jp</title>
</head>
<style media="screen">
body {
display: flex;
height: 100vh;
width: 100vw;
align-items: center;
justify-content: center;
margin: 0;
color: white;
background: #1b2431;
font-family: Roboto, sans-serif;
text-align: center;
font-size: 19px;
}
a {
margin-left: 1px;
color: #1a91eb;
}
</style>
<body>
<p>
If you are not redirected automatically, follow this link to <a href='https://alpha.cryptowars.jp'>alpha.cryptowars.jp</a>.
</p>
</body>
</html>
36 changes: 36 additions & 0 deletions src/redirect-cryptowars-jp.html
@@ -0,0 +1,36 @@
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, viewport-fit=cover">
<meta http-equiv="refresh" content="0; url=https://cryptowars.jp">
<script type="text/javascript">
window.location.href = "https://cryptowars.jp"
</script>
<title>Redirect to cryptowars.jp</title>
</head>
<style media="screen">
body {
display: flex;
height: 100vh;
width: 100vw;
align-items: center;
justify-content: center;
margin: 0;
color: white;
background: #1b2431;
font-family: Roboto, sans-serif;
text-align: center;
font-size: 19px;
}
a {
margin-left: 1px;
color: #1a91eb;
}
</style>
<body>
<p>
If you are not redirected automatically, follow this link to <a href='https://cryptowars.jp'>cryptowars.jp</a>.
</p>
</body>
</html>

0 comments on commit 3534feb

Please sign in to comment.