Skip to content

Commit

Permalink
fix: Use correct game name
Browse files Browse the repository at this point in the history
The game is called "Kittens Game" not "Kitten Game", regardless of the name of the repository it is hosted in.
  • Loading branch information
oliversalzburg committed Nov 18, 2022
1 parent 1a854e6 commit 82ec62e
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ The development environment is expected to be a POSIX-compliant system. On Windo

You will need [NodeJS](https://nodejs.org/) and [yarn](https://yarnpkg.com/getting-started/install) to be able to work with the project.

Additionally, you will need to have [Docker](https://www.docker.com/get-started) available, to use the container-based Kitten Game development server. If you do not have Docker, you can still build a release version of the script and drop that into your userscript manager.
Additionally, you will need to have [Docker](https://www.docker.com/get-started) available, to use the container-based Kittens Game development server. If you do not have Docker, you can still build a release version of the script and drop that into your userscript manager.

### Development (with Kitten Game container)
### Development (with Kittens Game container)

The development container provides a version of Kitten Game that already a Kitten Scientists version injected into it, based on your local development state.
The development container provides a version of Kittens Game that already a Kitten Scientists version injected into it, based on your local development state.

1. Start a watcher to continuously rebuild KS when you make code changes.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ javascript:(function(){var d=document,s=d.createElement('script');s.src='https:/

You can pull any version of the script as a container. The images are hosted on the [GitHub registry](https://github.com/kitten-science/kitten-scientists/pkgs/container/kitten-scientists).

The container exposes Kitten Game's own development server on port 8080. It has the version of the userscript injected into it, according to the tag on the image.
The container exposes Kittens Game's own development server on port 8080. It has the version of the userscript injected into it, according to the tag on the image.

```shell
docker run --publish 8080:8080 --rm ghcr.io/kitten-science/kitten-scientists:2.0.0-alpha.8-dev-623cdd4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "kitten-scientists",
"version": "latest",
"description": "Contains packages relating to the Kitten Game: http://bloodrizer.ru/games/kittens/",
"description": "Contains packages relating to the Kittens Game: https://kittensgame.com/web/",
"license": "MIT",
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
"homepage": "https://github.com/kitten-science/kitten-scientists",
Expand Down
2 changes: 1 addition & 1 deletion packages/kitten-game/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@kitten-science/kitten-game",
"version": "latest",
"description": "Containerized version of the Kitten Game",
"description": "Containerized version of the Kittens Game",
"license": "MIT",
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
"homepage": "https://github.com/kitten-science/kitten-scientists",
Expand Down
2 changes: 1 addition & 1 deletion packages/userscript/source/UserScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class UserScript {
}

/**
* Experimental save manager for Kitten Game.
* Experimental save manager for Kittens Game.
* It can be injected manually into the game to cause KS settings to be
* injected into the save blob.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/userscript/source/settings/MissionSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class MissionSettings extends Setting {
cwarn(`The space mission '${mission}' is not tracked in Kitten Scientists!`);
}
for (const mission of redundantInSettings) {
cwarn(`The space mission '${mission}' is not a space mission in Kitten Game!`);
cwarn(`The space mission '${mission}' is not a space mission in Kittens Game!`);
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/userscript/source/settings/PolicySettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class PolicySettings extends Setting {
cwarn(`The policy '${policy}' is not tracked in Kitten Scientists!`);
}
for (const policy of redundantInSettings) {
cwarn(`The policy '${policy}' is not a policy in Kitten Game!`);
cwarn(`The policy '${policy}' is not a policy in Kittens Game!`);
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/userscript/source/settings/TechSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class TechSettings extends Setting {
cwarn(`The technology '${tech}' is not tracked in Kitten Scientists!`);
}
for (const tech of redundantInSettings) {
cwarn(`The technology '${tech}' is not a technology in Kitten Game!`);
cwarn(`The technology '${tech}' is not a technology in Kittens Game!`);
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/userscript/source/settings/UpgradeSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export class UpgradeSettings extends Setting {
cwarn(`The workshop upgrade '${upgrade}' is not tracked in Kitten Scientists!`);
}
for (const upgrade of redundantInSettings) {
cwarn(`The workshop upgrade '${upgrade}' is not an upgrade in Kitten Game!`);
cwarn(`The workshop upgrade '${upgrade}' is not an upgrade in Kittens Game!`);
}
}

Expand Down

0 comments on commit 82ec62e

Please sign in to comment.