Compare commits

...

6 Commits

Author SHA1 Message Date
06f9811247 fix ver number 2024-11-06 17:18:23 +00:00
987311e8f9 upd changelog 2024-11-06 17:15:42 +00:00
245578c060 Merge branch 'dev' of https://github.com/onyx-and-iris/streamlabs-socketio-py into dev 2024-11-06 16:58:46 +00:00
1348e02c28 patch bump
fixes raid event name see db5e992
2024-11-06 16:58:42 +00:00
db5e992fb6
Merge pull request #8 from mcmonkey819/mcmonkey819/raid-name-fix
Fix raid event name
2024-11-06 16:56:08 +00:00
mcmonkey819
3c0562e5ec Fix raid event name 2024-11-06 09:45:14 -05:00
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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"

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