mirror of
https://github.com/onyx-and-iris/streamlabs-socketio-py
synced 2025-04-11 08:03:52 +01:00
Compare commits
6 Commits
25ee6e5c82
...
06f9811247
Author | SHA1 | Date | |
---|---|---|---|
06f9811247 | |||
987311e8f9 | |||
245578c060 | |||
1348e02c28 | |||
db5e992fb6 | |||
|
3c0562e5ec |
@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
- [x]
|
||||
|
||||
## [1.1.2] - 2024-11-06
|
||||
|
||||
### Fixed
|
||||
|
||||
- [PR #8][pr-8] fixes bug receiving `raid` events.
|
||||
|
||||
## [1.0.0] - 2023-06-28
|
||||
|
||||
The only potential breaking change, a new error class raised if the initial connection fails.
|
||||
@ -28,3 +34,6 @@ The only potential breaking change, a new error class raised if the initial conn
|
||||
- Python minimum required version changed to 3.8
|
||||
- new error class
|
||||
- `SteamlabsSIOConnectionError` raised on a connection error
|
||||
|
||||
|
||||
[pr-8]: https://github.com/onyx-and-iris/streamlabs-socketio-py/pull/8
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "streamlabsio"
|
||||
version = "1.1.1"
|
||||
version = "1.1.2"
|
||||
description = "Get real time Twitch/Youtube events through Streamlabs SocketIO API"
|
||||
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
||||
license = "MIT"
|
||||
|
@ -22,7 +22,7 @@ class Client:
|
||||
self.sio.on("disconnect", self.disconnect_handler)
|
||||
self.obs = Observable()
|
||||
self.streamlabs = ("donation",)
|
||||
self.twitch = ("follow", "subscription", "host", "bits", "raids")
|
||||
self.twitch = ("follow", "subscription", "host", "bits", "raid")
|
||||
self.youtube = ("follow", "subscription", "superchat")
|
||||
|
||||
def __enter__(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user