Skip to content

Commit e3a762c

Browse files
feat: change name
1 parent 64dfb99 commit e3a762c

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Industrial Chess
1+
# Arx Chess
22

33
> Chess-based strategy game with fairy pieces and resource management

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Industrial Chess</title>
7+
<title>Arx Chess</title>
88
<link rel="stylesheet" href="play.css" />
99
<!-- TODO: own stylesheet -->
1010
<link rel="icon" href="bishop-knight-white.png">
@@ -14,13 +14,13 @@
1414
<menu>
1515
<li>
1616
<img src="bishop-knight-white.png">
17-
<h1>Industrial Chess</h1>
17+
<h1>Arx Chess</h1>
1818
</li>
1919
<li><a href="play" class="filled">Local game</a></li>
2020
<li><a href="#" class="filled">Online game (soon)</a></li>
2121
<li><a href="play?tutorial" class="filled">Tutorial</a></li>
2222
<li><a href="pieces">Pieces</a></li>
23-
<li><a href="https://github.com/kacperwyczawski/industrial-chess">Source code</a></li>
24-
<li><a href="https://github.com/kacperwyczawski/industrial-chess/blob/main/README.md">About</a></li>
23+
<li><a href="https://github.com/kacperwyczawski/arx-chess">Source code</a></li>
24+
<li><a href="https://github.com/kacperwyczawski/arx-chess/blob/main/README.md">About</a></li>
2525
</menu>
2626
</body>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "industrial-chess",
2+
"name": "arx-chess",
33
"version": "0.0.0",
44
"devDependencies": {
55
"typescript": "^5.5.4",

pieces.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Industrial Chess</title>
7+
<title>Arx Chess</title>
88
<script type="module" src="/src/pieces.ts"></script>
99
<link rel="stylesheet" href="play.css" />
1010
<link rel="stylesheet" href="pieces.css" />
@@ -14,4 +14,4 @@
1414
<body>
1515
</body>
1616

17-
</html>
17+
</html>

play.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Industrial Chess</title>
7+
<title>Arx Chess</title>
88
<script type="module" src="/src/main.ts"></script>
99
<link rel="stylesheet" href="play.css" />
1010
<link rel="icon" href="bishop-knight-white.png">

src/tutorial.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class Tutorial {
1313
}, 100);
1414
}
1515

16-
m("Welcome to Industrial Chess tutorial!");
16+
m("Welcome to Arx Chess tutorial!");
1717
m(
1818
"Your primary objective is to capture all enemy castles. But for now just move your pawn to the right. In order to do that, click on it.",
1919
);

0 commit comments

Comments
 (0)