Releases: gogcom/galaxy-integrations-python-api
Releases · gogcom/galaxy-integrations-python-api
0.50
- Fixed edge-case of plugin not shutting down when client crashes.
- Added more details to game time/achievements import errors.
0.49
Added new platform definitions:
- Twitch
- Minecraft
- GameSessions
- Nuuvem
- FXStore
- IndieGala
- Playfire
- Oculus
- Test
0.48
- Changed
shutdownmethod from synchronous to asynchronous (async)
0.47
- Added
launch_platform_clientmethod.
0.46
- Added
achievements_import_completeandgame_times_import_completemethods.
0.45
- Removed
start_achievements_import(self, game_ids),
import_games_achievements(self, game_ids),
get_unlocked_achievements(self, game_id),
game_achievements_import_success(self, game_id, achievements),
game_achievements_import_failure(self, game_id, error)and
achievements_import_finished(self). Please use
prepare_achievements_context(self, game_ids)andget_unlocked_achievements(self, game_id, context)instead. - Removed
start_game_times_import(self, game_ids),
import_game_times(self, game_ids),
get_game_times(self),
game_time_import_success(self, game_time),
game_time_import_failure(self, game_id, error),
game_times_import_finished(self). Please use
prepare_game_times_context(self, game_ids)and
get_game_time(self, game_id, context)instead. - Deprecated
AsyncMockandcoroutine_mock. Please useMagicMockwithasync_return_valueinstead. - Fixed exception handling in handshake.
0.44
- fix features detection
- add tools to handle process info
0.43
- Removed users and chat methods, notifications and types (the features will undergo changes in the future):
get_userssend_messagemark_as_readget_roomsget_room_history_from_messageget_room_history_from_timestampupdate_roomPresenceUserInfoRoomMessage
- Added
create_taskmethod. WindowsProactorEventLoopPolicyis used on Windows.