From 4e8030eca4b1f4028268683ccfc7b481b1608dde Mon Sep 17 00:00:00 2001 From: Parker Date: Fri, 29 Nov 2024 01:36:06 -0600 Subject: Largely embed wording changes + other small tweaks + combine pause commands --- code/cogs/news.py | 32 +++++++------------------------- 1 file changed, 7 insertions(+), 25 deletions(-) (limited to 'code/cogs/news.py') diff --git a/code/cogs/news.py b/code/cogs/news.py index 434d8b3..35aeb04 100644 --- a/code/cogs/news.py +++ b/code/cogs/news.py @@ -13,7 +13,7 @@ class News(commands.Cog): async def news(self, interaction: discord.Interaction): "Get recent news and updates about the bot" embed = discord.Embed( - title="Recent News :newspaper2:", + title="Recent News and Updates", description=( "View recent code commits" " [here](https://github.com/packetparker/guava/commits)\n\u200b" @@ -22,30 +22,12 @@ class News(commands.Cog): ) embed.add_field( - name="**Lyrics!**", - value=( - "> You can now get lyrics for the song that is currently" - " playing. Just use the `/lyrics` command! Some songs may not" - " have lyrics available, but the bot will do its best to find" - " them." - ), - ) - - embed.add_field( - name="**Apple Music Support!**", - value=( - "> After some trial and error, you can now play music through" - " Apple Music links. Just paste the link and the bot will do" - " the rest!" - ), - ) - - embed.add_field( - name="**Autoplay Update**", - value=( - "> Autoplay is now much more stable after a revamp of the" - " previous system. If you experienced short outages recently," - " this was due to the update. Thank you for your patience!" + name="**Limited YouTube Support**", + description=( + "Support for YouTube links and searches has been added. This" + " is currently in a testing phase and is not guaranteed to" + " work. If you encounter any issues, please submit a but" + " report." ), inline=False, ) -- cgit v1.2.3-70-g09d2 From fbe8dbe4552b55959980cc93d94adb491336900c Mon Sep 17 00:00:00 2001 From: Parker Date: Tue, 3 Dec 2024 00:03:16 -0600 Subject: Update embed --- code/cogs/news.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'code/cogs/news.py') diff --git a/code/cogs/news.py b/code/cogs/news.py index 35aeb04..fb7c929 100644 --- a/code/cogs/news.py +++ b/code/cogs/news.py @@ -23,7 +23,7 @@ class News(commands.Cog): embed.add_field( name="**Limited YouTube Support**", - description=( + value=( "Support for YouTube links and searches has been added. This" " is currently in a testing phase and is not guaranteed to" " work. If you encounter any issues, please submit a but" @@ -32,6 +32,16 @@ class News(commands.Cog): inline=False, ) + embed.add_field( + name="**General Improvements**", + value=( + "Quality of life updates and general improvements have been" + " made. Hopefully there are no new bugs, but please report any" + " with ." + ), + inline=False, + ) + await interaction.response.send_message(embed=embed, ephemeral=True) -- cgit v1.2.3-70-g09d2