├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── auto-copy-mac.command ├── auto-copy-windows.bat ├── current_version.json ├── galaxy-integration-steam.pyproj ├── galaxy-integration-steam.sln ├── nethook_helpers.py ├── protobuf_files ├── README_UPDATE_PROTOBUF_FILES.md ├── proto │ ├── encrypted_app_ticket.proto │ ├── enums.proto │ ├── service_cloudconfigstore.proto │ ├── steammessages_auth.proto │ ├── steammessages_base.proto │ ├── steammessages_chat.proto │ ├── steammessages_client_objects.proto │ ├── steammessages_clientserver.proto │ ├── steammessages_clientserver_2.proto │ ├── steammessages_clientserver_appinfo.proto │ ├── steammessages_clientserver_friends.proto │ ├── steammessages_clientserver_login.proto │ ├── steammessages_clientserver_userstats.proto │ ├── steammessages_player.proto │ ├── steammessages_unified_base.proto │ └── steammessages_webui_friends.proto ├── protobuf_steammessages.txt └── protobuf_webui.txt ├── pytest.ini ├── requirements ├── app.txt ├── dev.txt └── install.txt ├── src ├── achievements_cache.py ├── backend_interface.py ├── backend_steam_network.py ├── cache.py ├── client.py ├── commonWeb │ ├── css │ │ └── common.css │ ├── fonts │ │ └── LatoWeb │ │ │ ├── LatoWeb-Light.ttf │ │ │ ├── LatoWeb-Regular.ttf │ │ │ └── LatoWeb-Semibold.ttf │ └── img │ │ ├── icon-error.svg │ │ ├── icon-show.svg │ │ ├── icon-steam-logo.svg │ │ └── icon-warning.svg ├── http_client.py ├── leveldb_parser.py ├── manifest.json ├── persistent_cache_state.py ├── plugin.py ├── registry_monitor.py ├── steam_network │ ├── __init__.py │ ├── authentication_cache.py │ ├── cache_proto.py │ ├── custom_login │ │ ├── css │ │ │ └── style.css │ │ └── index.html │ ├── enums.py │ ├── friends_cache.py │ ├── games_cache.py │ ├── local_machine_cache.py │ ├── presence.py │ ├── protocol │ │ ├── __init__.py │ │ ├── consts.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── encrypted_app_ticket_pb2.py │ │ │ ├── enums_pb2.py │ │ │ ├── service_cloudconfigstore_pb2.py │ │ │ ├── steammessages_auth_pb2.py │ │ │ ├── steammessages_base_pb2.py │ │ │ ├── steammessages_chat_pb2.py │ │ │ ├── steammessages_client_objects_pb2.py │ │ │ ├── steammessages_clientserver_2_pb2.py │ │ │ ├── steammessages_clientserver_appinfo_pb2.py │ │ │ ├── steammessages_clientserver_friends_pb2.py │ │ │ ├── steammessages_clientserver_login_pb2.py │ │ │ ├── steammessages_clientserver_pb2.py │ │ │ ├── steammessages_clientserver_userstats_pb2.py │ │ │ ├── steammessages_player_pb2.py │ │ │ ├── steammessages_unified_base_pb2.py │ │ │ └── steammessages_webui_friends_pb2.py │ │ ├── protobuf_client.py │ │ └── steam_types.py │ ├── protocol_client.py │ ├── stats_cache.py │ ├── steam_auth_polling_data.py │ ├── steam_http_client.py │ ├── steam_public_key.py │ ├── times_cache.py │ ├── user_info_cache.py │ ├── utils.py │ ├── w3_hack.py │ ├── websocket_cache_persistence.py │ ├── websocket_client.py │ └── websocket_list.py ├── uri_scheme_handler.py └── version.py ├── tasks.py └── tests ├── appmanifest_386360.acf ├── appmanifest_787480.acf ├── appmanifest_970570.acf ├── async_mock.py ├── conftest.py ├── test_backend_switch.py ├── test_cache.py ├── test_calling_unsupported_method.py ├── test_custom_config.py ├── test_features.py ├── test_integration.py ├── test_local_games.py ├── test_local_size.py ├── test_plugin_version_cache.py ├── test_user_profile_checker.py ├── tests_public_profiles ├── __init__.py ├── conftest.py ├── test_achievements.py ├── test_authentication__public_profile.py ├── test_friends.py ├── test_game_time.py ├── test_lost_authentication.py └── test_owned_games.py └── tests_steam_network ├── __init__.py ├── conftest.py ├── test_achievements.py ├── test_authentication.py ├── test_data.py ├── test_friends.py ├── test_friends_cache.py ├── test_game_time.py ├── test_owned_games.py ├── test_owned_games_cache.py ├── test_presence.py ├── test_protobuf_client.py ├── test_protocol_client.py ├── test_user_info_cache.py ├── test_websocket_client.py └── test_websocket_list.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/README.md -------------------------------------------------------------------------------- /auto-copy-mac.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/auto-copy-mac.command -------------------------------------------------------------------------------- /auto-copy-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/auto-copy-windows.bat -------------------------------------------------------------------------------- /current_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/current_version.json -------------------------------------------------------------------------------- /galaxy-integration-steam.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/galaxy-integration-steam.pyproj -------------------------------------------------------------------------------- /galaxy-integration-steam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/galaxy-integration-steam.sln -------------------------------------------------------------------------------- /nethook_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/nethook_helpers.py -------------------------------------------------------------------------------- /protobuf_files/README_UPDATE_PROTOBUF_FILES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/README_UPDATE_PROTOBUF_FILES.md -------------------------------------------------------------------------------- /protobuf_files/proto/encrypted_app_ticket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/encrypted_app_ticket.proto -------------------------------------------------------------------------------- /protobuf_files/proto/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/enums.proto -------------------------------------------------------------------------------- /protobuf_files/proto/service_cloudconfigstore.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/service_cloudconfigstore.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_auth.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_base.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_chat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_chat.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_client_objects.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_client_objects.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_clientserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_clientserver.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_clientserver_2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_clientserver_2.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_clientserver_appinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_clientserver_appinfo.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_clientserver_friends.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_clientserver_friends.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_clientserver_login.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_clientserver_login.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_clientserver_userstats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_clientserver_userstats.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_player.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_player.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_unified_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_unified_base.proto -------------------------------------------------------------------------------- /protobuf_files/proto/steammessages_webui_friends.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/proto/steammessages_webui_friends.proto -------------------------------------------------------------------------------- /protobuf_files/protobuf_steammessages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/protobuf_steammessages.txt -------------------------------------------------------------------------------- /protobuf_files/protobuf_webui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/protobuf_files/protobuf_webui.txt -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/requirements/app.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/requirements/install.txt -------------------------------------------------------------------------------- /src/achievements_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/achievements_cache.py -------------------------------------------------------------------------------- /src/backend_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/backend_interface.py -------------------------------------------------------------------------------- /src/backend_steam_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/backend_steam_network.py -------------------------------------------------------------------------------- /src/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/cache.py -------------------------------------------------------------------------------- /src/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/client.py -------------------------------------------------------------------------------- /src/commonWeb/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/css/common.css -------------------------------------------------------------------------------- /src/commonWeb/fonts/LatoWeb/LatoWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/fonts/LatoWeb/LatoWeb-Light.ttf -------------------------------------------------------------------------------- /src/commonWeb/fonts/LatoWeb/LatoWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/fonts/LatoWeb/LatoWeb-Regular.ttf -------------------------------------------------------------------------------- /src/commonWeb/fonts/LatoWeb/LatoWeb-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/fonts/LatoWeb/LatoWeb-Semibold.ttf -------------------------------------------------------------------------------- /src/commonWeb/img/icon-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/img/icon-error.svg -------------------------------------------------------------------------------- /src/commonWeb/img/icon-show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/img/icon-show.svg -------------------------------------------------------------------------------- /src/commonWeb/img/icon-steam-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/img/icon-steam-logo.svg -------------------------------------------------------------------------------- /src/commonWeb/img/icon-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/commonWeb/img/icon-warning.svg -------------------------------------------------------------------------------- /src/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/http_client.py -------------------------------------------------------------------------------- /src/leveldb_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/leveldb_parser.py -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/persistent_cache_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/persistent_cache_state.py -------------------------------------------------------------------------------- /src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/plugin.py -------------------------------------------------------------------------------- /src/registry_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/registry_monitor.py -------------------------------------------------------------------------------- /src/steam_network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/steam_network/authentication_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/authentication_cache.py -------------------------------------------------------------------------------- /src/steam_network/cache_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/cache_proto.py -------------------------------------------------------------------------------- /src/steam_network/custom_login/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/custom_login/css/style.css -------------------------------------------------------------------------------- /src/steam_network/custom_login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/custom_login/index.html -------------------------------------------------------------------------------- /src/steam_network/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/enums.py -------------------------------------------------------------------------------- /src/steam_network/friends_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/friends_cache.py -------------------------------------------------------------------------------- /src/steam_network/games_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/games_cache.py -------------------------------------------------------------------------------- /src/steam_network/local_machine_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/local_machine_cache.py -------------------------------------------------------------------------------- /src/steam_network/presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/presence.py -------------------------------------------------------------------------------- /src/steam_network/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/__init__.py -------------------------------------------------------------------------------- /src/steam_network/protocol/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/consts.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/encrypted_app_ticket_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/encrypted_app_ticket_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/enums_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/enums_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/service_cloudconfigstore_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/service_cloudconfigstore_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_auth_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_auth_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_base_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_base_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_chat_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_chat_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_client_objects_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_client_objects_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_clientserver_2_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_clientserver_2_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_clientserver_appinfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_clientserver_appinfo_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_clientserver_friends_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_clientserver_friends_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_clientserver_login_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_clientserver_login_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_clientserver_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_clientserver_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_clientserver_userstats_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_clientserver_userstats_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_player_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_player_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_unified_base_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_unified_base_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/messages/steammessages_webui_friends_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/messages/steammessages_webui_friends_pb2.py -------------------------------------------------------------------------------- /src/steam_network/protocol/protobuf_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/protobuf_client.py -------------------------------------------------------------------------------- /src/steam_network/protocol/steam_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol/steam_types.py -------------------------------------------------------------------------------- /src/steam_network/protocol_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/protocol_client.py -------------------------------------------------------------------------------- /src/steam_network/stats_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/stats_cache.py -------------------------------------------------------------------------------- /src/steam_network/steam_auth_polling_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/steam_auth_polling_data.py -------------------------------------------------------------------------------- /src/steam_network/steam_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/steam_http_client.py -------------------------------------------------------------------------------- /src/steam_network/steam_public_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/steam_public_key.py -------------------------------------------------------------------------------- /src/steam_network/times_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/times_cache.py -------------------------------------------------------------------------------- /src/steam_network/user_info_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/user_info_cache.py -------------------------------------------------------------------------------- /src/steam_network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/utils.py -------------------------------------------------------------------------------- /src/steam_network/w3_hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/w3_hack.py -------------------------------------------------------------------------------- /src/steam_network/websocket_cache_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/websocket_cache_persistence.py -------------------------------------------------------------------------------- /src/steam_network/websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/websocket_client.py -------------------------------------------------------------------------------- /src/steam_network/websocket_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/steam_network/websocket_list.py -------------------------------------------------------------------------------- /src/uri_scheme_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/uri_scheme_handler.py -------------------------------------------------------------------------------- /src/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/src/version.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/appmanifest_386360.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/appmanifest_386360.acf -------------------------------------------------------------------------------- /tests/appmanifest_787480.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/appmanifest_787480.acf -------------------------------------------------------------------------------- /tests/appmanifest_970570.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/appmanifest_970570.acf -------------------------------------------------------------------------------- /tests/async_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/async_mock.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_backend_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_backend_switch.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_calling_unsupported_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_calling_unsupported_method.py -------------------------------------------------------------------------------- /tests/test_custom_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_custom_config.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_local_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_local_games.py -------------------------------------------------------------------------------- /tests/test_local_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_local_size.py -------------------------------------------------------------------------------- /tests/test_plugin_version_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_plugin_version_cache.py -------------------------------------------------------------------------------- /tests/test_user_profile_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/test_user_profile_checker.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests_public_profiles/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/conftest.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/test_achievements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/test_achievements.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/test_authentication__public_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/test_authentication__public_profile.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/test_friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/test_friends.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/test_game_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/test_game_time.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/test_lost_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/test_lost_authentication.py -------------------------------------------------------------------------------- /tests/tests_public_profiles/test_owned_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_public_profiles/test_owned_games.py -------------------------------------------------------------------------------- /tests/tests_steam_network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests_steam_network/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/conftest.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_achievements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_achievements.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_authentication.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_data.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_friends.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_friends_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_friends_cache.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_game_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_game_time.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_owned_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_owned_games.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_owned_games_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_owned_games_cache.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_presence.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_protobuf_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_protobuf_client.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_protocol_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_protocol_client.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_user_info_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_user_info_cache.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_websocket_client.py -------------------------------------------------------------------------------- /tests/tests_steam_network/test_websocket_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOG-Nebula/galaxy-integration-steam/HEAD/tests/tests_steam_network/test_websocket_list.py --------------------------------------------------------------------------------