Skip to content

Commit

Permalink
1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arandomnewaccount committed Jul 5, 2021
1 parent a4e44a7 commit 4a48515
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions changelog.md
@@ -1,4 +1,22 @@
# Changelog
# 1.3.1
### Added
- checkPermissions function to permissions.py
- gateway event type parsing for messages, channels, and relationships
- organized some files that were being used in multiple contexts into utils folder
- search guild members (opcode 8) examples
- more searchMessages queries
- accessibility.py to calculate and parse the accessibility number (sent in discord's "science"/tracking requests)
- color.py to help with getting color values
- 4 resp api wraps: greet, setAboutMe, setBanner, and getGuilds
- findVisibleChannels (looks for channels and categories)
- thread\_member\_lists argument added to op14 request wrap
### Changed
- typo in http request headers fixed (thx dolfies)
- capabilities # in gateway identify msg updated
- updated embed examples (thx caiocinel)
- subscribeToGuildEvents also works for unavailable guilds
- updated message parsing
# 1.3.0
### Added
- more message types to discum/gateway/messages/parse.py
Expand Down
2 changes: 1 addition & 1 deletion discum/__version__.py
@@ -1,3 +1,3 @@
VERSION = (1, 3, 0)
VERSION = (1, 3, 1)

__version__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion docs/readme.md
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.2.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.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)

Table of Contents
-----------------
Expand Down
2 changes: 1 addition & 1 deletion readme.md
@@ -1,5 +1,5 @@
# DisCum
![version](https://img.shields.io/badge/github%20version-1.3.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)
![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)
[![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
Expand Up @@ -18,7 +18,7 @@
EMAIL = 'loser@merubokkusu.com'
AUTHOR = 'Merubokkusu'
REQUIRES_PYTHON = '>=2.7.0'
VERSION = '1.3.0'
VERSION = '1.3.1'

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

0 comments on commit 4a48515

Please sign in to comment.