mirror of
https://github.com/MelisaDev/melisa.git
synced 2024-11-11 19:07:28 +03:00
add badges to the readme.md
This commit is contained in:
parent
49d59d6e7d
commit
ccb66efe2b
3 changed files with 27 additions and 5 deletions
23
README.md
23
README.md
|
@ -1,11 +1,32 @@
|
|||
<p align="center">
|
||||
<b>
|
||||
The easiest way to create your own Discord Bot.
|
||||
The easiest way to create your own <strong>optimized</strong> Discord Bot.
|
||||
</b>
|
||||
</p>
|
||||
|
||||
<hr>
|
||||
|
||||
<a class="github-badge" href="https://scrutinizer-ci.com/g/MelisaDev/melisa/" tabindex="-1">
|
||||
<img src="https://scrutinizer-ci.com/g/MelisaDev/melisa/badges/quality-score.png?b=master" alt="Scrutinizer" />
|
||||
</a>
|
||||
<a class="github-badge" href="https://melisa.readthedocs.io/en/latest/?badge=latest" tabindex="-1">
|
||||
<img src="https://readthedocs.org/projects/melisa/badge/?version=latest" alt="Documentation Status"/>
|
||||
</a>
|
||||
<a class="github-badge" href="https://github.com/MelisaDev/melisa" tabindex="-1">
|
||||
<img src="https://img.shields.io/github/repo-size/MelisaDev/melisa" alt="Repo Size"/>
|
||||
</a>
|
||||
<a class="github-badge" href="https://github.com/MelisaDev/melisa" tabindex="-1">
|
||||
<img src="https://img.shields.io/github/last-commit/MelisaDev/melisa" alt="GitHub last commit"/>
|
||||
</a>
|
||||
<a class="github-badge" href="https://github.com/MelisaDev/melisa" tabindex="-1">
|
||||
<img src="https://img.shields.io/github/commit-activity/m/MelisaDev/melisa?label=commits" alt="GitHub commit activity"/>
|
||||
</a>
|
||||
<a class="github-badge" href="https://discord.gg/QX4EG8f7aD" tabindex="-1">
|
||||
<img src="https://img.shields.io/discord/951867868188934216" alt="Discord"/>
|
||||
</a>
|
||||
|
||||
<hr>
|
||||
|
||||
<h2 align="center">
|
||||
THIS LIBRARY IS CURRENTLY UNDER DEVELOPMENT!
|
||||
</h2>
|
||||
|
|
|
@ -57,9 +57,9 @@ class Shard:
|
|||
"""
|
||||
create_task(self._gateway.close())
|
||||
|
||||
async def update_presence(
|
||||
self, activity: BotActivity = None, status: str = None
|
||||
) -> Shard:
|
||||
async def update_presence(self,
|
||||
activity: BotActivity = None,
|
||||
status: str = None) -> Shard:
|
||||
"""
|
||||
|coro|
|
||||
|
||||
|
|
|
@ -37,7 +37,8 @@ class ChannelTypes(IntEnum):
|
|||
GUILD_PUBLIC_THREAD:
|
||||
A temporary sub-channel within a GUILD_TEXT channel
|
||||
GUILD_PRIVATE_THREAD:
|
||||
A temporary sub-channel within a GUILD_TEXT channel that is only viewable by those invited and those with the MANAGE_THREADS permission
|
||||
A temporary sub-channel within a GUILD_TEXT channel that is only viewable by those invited
|
||||
and those with the MANAGE_THREADS permission
|
||||
GUILD_STAGE_VOICE:
|
||||
A voice channel for hosting events with an audience
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue