Skip to content

Commit

Permalink
refactor: rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Dec 19, 2024
1 parent 16ccc95 commit 0e5870c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<p align="center">
<img src="https://github.com/remarkablegames/card-memory/blob/master/public/logo192.png" alt="Card Memory">
<img src="https://github.com/remarkablegames/memory-card/blob/master/public/logo192.png" alt="Memory Card">
</p>

# Card Memory
# Memory Card

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

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

Play the game on:

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

## Prerequisites

Expand All @@ -22,8 +22,8 @@ Play the game on:
Clone the repository:

```sh
git clone https://github.com/remarkablegames/card-memory.git
cd card-memory
git clone https://github.com/remarkablegames/memory-card.git
cd memory-card
```

Install the dependencies:
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Web game created using card-memory" />
<meta name="description" content="Memory card game." />
<link rel="apple-touch-icon" href="logo192.png" />

<!--
Expand All @@ -22,7 +22,7 @@
-->
<script
src="https://unpkg.com/github-corners/dist/embed.min.js"
data-href="https://github.com/remarkablegames/card-memory"
data-href="https://github.com/remarkablegames/memory-card"
data-target="_blank"
async
defer
Expand All @@ -38,7 +38,7 @@
</style>
<% } %>

<title>Card Memory | remarkablegames</title>
<title>Memory Card | remarkablegames</title>
</head>
<body>
<noscript>You need to enable JavaScript to play this game.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "card-memory",
"name": "memory-card",
"version": "1.0.0-alpha",
"description": "A template for building Phaser games.",
"author": "Mark <mark@remarkablemark.org>",
Expand All @@ -14,7 +14,7 @@
"preview": "vite preview",
"start": "vite --open"
},
"homepage": "https://remarkablegames.org/card-memory/",
"homepage": "https://remarkablegames.org/memory-card/",
"dependencies": {
"phaser": "3.87.0",
"phaser-jsx": "0.11.0"
Expand Down
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "Card Memory",
"name": "Card Memory",
"short_name": "Memory Card",
"name": "Memory Card",
"icons": [
{
"src": "favicon.ico",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as scenes from './scenes';
new Phaser.Game({
width: 800, // 1024
height: 600, // 768
title: 'Card Memory',
title: 'Memory Card',
url: import.meta.env.VITE_APP_HOMEPAGE,
version: import.meta.env.VITE_APP_VERSION,
scene: [
Expand Down

0 comments on commit 0e5870c

Please sign in to comment.