Skip to content

Commit

Permalink
Updated the link of the repo and username
Browse files Browse the repository at this point in the history
  • Loading branch information
justalemon committed Jul 4, 2024
1 parent b5582ad commit 5c496d6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ Leek is a simple and easy to use Discord Bot Framework. It allows you to easily

## Download

* [GitHub Releases](https://github.com/LeekByLemon/Leek/releases)
* [GitHub Actions](https://github.com/LeekByLemon/Leek/actions) (experimental versions)
* [GitHub Releases](https://github.com/justalemon/Leek/releases)
* [GitHub Actions](https://github.com/justalemon/Leek/actions) (experimental versions)

## Installation

Run the following command to install the latest version of Leek from master.

```
pip install https://github.com/LeekByLemon/Leek/archive/master.zip
pip install https://github.com/justalemon/Leek/archive/master.zip
```

If you want to install from git for developent purposes, run the following commands:

```
git clone https://github.com/LeekByLemon/Leek.git leek
git clone https://github.com/justalemon/Leek.git leek
cd leek
pip install -e .
```
Expand All @@ -40,8 +40,8 @@ Leek allows you to configure your bot just by using a `.env` file. On this `.env

After setting the required configuration options, you can start the bot by using `python -m leek`.

[actions-img]: https://img.shields.io/github/actions/workflow/status/LeekByLemon/Leek/main.yml?branch=master&label=actions
[actions-url]: https://github.com/LeekByLemon/Leek/actions
[actions-img]: https://img.shields.io/github/actions/workflow/status/justalemon/Leek/main.yml?branch=master&label=actions
[actions-url]: https://github.com/justalemon/Leek/actions
[patreon-img]: https://img.shields.io/badge/support-patreon-FF424D.svg
[patreon-url]: https://www.patreon.com/lemonchan
[paypal-img]: https://img.shields.io/badge/support-paypal-0079C1.svg
Expand Down
2 changes: 1 addition & 1 deletion leek/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ async def __about(self, ctx: ApplicationContext) -> None:
embed = Embed()
embed.colour = 0x499529
embed.title = localize("BOT_COMMAND_ABOUT_TITLE", ctx.locale)
embed.url = "https://github.com/LeekByLemon"
embed.url = "https://github.com/justalemon/Leek"
embed.description = localize("BOT_COMMAND_ABOUT_BODY", ctx.locale)
embed.set_thumbnail(url="https://avatars.githubusercontent.com/u/99556316")
embed.set_footer(text=localize("BOT_COMMAND_ABOUT_FOOTER", ctx.locale))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dynamic = [
]

[project.urls]
Homepage = "https://github.com/LeekByLemon/Leek"
Homepage = "https://github.com/justalemon/Leek"

[project.optional-dependencies]
dev = [
Expand Down

0 comments on commit 5c496d6

Please sign in to comment.