From 2add6897298ae4fcd64993245eef2256903b3f69 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Thu, 24 Dec 2020 00:43:51 +0100 Subject: [PATCH] Red 3.4.4 - Changelog (#4684) * Red 3.4.4 - Changelog * Fix my failures * Flame is a person too * Apply suggestions from code review Co-authored-by: Flame442 <34169552+Flame442@users.noreply.github.com> * Update changelog_3_4_0.rst Co-authored-by: Flame442 <34169552+Flame442@users.noreply.github.com> --- docs/changelog_3_4_0.rst | 97 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) diff --git a/docs/changelog_3_4_0.rst b/docs/changelog_3_4_0.rst index 07fbfe00c..0d3ea65b2 100644 --- a/docs/changelog_3_4_0.rst +++ b/docs/changelog_3_4_0.rst @@ -1,5 +1,102 @@ .. 3.4.x Changelogs +Redbot 3.4.4 (2020-12-24) +========================= + +| Thanks to all these amazing people that contributed to this release: +| :ghuser:`aikaterna`, :ghuser:`bobloy`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`kreus7`, :ghuser:`NeuroAssassin`, :ghuser:`npc203`, :ghuser:`palmtree5`, :ghuser:`phenom4n4n`, :ghuser:`Predeactor`, :ghuser:`retke`, :ghuser:`siu3334`, :ghuser:`Vexed01`, :ghuser:`yamikaitou` + +Read before updating +-------------------- + +1. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point): + + Red 3.4.4 uses a new Lavalink jar that you will need to manually update from `our GitHub `__. + +2. Ubuntu 16.04 is no longer supported as it will soon reach its end of life and it is no longer viable for us to maintain support for it. + + While you might still be able to run Red on it, we will no longer put any resources into supporting it. If you're using Ubuntu 16.04, we highly recommend that you upgrade to the latest LTS version of Ubuntu. + + +End-user changelog +------------------ + +Core Bot +******** + +- Red's logging will now shine in your terminal more than ever (:issue:`4577`) +- Improved consistency of command usage in the help messages within all commands in Core Red (:issue:`4589`) +- Added a friendly error when the duration provided to commands that use the ``commands.TimedeltaConverter`` converter is out of the maximum bounds allowed by Python interpreter (:issue:`4019`, :issue:`4628`, :issue:`4630`) +- Fixed an error when removing path from a different operating system than the bot is currently running on with ``[p]removepath`` (:issue:`2609`, :issue:`4662`, :issue:`4466`) + +Audio +***** + +- Fixed ``[p]llset java`` failing to set the Java executable path (:issue:`4621`, :issue:`4624`) +- Fixed Soundcloud playback (:issue:`4683`) +- Fixed YouTube age-restricted track playback (:issue:`4683`) +- Added more friendly messages for 429 errors to let users know they have been temporarily banned from accessing the service instead of a generic Lavalink error (:issue:`4683`) +- Environment information will now be appended to Lavalink tracebacks in the spring.log (:issue:`4683`) + +Cleanup +******* + +- ``[p]cleanup self`` will now delete the command message when the bot has permissions to do so (:issue:`4640`) + +Dev +*** + +- Added new ``[p]bypasscooldown`` command that allows owners to bypass command cooldowns (:issue:`4440`) + +Economy +******* + +- ``[p]economyset slotmin`` and ``[p]economyset slotmax`` now warn when the new value will cause the slots command to not work (:issue:`4583`) + +General +******* + +- Updated features list in ``[p]serverinfo`` with the latest changes from Discord (:issue:`4678`) + +Mod +*** + +- ``[p]ban`` command will no longer error out when the given reason is too long (:issue:`4187`, :issue:`4189`) + +Streams +******* + +- Scheduled YouTube streams now work properly with the cog (:issue:`3691`, :issue:`4615`) +- YouTube stream schedules are now announced before the stream (:issue:`4615`) + + - Alerts about YouTube stream schedules can be disabled with a new ``[p]streamset ignoreschedule`` command (:issue:`4615`) + +- Improved error logging (:issue:`4680`) + +Trivia Lists +************ + +- Added ``whosthatpokemon5`` trivia list containing Pokémon from the 5th generation (:issue:`4646`) +- Added ``geography`` trivia list (:issue:`4618`) + + +Developer changelog +------------------- + +- `get_audit_reason()` can now be passed a ``shorten`` keyword argument which will automatically shorten the returned audit reason to fit the max length allowed by Discord audit logs (:issue:`4189`) +- ``bot.remove_command()`` now returns the command object of the removed command as does the equivalent method from `discord.ext.commands.Bot` class (:issue:`4636`) + + +Documentation changes +--------------------- + +- Added `cog guide for Downloader cog ` (:issue:`4511`) +- Added `cog guide for Economy cog ` (:issue:`4519`) +- Added `cog guide for Streams cog ` (:issue:`4521`) +- Added `guide_cog_creators` document (:issue:`4637`) +- Removed install instructions for Ubuntu 16.04 (:issue:`4650`) + + Redbot 3.4.3 (2020-11-16) =========================