Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arandomnewaccount committed Oct 7, 2021
1 parent bf46bdb commit 2086f15
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
31 changes: 31 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,35 @@
# Changelog
# 1.4.0
### Added
- getRelationships, getVoiceRegions, getHandoffToken
- suppressEveryonePings, suppressRoleMentions, enableMobilePushNotifications, setChannelNotificationOverrides, setMessageNotifications, muteGuild, muteDM
- getRoleMemberCounts, getGuildIntegrations, getGuildTemplates, getRoleMemberIDs, addMembersToRole, setMemberRoles
- createGuild, deleteGuild, previewGuild, getDiscoverableGuilds, deleteChannel, getGuildInvites, getChannelInvites, getGuildRegions, getGuildChannels
- __DM groups__: removeFromDmGroup, addToDmGroup, createDmGroupInvite, setDMGroupName, setDmGroupIcon, deleteInvite
- setPhone and validatePhone (thx sudo-do)
- __Threads__: setThreadNotifications, createThread, leaveThread, joinThread, archiveThread, unarchiveThread
- __School hubs__: lookupSchool, schoolHubSignup, schoolHubWaitlistSignup, schoolHubSignup, verifySchoolHubSignup, getSchoolHubGuilds, getSchoolHubDirectoryCounts, joinGuildFromSchoolHub, searchSchoolHub, getMySchoolHubGuilds, setSchoolHubGuildDetails, getLiveStages
- setProfileColor
- __Interactions__: getSlashCommands (only if you share a dm with the bot), triggerSlashCommand, click
- getReportMenu, reportSpam
- setUserNote
- inviteToCall, declineCall
- utils.slash.SlashCommander (from discum.utils.slash import SlashCommander) to craft slash command interaction data
- utils.button.Buttoner (from discum.utils.button import Buttoner) to craft button/dropdown interaction data
- gateway.request.searchSlashCommands (only for guilds), gateway.queryGuildMembers (op8 "brute forcing" now possible), and gateway.checkGuildMembers
- remote auth functions (initRA, remoteAuthLogin) + ability to add/remove functions to the remote auth gateway (ra)
- 4 functions to gateway.session.guild(guildID): applicationCommandCount, maxMembers, stages, and stickers
- gateway.connectionKwargs variable (dict): possible key values = "proxy\_type", "http\_proxy\_auth"; see issue #153
### Changed
- use \_\_slots__ to lower ram usage
- only import stuff when needed (speed up imports)
- fixed login (thx MayaankAshok)
- fixed color printing for windows
- renamed gateway.session.guild(guildID).position to gateway.session.guild(guildID).me
- updated ready event parsing to use the value of "users" to provide full user data to DM recipients and relationships (thx dolfies)
### Removed
- getGuildMember

# 1.3.1
### Added
- checkPermissions function to permissions.py
Expand Down
2 changes: 1 addition & 1 deletion discum/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (1, 3, 1)
VERSION = (1, 4, 0)

__version__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Discum

A simple, easy to use, non-restrictive, synchronous Discord API Wrapper for Selfbots/Userbots written in Python.

![version](https://img.shields.io/badge/latest%20version-1.3.1-blue) [![python versions](https://img.shields.io/badge/python-2.7%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://github.com/Merubokkusu/Discord-S.C.U.M)
![version](https://img.shields.io/badge/latest%20version-1.4.0-blue) [![python versions](https://img.shields.io/badge/python-2.7%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://github.com/Merubokkusu/Discord-S.C.U.M)

Table of Contents
-----------------
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DisCum
![version](https://img.shields.io/badge/github%20version-1.3.1-blue) [![python versions](https://img.shields.io/badge/python-2.7%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://github.com/Merubokkusu/Discord-S.C.U.M)
![version](https://img.shields.io/badge/github%20version-1.4.0-blue) [![python versions](https://img.shields.io/badge/python-2.7%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://github.com/Merubokkusu/Discord-S.C.U.M)
[![PyPI version](https://badge.fury.io/py/discum.svg)](https://badge.fury.io/py/discum) [![python versions](https://img.shields.io/badge/python-2.7%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-green)](https://pypi.org/project/discum)
A simple, easy to use, non-restrictive, synchronous Discord API Wrapper for Selfbots/Userbots written in Python.
-using requests and websockets :)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
EMAIL = '[email protected]'
AUTHOR = 'Merubokkusu'
REQUIRES_PYTHON = '>=2.7.0'
VERSION = '1.3.1'
VERSION = '1.4.0'

# What packages are required for this module to be executed?
REQUIRED = [
Expand Down

0 comments on commit 2086f15

Please sign in to comment.