├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── current_version.json ├── pytest.ini ├── readme.md ├── requirements ├── app.txt └── dev.txt ├── src ├── backend.py ├── consts.py ├── definitions.py ├── http_client.py ├── local.py ├── plugin.py ├── process_watcher.py └── version.py └── tests ├── conftest.py ├── test_authentication.py ├── test_http_client.py ├── test_is_installed.py ├── test_owned_games.py ├── test_parser.py ├── test_process_watcher.py └── utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/LICENSE -------------------------------------------------------------------------------- /current_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/current_version.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/pytest.ini -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/readme.md -------------------------------------------------------------------------------- /requirements/app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/requirements/app.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /src/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/backend.py -------------------------------------------------------------------------------- /src/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/consts.py -------------------------------------------------------------------------------- /src/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/definitions.py -------------------------------------------------------------------------------- /src/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/http_client.py -------------------------------------------------------------------------------- /src/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/local.py -------------------------------------------------------------------------------- /src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/plugin.py -------------------------------------------------------------------------------- /src/process_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/process_watcher.py -------------------------------------------------------------------------------- /src/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/src/version.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/test_authentication.py -------------------------------------------------------------------------------- /tests/test_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/test_http_client.py -------------------------------------------------------------------------------- /tests/test_is_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/test_is_installed.py -------------------------------------------------------------------------------- /tests/test_owned_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/test_owned_games.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_process_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/test_process_watcher.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfGalaxy/galaxy-integration-epic/HEAD/tests/utils.py --------------------------------------------------------------------------------