{"id":19293504,"url":"https://github.com/reloaded-project/reloaded.community","last_synced_at":"2025-07-19T13:02:40.887Z","repository":{"id":97077780,"uuid":"445528235","full_name":"Reloaded-Project/Reloaded.Community","owner":"Reloaded-Project","description":"Community repository for storing Reloaded-II application configurations.","archived":false,"fork":false,"pushed_at":"2025-01-19T20:03:17.000Z","size":138,"stargazers_count":2,"open_issues_count":3,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-19T21:21:35.804Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Reloaded-Project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-07T13:21:13.000Z","updated_at":"2025-01-19T20:02:20.000Z","dependencies_parsed_at":"2024-03-31T02:25:12.909Z","dependency_job_id":"736d9712-15fe-4622-adff-b9b61bde298b","html_url":"https://github.com/Reloaded-Project/Reloaded.Community","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloaded-Project%2FReloaded.Community","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloaded-Project%2FReloaded.Community/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloaded-Project%2FReloaded.Community/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloaded-Project%2FReloaded.Community/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Reloaded-Project","download_url":"https://codeload.github.com/Reloaded-Project/Reloaded.Community/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240396807,"owners_count":19794732,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T22:35:14.280Z","updated_at":"2025-02-24T00:22:01.325Z","avatar_url":"https://github.com/Reloaded-Project.png","language":null,"readme":"# Community Repository for Reloaded II\n\nThis repository provides various community managed configurations for different communities which use Reloaded-II. These configurations can be used to influence the behaviour of Reloaded-II's launcher when certain operations are performed, such as adding a new application to the launcher.\n\nMost data for profiles can be autogenerated by using the `Reloaded.Community` tool. You can find this tool in the `Tools.zip` [download in the main Reloaded repository](https://github.com/Reloaded-Project/Reloaded-II/releases/latest).\n\n## Applications\n\nProfiles for various different applications can be found in the `Apps` folder. Each application has its own folder, which contains a `.json` file (or multiple, for different versions) with the application's settings.\n\n### Generating Application Profiles\n\nTo get the list of available application profiles, run the following command from the command prompt.\n\n```\nReloaded.Community.Tool.exe createTemplate --type Application\n```\n\nYou may then create a profile template by using the following command:\n\n```\nReloaded.Community.Tool.exe createTemplate --id tsonic_win.exe\n```\n\nUsing an ID returned from the previous step. Once done, additional configuration data can be specified using the schema below.\n\n### Application Schema\n\n```json\n{\n  \"Hash\": \"XXHASH64 of EXE Goes Here\",\n  \"AppId\": \"application.id\",\n  \"AppStatus\": 0,\n  \"AppName\": \"Application Name\",\n  \"Description\": \"Application Description\",\n  \"GameBananaId\": 1337,\n  \"Warnings\": [\n    {\n      \"ErrorMessage\": \"Sample Error\",\n      \"Items\": [\n        {\n          \"Hash\": \"XXHASH64 Goes Here\",\n          \"FilePath\": \"legit_folder/legit_file.zip\"\n        }\n      ]\n    }\n  ]\n}\n```\n\n### Main\n\n| Item                  | Description                                                                                              |\n|-----------------------|----------------------------------------------------------------------------------------------------------|\n| Hash                  | Hash of main executable.                                                                                 |\n| AppId                 | Unique ID of the application.                                                                            |\n| AppStatus             | 0 = Valid. 1 = Invalid. If 1, shows warning in launcher. Use 1 for marking wrong EXEs in game folder(s). |\n| AppName               | Name of the application. Overrides the auto generated name in Reloaded's launcher.                       |\n| BadHashDescription    | Description shown for when game matches by ID but not by hash. (e.g. Good game, bad EXE)                 |\n| BadStatusDescription  | A description shown if AppStatus is set to 1. Provide information about the potential issue here.        |\n| GameBananaId          | Game ID for GameBanana. Available e.g. 6061 for https://gamebanana.com/games/6061                        |\n\nIn order to obtain hashes of files, use `Reloaded.Community.Tool.exe hash --source \"PATH_TO_FILE\"`.\n\n### Warnings\n\nCan be used to provide warnings for 3rd party components. e.g. Old DLL mods incompatible with Reloaded, Steam API Emulator DLLs, etc.\n\n| Item         | Description                                            |\n|--------------|--------------------------------------------------------|\n| ErrorMessage | The error message to display if any files are matched. |\n| Items        | [Warning Item(s) List of files to match against.       |\n\n\n### Warning Item\n\n| Item     | Description                                                            |\n|----------|------------------------------------------------------------------------|\n| Hash     | [Optional] Hash of the item.                                           |\n| FilePath | Path of the file relative to the folder in which the EXE is contained. |\n\nIf the hash is provided, a warning will only be thrown if the file exists AND it matches the specified hash. If the hash is not provided, a warning will be thrown if the file exists. Use this to mark specific versions of files.\n\n## Testing Configurations\n\nYou can test your created configurations by using the `Test Community Configuration` button under `Advanced Tools \u0026 Options`.  \n\n![Image](./Docs/TestReference.png)\n\n## Contributing\n\nCreate an `Issue` with a new profile, or if you are more familiar with GitHub, a pull request.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freloaded-project%2Freloaded.community","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freloaded-project%2Freloaded.community","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freloaded-project%2Freloaded.community/lists"}