Skip to content

Releases: gogcom/galaxy-integrations-python-api

0.50

19 Sep 12:59
Compare
Choose a tag to compare
  • Fixed edge-case of plugin not shutting down when client crashes.
  • Added more details to game time/achievements import errors.

0.49

13 Sep 14:32
aa7b398
Compare
Choose a tag to compare

Added new platform definitions:

  • Twitch
  • Minecraft
  • GameSessions
  • Nuuvem
  • FXStore
  • IndieGala
  • Playfire
  • Oculus
  • Test

0.48

02 Sep 15:38
Compare
Choose a tag to compare
  • Changed shutdown method from synchronous to asynchronous (async)

0.47

13 Aug 14:12
Compare
Choose a tag to compare
  • Added launch_platform_client method.

0.46

02 Aug 13:17
Compare
Choose a tag to compare
  • Added achievements_import_complete and game_times_import_complete methods.

0.45

02 Aug 11:08
Compare
Choose a tag to compare
  • 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) and get_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 and coroutine_mock. Please use MagicMock with async_return_value instead.
  • Fixed exception handling in handshake.

0.44

31 Jul 08:19
49ae2be
Compare
Choose a tag to compare
  • fix features detection
  • add tools to handle process info

0.43

24 Jul 09:02
Compare
Choose a tag to compare
  • 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.