mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
changelog and bump (#3454)
This commit is contained in:
parent
97a9fde5fd
commit
0d3c72f356
@ -1 +0,0 @@
|
|||||||
Adds toggle for channels for embedset.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
implements ``__call__`` for commands
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Fixed an error when ``redbot.core.utils.mod.mass_purge`` is passed ``COUNT % 100 == 1`` messages AND the last message in the list does not exist.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Typo fixes in doc strings.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Added a ``[p]helpset deletedelay`` command, that lets you set a delay (in seconds) after which help messages / pages will be deleted.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Role granting/removing commands will now notify when the user already has/doesn't have a role when attempting to add/remove it.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Playlist no longer default to the Server scope, and will not return matches across multiple scopes.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Fixes error on exiting customcom interactive menu.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Improve error message when user passes cog that isn't installed to a command that only accepts installed cogs.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Downloader will now do the initialization in background to avoid timeout issues during bot startup.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Log errors that may happen in initialization task.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
[General] Adds a maximum amount to roll command.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Added a defaultdays command to set the amount of days for the ban commands to use for days of messages deleted when days isn't used in the command itself.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Added a ``[p]modset dm`` to toggle kick/bans sending an embed to the user detailing the reason for the kick/ban, the server they were kicked/banned from and if it was a kick or a ban.
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Trivia list typo fixes.
|
|
||||||
68
docs/changelog_3_3_0.rst
Normal file
68
docs/changelog_3_3_0.rst
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
.. 3.3.x Changelogs
|
||||||
|
|
||||||
|
Redbot 3.3.0 (2020-01-26)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Core Bot
|
||||||
|
--------
|
||||||
|
|
||||||
|
- The bot's description is now configurable.
|
||||||
|
- We now use discord.py 1.3.1, this comes with added teams support.
|
||||||
|
- The commands module has been slightly restructured to provide more useful data to developers.
|
||||||
|
- Help is now self consistent in the extra formatting used.
|
||||||
|
|
||||||
|
Core Commands
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Slowmode should no longer error on nonsensical time quantities.
|
||||||
|
- Embed use can be configured per channel as well.
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- We've made some small fixes to inaccurate instructions about installing with pyenv.
|
||||||
|
- Notes about deprecating in 3.3 have been altered to 3.4 to match the intended timeframe.
|
||||||
|
|
||||||
|
Admin
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Gives feedback when adding or removing a role doesn't make sense.
|
||||||
|
|
||||||
|
Audio
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Playlist finding is more intuitive.
|
||||||
|
- disconnect and repeat commands no longer interfere with eachother.
|
||||||
|
|
||||||
|
CustomCom
|
||||||
|
---------
|
||||||
|
|
||||||
|
- No longer errors when exiting an interactive menu.
|
||||||
|
|
||||||
|
Cleanup
|
||||||
|
-------
|
||||||
|
|
||||||
|
- A rare edge case involving messages which are deleted during cleanup and are the only message was fixed.
|
||||||
|
|
||||||
|
Downloader
|
||||||
|
----------
|
||||||
|
|
||||||
|
- Some user facing messages were improved.
|
||||||
|
- Downloader's initialization can no longer time out at startup.
|
||||||
|
|
||||||
|
General
|
||||||
|
-------
|
||||||
|
|
||||||
|
- Roll command will no longer attempt to roll obscenely large amounts.
|
||||||
|
|
||||||
|
Mod
|
||||||
|
---
|
||||||
|
|
||||||
|
- You can set a default amount of days to clean up when banning.
|
||||||
|
- Ban and hackban now use that default.
|
||||||
|
- Users can now optionally be DMed their ban reason.
|
||||||
|
|
||||||
|
Permissions
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- Now has stronger enforcement of prioritizing botwide settings.
|
||||||
@ -57,6 +57,7 @@ Welcome to Red - Discord Bot's documentation!
|
|||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
:caption: Changelogs:
|
:caption: Changelogs:
|
||||||
|
|
||||||
|
changelog_3_3_0
|
||||||
release_notes_3_2_0
|
release_notes_3_2_0
|
||||||
changelog_3_2_0
|
changelog_3_2_0
|
||||||
changelog_3_1_0
|
changelog_3_1_0
|
||||||
|
|||||||
@ -191,7 +191,7 @@ def _update_event_loop_policy():
|
|||||||
_asyncio.set_event_loop_policy(_uvloop.EventLoopPolicy())
|
_asyncio.set_event_loop_policy(_uvloop.EventLoopPolicy())
|
||||||
|
|
||||||
|
|
||||||
__version__ = "3.2.4.dev1"
|
__version__ = "3.3.0"
|
||||||
version_info = VersionInfo.from_str(__version__)
|
version_info = VersionInfo.from_str(__version__)
|
||||||
|
|
||||||
# Filter fuzzywuzzy slow sequence matcher warning
|
# Filter fuzzywuzzy slow sequence matcher warning
|
||||||
|
|||||||
@ -38,7 +38,7 @@ install_requires =
|
|||||||
Click==7.0
|
Click==7.0
|
||||||
colorama==0.4.3
|
colorama==0.4.3
|
||||||
contextlib2==0.5.5
|
contextlib2==0.5.5
|
||||||
discord.py==1.3.0
|
discord.py==1.3.1
|
||||||
distro==1.4.0; sys_platform == "linux"
|
distro==1.4.0; sys_platform == "linux"
|
||||||
fuzzywuzzy==0.17.0
|
fuzzywuzzy==0.17.0
|
||||||
idna==2.8
|
idna==2.8
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user