├── .gitignore ├── .gitmodules ├── README.md ├── app_dict.py ├── appinfo_dict.py ├── fix_db.py └── get_conceptid.py /.gitignore: -------------------------------------------------------------------------------- 1 | tmp/* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroendev-one/ps5-db-rebuilder-ext/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroendev-one/ps5-db-rebuilder-ext/HEAD/README.md -------------------------------------------------------------------------------- /app_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroendev-one/ps5-db-rebuilder-ext/HEAD/app_dict.py -------------------------------------------------------------------------------- /appinfo_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroendev-one/ps5-db-rebuilder-ext/HEAD/appinfo_dict.py -------------------------------------------------------------------------------- /fix_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroendev-one/ps5-db-rebuilder-ext/HEAD/fix_db.py -------------------------------------------------------------------------------- /get_conceptid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroendev-one/ps5-db-rebuilder-ext/HEAD/get_conceptid.py --------------------------------------------------------------------------------