├── .github └── workflows │ ├── codeql-analysis.yml │ ├── lint.yml │ ├── pythonpackage.yml │ └── updatereleaseversion.yml ├── .gitignore ├── .project ├── .pydevproject ├── LICENSE ├── README.md ├── coverage.bat ├── profile.bat ├── requirements ├── requirements.txt └── requirements_dev.txt └── src ├── Backend.py ├── BackendInfoPage.py ├── CacheDataManipulation.py ├── ExecutionUtil.py ├── GalaxyPluginUtils.py ├── ListGames.py ├── LocalCache.py ├── TaskManagementUtil.py ├── TimeCache.py ├── TimeUtils.py ├── UnittestProject.py ├── UpdatesQueueUtil.py ├── config.cfg ├── configuration.py ├── default_config.cfg ├── generic.py ├── manifest.json └── systems.json /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.github/workflows/updatereleaseversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.github/workflows/updatereleaseversion.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/.pydevproject -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/README.md -------------------------------------------------------------------------------- /coverage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/coverage.bat -------------------------------------------------------------------------------- /profile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/profile.bat -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /requirements/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/requirements/requirements_dev.txt -------------------------------------------------------------------------------- /src/Backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/Backend.py -------------------------------------------------------------------------------- /src/BackendInfoPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/BackendInfoPage.py -------------------------------------------------------------------------------- /src/CacheDataManipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/CacheDataManipulation.py -------------------------------------------------------------------------------- /src/ExecutionUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/ExecutionUtil.py -------------------------------------------------------------------------------- /src/GalaxyPluginUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/GalaxyPluginUtils.py -------------------------------------------------------------------------------- /src/ListGames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/ListGames.py -------------------------------------------------------------------------------- /src/LocalCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/LocalCache.py -------------------------------------------------------------------------------- /src/TaskManagementUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/TaskManagementUtil.py -------------------------------------------------------------------------------- /src/TimeCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/TimeCache.py -------------------------------------------------------------------------------- /src/TimeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/TimeUtils.py -------------------------------------------------------------------------------- /src/UnittestProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/UnittestProject.py -------------------------------------------------------------------------------- /src/UpdatesQueueUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/UpdatesQueueUtil.py -------------------------------------------------------------------------------- /src/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/config.cfg -------------------------------------------------------------------------------- /src/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/configuration.py -------------------------------------------------------------------------------- /src/default_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/default_config.cfg -------------------------------------------------------------------------------- /src/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/generic.py -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewDWhite/GalaxyGenericImporterPlugin/HEAD/src/systems.json --------------------------------------------------------------------------------