Change AboutModal url
Add .build.yml
Update About modal
Ths game is a version of Mastermind, but with letters. Mastermind is inspired by the much earlier Bulls and cows, which has a digit-version (much like Mastermind), and a letter-version, which traditionally works like this:
In order to create a one-player game, in this version the host is the
website, and a random word is chosen each day. Additionally, since a
computer can think quickly, the word is not necessarily an isogram
word - beget
would be a valid word.
To Run Locally: Clone the repository and perform the following command line actions:
$ cd game
$ npm install
$ npm run start
open http://localhost:3000 in browser.
To build/run docker container:
$ docker build -t game .
$ docker run -d -p 3000:3000 game
public/index.html
public/index.html
public/manifest.json
src/constants/strings.ts
src/constants/validGuesses.ts
, replacing the English wordssrc/constants/wordlist.ts
, replacing the English wordssrc/components/modals/AboutModel.tsx
src/components/modals/InfoModal.tsx
CharValue
type in src/lib/statuses.ts
and update the keyboard in src/lib/components/keyboard/Keyboard.tsx
dir="rtl"
to the HTML tag in public/index.html
and prepend \u202E
(the unicode right-to-left override character) to the return statement of the inner function in generateEmojiGrid
in src/lib/share.ts
Thanks Hannah!