├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── src ├── __init__.py ├── consts.py ├── default_config.cfg ├── game_cache.py ├── http_client.py ├── js ├── GenerateFingerprint.js ├── HashGen.js └── fingerprint2.js ├── local.py ├── manifest.json ├── plugin.py └── version.py /.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | /src/config.cfg 3 | /.vs 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/consts.py -------------------------------------------------------------------------------- /src/default_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/default_config.cfg -------------------------------------------------------------------------------- /src/game_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/game_cache.py -------------------------------------------------------------------------------- /src/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/http_client.py -------------------------------------------------------------------------------- /src/js/GenerateFingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/js/GenerateFingerprint.js -------------------------------------------------------------------------------- /src/js/HashGen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/js/HashGen.js -------------------------------------------------------------------------------- /src/js/fingerprint2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/js/fingerprint2.js -------------------------------------------------------------------------------- /src/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/local.py -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerbrawl/Galaxy-Plugin-Rockstar/HEAD/src/plugin.py -------------------------------------------------------------------------------- /src/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.15" 2 | --------------------------------------------------------------------------------