Skip to content

Commit

Permalink
Change repository URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjhoward committed Jun 27, 2024
1 parent a92e58a commit 45bf1e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ SPDX-FileCopyrightText: 2023 C. J. Howard
SPDX-License-Identifier: CC-BY-SA-4.0
-->

# Antkeeper
# Antkeeper Source

[![build status](https://github.com/antkeeper/antkeeper/actions/workflows/build.yml/badge.svg)](https://github.com/antkeeper/antkeeper/actions/workflows/build.yml)
[![code quality](https://app.codacy.com/project/badge/Grade/ec1d9f614fdf4d5b8effa6b7b72b3d5e)](https://app.codacy.com/gh/antkeeper/antkeeper/dashboard)
[![build status](https://github.com/antkeeper/antkeeper-source/actions/workflows/build.yml/badge.svg)](https://github.com/antkeeper/antkeeper-source/actions/workflows/build.yml)
[![code quality](https://app.codacy.com/project/badge/Grade/ec1d9f614fdf4d5b8effa6b7b72b3d5e)](https://app.codacy.com/gh/antkeeper/antkeeper-source/dashboard)
[![chat](https://img.shields.io/discord/547138509610156036?logo=discord)](https://discord.gg/ptwHV4T)

Antkeeper is an open-source 3D ant colony simulation game currently in development for Windows and Linux. Antkeeper is the passion project of solo indie game developer and myrmecophile [C. J. Howard](https://github.com/cjhoward).
Expand Down Expand Up @@ -40,7 +40,7 @@ Requirements:
Configure and build a Windows 64-bit release:

```bash
git clone https://github.com/antkeeper/antkeeper.git && cd antkeeper
git clone https://github.com/antkeeper/antkeeper-source.git && cd antkeeper
cmake --preset windows-x64-release
cmake --build --preset windows-x64-release
```
Expand All @@ -60,7 +60,7 @@ Generated HTML documentation will be located at `build/<platform>/docs/doxygen/h

## Contributing

Contributions are welcome! Feel free to [open an issue](https://github.com/antkeeper/antkeeper/issues) or [submit a pull request](https://github.com/antkeeper/antkeeper/pulls).
Contributions are welcome! Feel free to [open an issue](https://github.com/antkeeper/antkeeper-source/issues) or [submit a pull request](https://github.com/antkeeper/antkeeper-source/pulls).

See the [contribution guide](./docs/CONTRIBUTING.md) for more details on how to contribute.

Expand All @@ -70,7 +70,7 @@ See the [contribution guide](./docs/CONTRIBUTING.md) for more details on how to

## License

[![REUSE compliance](https://github.com/antkeeper/antkeeper/actions/workflows/reuse.yml/badge.svg)](https://github.com/antkeeper/antkeeper/actions/workflows/reuse.yml)
[![REUSE compliance](https://github.com/antkeeper/antkeeper-source/actions/workflows/reuse.yml/badge.svg)](https://github.com/antkeeper/antkeeper-source/actions/workflows/reuse.yml)

- Antkeeper source code is licensed under [GPL-3.0-or-later](./LICENSES/GPL-3.0-or-later.txt).
- Antkeeper translations are licensed under [CC-BY-SA-4.0](./LICENSES/CC-BY-SA-4.0.txt).
Expand Down
10 changes: 5 additions & 5 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ Thanks for taking the time to make Antkeeper better! ❤🐜

To report a bug, please do one of the following:

- [Open an issue](https://github.com/antkeeper/antkeeper/issues) on GitHub.
- [Open an issue](https://github.com/antkeeper/antkeeper-source/issues) on GitHub.
- [Email us](mailto:contact@antkeeper.com) a description of the bug.
- [Chat with us](https://discord.gg/AQA955HbK3) about the bug on Discord.

## Suggesting Changes

To suggest changes or new features, please do one of the following:

- [Open an issue](https://github.com/antkeeper/antkeeper/issues) on GitHub.
- [Open an issue](https://github.com/antkeeper/antkeeper-source/issues) on GitHub.
- [Email us](mailto:contact@antkeeper.com) your suggestion.
- [Chat with us](https://discord.gg/XpjNdXHCJK) about your suggestion on Discord.

## Contributing Code

If you have written code that fixes a bug or provides new functionality, please [open a pull request](https://github.com/antkeeper/antkeeper/pulls) on GitHub.
If you have written code that fixes a bug or provides new functionality, please [open a pull request](https://github.com/antkeeper/antkeeper-source/pulls) on GitHub.

### Coding Conventions

Expand All @@ -45,10 +45,10 @@ Ensure that all code contributions adhere to the following conventions:

If you would like to translate Antkeeper into your native language, please do the following:

1. [Create a new fork](https://github.com/antkeeper/antkeeper/fork) of this repository.
1. [Create a new fork](https://github.com/antkeeper/antkeeper-source/fork) of this repository.
2. Create a JSON file for the language at [localization/languages](../res/localization/languages)/`<target_language_tag>`.json, where `<target_language_tag>` is the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) of the target language. Use [en.json](../res/localization/languages/en.json) or [zh-Hans.json](../res/localization/languages/zh-Hans.json) as a template.
3. Add a column named `<target_language_tag>` to [strings.csv](../res/localization/strings.csv).
4. Translate all strings from the `en` column into the `<target_language_tag>` column. Check the `context` column for additional information about each string.
5. Append your name to [CONTRIBUTORS.md](./CONTRIBUTORS.md) to be properly credited for your contributions.
6. Commit your changes to the fork.
7. [Open a pull request](https://github.com/antkeeper/antkeeper/pulls) on GitHub.
7. [Open a pull request](https://github.com/antkeeper/antkeeper-source/pulls) on GitHub.

0 comments on commit 45bf1e9

Please sign in to comment.