Skip to content

Commit b797d9a

Browse files
committed
4.1
1 parent 8c4e085 commit b797d9a

27 files changed

+5
-106
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ __pycache__/
1717
pypresence/__pycache__/
1818
test.py
1919
.mypy_cache/
20+
*.egg-info/

dist/pypresence-1.0.1.tar.gz

-3.14 KB
Binary file not shown.

dist/pypresence-1.0.2.tar.gz

-3.2 KB
Binary file not shown.

dist/pypresence-1.0.3.tar.gz

-3.21 KB
Binary file not shown.

dist/pypresence-1.0.4.tar.gz

-3.24 KB
Binary file not shown.

dist/pypresence-1.0.7.tar.gz

-3.19 KB
Binary file not shown.

dist/pypresence-1.0.9.tar.gz

-3.37 KB
Binary file not shown.

dist/pypresence-1.1.0.tar.gz

-3.66 KB
Binary file not shown.

dist/pypresence-2.0.0.tar.gz

-4.09 KB
Binary file not shown.

dist/pypresence-2.0.2.tar.gz

-4.09 KB
Binary file not shown.

dist/pypresence-2.1.0.tar.gz

-4.17 KB
Binary file not shown.

dist/pypresence-2.1.1.tar.gz

-4.45 KB
Binary file not shown.

dist/pypresence-3.0.0.tar.gz

-7.96 KB
Binary file not shown.

dist/pypresence-3.1.0.tar.gz

-13 KB
Binary file not shown.

dist/pypresence-3.1.1.tar.gz

-13.1 KB
Binary file not shown.

dist/pypresence-3.2.0.tar.gz

-15.4 KB
Binary file not shown.

dist/pypresence-3.2.1.tar.gz

-15.4 KB
Binary file not shown.

dist/pypresence-3.2.2.tar.gz

-15.6 KB
Binary file not shown.

dist/pypresence-3.3.0.tar.gz

-11 KB
Binary file not shown.

dist/pypresence-3.3.1.tar.gz

-11 KB
Binary file not shown.

dist/pypresence-4.0.0.tar.gz

-9.43 KB
Binary file not shown.

docs/sphinx/doc/client.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ Client()
153153
:param str join: unique hashed string for chat invitations and ask to join
154154
:param str spectate: unique hashed string for spectate button
155155
:param str match: unique hashed string for spectate and join
156+
:param list buttons: list of dicts for buttons on your profile in the format ``[{"label": "My Website", "url": "https://qtqt.cf"}, ...]``, can list up to two buttons
156157
:param bool instance: marks the match as a game session with a specific beginning and end
157158
:rtype: pypresence.Response
158159

docs/sphinx/doc/presence.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Presence()
6363
:param str join: unique hashed string for chat invitations and ask to join
6464
:param str spectate: unique hashed string for spectate button
6565
:param str match: unique hashed string for spectate and join
66+
:param list buttons: list of dicts for buttons on your profile in the format ``[{"label": "My Website", "url": "https://qtqt.cf"}, ...]``, can list up to two buttons
6667
:param bool instance: marks the match as a game session with a specific beginning and end
6768
:rtype: pypresence.Response
6869

pypresence.egg-info/PKG-INFO

Lines changed: 0 additions & 89 deletions
This file was deleted.

pypresence.egg-info/SOURCES.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

pypresence/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
__author__ = 'qwertyquerty'
1515
__copyright__ = 'Copyright 2018 qwertyquerty'
1616
__license__ = 'MIT'
17-
__version__ = '3.1.4'
17+
__version__ = '4.1.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
setup(name='pypresence',
99
author='qwertyquerty',
1010
url='https://github.com/qwertyquerty/pypresence',
11-
version='4.0.0',
11+
version='4.1.0',
1212
packages=['pypresence'],
1313
python_requires='>=3.5',
1414
platforms=['Windows', 'Linux', 'OSX'],

0 commit comments

Comments
 (0)