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
shutdown
method from synchronous to asynchronous (async
)
0.47
- Added
launch_platform_client
method.
0.46
- Added
achievements_import_complete
andgame_times_import_complete
methods.
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
AsyncMock
andcoroutine_mock
. Please useMagicMock
withasync_return_value
instead. - 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_users
send_message
mark_as_read
get_rooms
get_room_history_from_message
get_room_history_from_timestamp
update_room
Presence
UserInfo
Room
Message
- Added
create_task
method. WindowsProactorEventLoopPolicy
is used on Windows.