Compare commits

..

No commits in common. "06f9811247594ff4c145f8cca36becc59e45343e" and "25ee6e5c82b1631f82183fe14d824084e4b8bc46" have entirely different histories.

3 changed files with 2 additions and 11 deletions

View File

@ -10,12 +10,6 @@ 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.
@ -34,6 +28,3 @@ 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

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "streamlabsio"
version = "1.1.2"
version = "1.1.1"
description = "Get real time Twitch/Youtube events through Streamlabs SocketIO API"
authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT"

View File

@ -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", "raid")
self.twitch = ("follow", "subscription", "host", "bits", "raids")
self.youtube = ("follow", "subscription", "superchat")
def __enter__(self):