Skip to content

Commit 0e5870c

Browse files
refactor: rename project
1 parent 16ccc95 commit 0e5870c

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<p align="center">
2-
<img src="https://github.com/remarkablegames/card-memory/blob/master/public/logo192.png" alt="Card Memory">
2+
<img src="https://github.com/remarkablegames/memory-card/blob/master/public/logo192.png" alt="Memory Card">
33
</p>
44

5-
# Card Memory
5+
# Memory Card
66

7-
![release](https://img.shields.io/github/v/release/remarkablegames/card-memory)
8-
[![build](https://github.com/remarkablegames/card-memory/actions/workflows/build.yml/badge.svg)](https://github.com/remarkablegames/card-memory/actions/workflows/build.yml)
7+
![release](https://img.shields.io/github/v/release/remarkablegames/memory-card)
8+
[![build](https://github.com/remarkablegames/memory-card/actions/workflows/build.yml/badge.svg)](https://github.com/remarkablegames/memory-card/actions/workflows/build.yml)
99

10-
<kbd>Card Memory</kbd> is a [memory](<https://wikipedia.org/wiki/Concentration_(card_game)>) game.
10+
<kbd>Memory Card</kbd> is a [memory card game](<https://wikipedia.org/wiki/Concentration_(card_game)>).
1111

1212
Play the game on:
1313

14-
- [remarkablegames](https://remarkablegames.org/card-memory/)
14+
- [remarkablegames](https://remarkablegames.org/memory-card/)
1515

1616
## Prerequisites
1717

@@ -22,8 +22,8 @@ Play the game on:
2222
Clone the repository:
2323

2424
```sh
25-
git clone https://github.com/remarkablegames/card-memory.git
26-
cd card-memory
25+
git clone https://github.com/remarkablegames/memory-card.git
26+
cd memory-card
2727
```
2828

2929
Install the dependencies:

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" href="favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
8-
<meta name="description" content="Web game created using card-memory" />
8+
<meta name="description" content="Memory card game." />
99
<link rel="apple-touch-icon" href="logo192.png" />
1010

1111
<!--
@@ -22,7 +22,7 @@
2222
-->
2323
<script
2424
src="https://unpkg.com/github-corners/dist/embed.min.js"
25-
data-href="https://github.com/remarkablegames/card-memory"
25+
data-href="https://github.com/remarkablegames/memory-card"
2626
data-target="_blank"
2727
async
2828
defer
@@ -38,7 +38,7 @@
3838
</style>
3939
<% } %>
4040

41-
<title>Card Memory | remarkablegames</title>
41+
<title>Memory Card | remarkablegames</title>
4242
</head>
4343
<body>
4444
<noscript>You need to enable JavaScript to play this game.</noscript>

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "card-memory",
2+
"name": "memory-card",
33
"version": "1.0.0-alpha",
44
"description": "A template for building Phaser games.",
55
"author": "Mark <mark@remarkablemark.org>",
@@ -14,7 +14,7 @@
1414
"preview": "vite preview",
1515
"start": "vite --open"
1616
},
17-
"homepage": "https://remarkablegames.org/card-memory/",
17+
"homepage": "https://remarkablegames.org/memory-card/",
1818
"dependencies": {
1919
"phaser": "3.87.0",
2020
"phaser-jsx": "0.11.0"

public/manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "Card Memory",
3-
"name": "Card Memory",
2+
"short_name": "Memory Card",
3+
"name": "Memory Card",
44
"icons": [
55
{
66
"src": "favicon.ico",

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as scenes from './scenes';
88
new Phaser.Game({
99
width: 800, // 1024
1010
height: 600, // 768
11-
title: 'Card Memory',
11+
title: 'Memory Card',
1212
url: import.meta.env.VITE_APP_HOMEPAGE,
1313
version: import.meta.env.VITE_APP_VERSION,
1414
scene: [

0 commit comments

Comments
 (0)