{"id":13621959,"url":"https://github.com/henkelmax/mod-update-checker","last_synced_at":"2026-01-05T00:49:28.637Z","repository":{"id":210763136,"uuid":"727362580","full_name":"henkelmax/mod-update-checker","owner":"henkelmax","description":"A library for Minecraft mods, that checks for available updates.","archived":false,"fork":false,"pushed_at":"2024-05-30T19:44:44.000Z","size":158,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-29T10:19:27.194Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/henkelmax.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-12-04T18:01:44.000Z","updated_at":"2024-05-30T19:44:47.000Z","dependencies_parsed_at":"2024-04-09T14:07:16.498Z","dependency_job_id":"757b9605-1528-4032-b5e4-7e07faa8aaa1","html_url":"https://github.com/henkelmax/mod-update-checker","commit_stats":null,"previous_names":["henkelmax/mod-update-checker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henkelmax%2Fmod-update-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henkelmax%2Fmod-update-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henkelmax%2Fmod-update-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/henkelmax%2Fmod-update-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/henkelmax","download_url":"https://codeload.github.com/henkelmax/mod-update-checker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245206834,"owners_count":20577583,"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-08-01T21:01:12.479Z","updated_at":"2026-01-05T00:49:28.048Z","avatar_url":"https://github.com/henkelmax.png","language":"Java","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"# Mod Update Checker\n\nA library for Minecraft mods, that checks for available updates.\nAlso see [this](https://github.com/henkelmax/mod-update-server).\n\n## Usage\n\n### Fabric\n\n*build.gradle*\n``` groovy\nrepositories {\n    maven { url = 'https://maven.maxhenkel.de/repository/public' }\n}\ndependencies {\n    // Use shadow or include to embed the dependency in your mod\n    implementation \"de.maxhenkel.updatechecker:mod-update-checker:1.0.0+fabric\"\n}\n```\n\n*fabric.mod.json*\n``` json\n{\n  ...\n  \"custom\": {\n    \"updateUrl\": \"https://your-update-server.com/check/fabric/yourmod\"\n  }\n}\n```\n\n*Your entrypoint class*\n``` java\npublic class YourMod implements ModInitializer {\n    @Override\n    public void onInitialize() {\n        // This logs if updates are available\n        FabricUpdateChecker.logUpdateStateAsync(\"your_mod_id\");\n        \n        // This checks for updates and gives you the result\n        UpdateResponse updateResponse = FabricUpdateChecker.check(\"your_mod_id\");\n        //TODO Handle notifying for updates\n    }\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhenkelmax%2Fmod-update-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhenkelmax%2Fmod-update-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhenkelmax%2Fmod-update-checker/lists"}