Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
Fix: v2.2.5
Browse files Browse the repository at this point in the history
This is a very quick patch update to fix some bugs that were in v2.2.4. For more info, please check out the changelog. - Noelle
  • Loading branch information
No767 committed Sep 6, 2022
2 parents 6e99a30 + 760cc4f commit d7c4ae3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
3 changes: 3 additions & 0 deletions Bot/Cogs/rinhelp.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,9 @@ async def rinHelp(
embedVar.add_field(
name="`search`", value="Searches on reddit for content", inline=True
)
embedVar.add_field(
name="`memes`", value="Gets some memes from Reddit", inline=True
)
embedVar.add_field(
name="`feed`",
value="Returns up to 25 reddit posts based on the current filter",
Expand Down
2 changes: 1 addition & 1 deletion Bot/Cogs/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self, bot):
)
async def version(self, ctx):
embedVar = discord.Embed()
embedVar.description = "Build Version: v2.2.1"
embedVar.description = "Build Version: v2.2.5"
await ctx.respond(embed=embedVar)

asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
Expand Down
2 changes: 1 addition & 1 deletion Bot/rinbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Grabs the bot's token from the .env file
load_dotenv()
TOKEN = os.getenv("Testing_Bot_Token")
TOKEN = os.getenv("TOKEN")
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix=".", intents=intents, help_command=None)
Expand Down
20 changes: 6 additions & 14 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
# 🛠️ Rin V2.2.4 (LTS) 🛠️
# 🛠️ Rin V2.2.5 (LTS) 🛠️

This updates mainly includes a new Debian based Docker image, small improvements to the Reddit cog, and some dependency updates.
This patch update fixes some bugs. For more information, see the [changelog](https://github.com/No767/Rin/releases/tag/v2.2.4) for the previous release.

## 🛠️ Changes
- Edge builds are by default, the Debian-based Docker images
- Use Personal Access Tokens (PAT) for release workflow
- Add different tags to allow for easier pulling
- Add an example env for Docker deployments (`env-docker-example`)
- Add improved Reddit Commands from Reina
- Updated Getting Started Docs
## ✨ Additions
- Use `TOKEN` env instead of `Testing_Bot_Token` for the bot token
- Update `rinhelp` with the proper commands
- Bump version to `v2.2.5`

- Debian-based Docker Image
- `/reddit memes` command
## ✨ Additions

## ➖ Removals

## Dependency Updates

- \[pip](deps)\: Bump py-cord from 2.0.1 to 2.1.1 (@dependabot)
- \[pip](deps)\: Bump orjson from 3.7.12 to 3.8.0 (@dependabot)
- \[pip](deps)\: Bump python-dotenv from 0.20.0 to 0.21.0 (@dependabot)

0 comments on commit d7c4ae3

Please sign in to comment.