Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/slimproto/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"config_flow": true,
"iot_class": "local_push",
"documentation": "https://www.home-assistant.io/integrations/slimproto",
"requirements": ["aioslimproto==1.0.2"],
"requirements": ["aioslimproto==2.0.0"],
"codeowners": ["@marcelveldt"],
"after_dependencies": ["media_source"]
}
4 changes: 2 additions & 2 deletions homeassistant/components/slimproto/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async def async_added_to_hass(self) -> None:
EventType.PLAYER_CONNECTED,
EventType.PLAYER_DISCONNECTED,
EventType.PLAYER_NAME_RECEIVED,
EventType.PLAYER_RPC_EVENT,
EventType.PLAYER_CLI_EVENT,
),
player_filter=self.player.player_id,
)
Expand Down Expand Up @@ -205,7 +205,7 @@ async def _on_slim_event(self, event: SlimEvent) -> None:
if event.type == EventType.PLAYER_CONNECTED:
# player reconnected, update our player object
self.player = self.slimserver.get_player(event.player_id)
if event.type == EventType.PLAYER_RPC_EVENT:
if event.type == EventType.PLAYER_CLI_EVENT:
# rpc event from player such as a button press,
# forward on the eventbus for others to handle
dev_id = self.registry_entry.device_id if self.registry_entry else None
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ aiosenz==1.0.0
aioshelly==2.0.0

# homeassistant.components.slimproto
aioslimproto==1.0.2
aioslimproto==2.0.0

# homeassistant.components.steamist
aiosteamist==0.3.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ aiosenz==1.0.0
aioshelly==2.0.0

# homeassistant.components.slimproto
aioslimproto==1.0.2
aioslimproto==2.0.0

# homeassistant.components.steamist
aiosteamist==0.3.1
Expand Down