{"id":18776295,"url":"https://github.com/jdolan/quetoo-installer-java","last_synced_at":"2026-04-02T12:50:06.072Z","repository":{"id":50090386,"uuid":"77882157","full_name":"jdolan/quetoo-installer-java","owner":"jdolan","description":"Java-based software updater for Quetoo","archived":false,"fork":false,"pushed_at":"2026-02-07T22:41:50.000Z","size":130,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-08T04:20:28.647Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jdolan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","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":"2017-01-03T03:52:19.000Z","updated_at":"2026-02-07T22:41:51.000Z","dependencies_parsed_at":"2024-12-29T09:27:01.308Z","dependency_job_id":"646b7845-9354-49c2-a3ed-fb7eafda8228","html_url":"https://github.com/jdolan/quetoo-installer-java","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jdolan/quetoo-installer-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdolan%2Fquetoo-installer-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdolan%2Fquetoo-installer-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdolan%2Fquetoo-installer-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdolan%2Fquetoo-installer-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jdolan","download_url":"https://codeload.github.com/jdolan/quetoo-installer-java/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdolan%2Fquetoo-installer-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29500595,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T03:57:51.541Z","status":"ssl_error","status_checked_at":"2026-02-16T03:55:59.854Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-07T19:45:50.039Z","updated_at":"2026-04-02T12:50:06.060Z","avatar_url":"https://github.com/jdolan.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://github.com/jdolan/quetoo-installer-java/actions/workflows/build.yml/badge.svg)](https://github.com/jdolan/quetoo-installer-java/actions/workflows/build.yml)\n[![Zlib License](https://img.shields.io/badge/license-Zlib%20License-green.svg)](COPYING)\n![This software is BETA](https://img.shields.io/badge/development_stage-BETA-yellowgreen.svg)\n\n# Quetoo Installer\n\n![Quetoo BETA](https://raw.githubusercontent.com/jdolan/quetoo/main/quetoo-edge.jpg)\n\n## Overview\n\nA cross-platform installer and update utility for [_Quetoo_](https://github.com/jdolan/quetoo). It synchronizes local game files with remote S3 buckets using intelligent delta syncing — only modified or missing files are downloaded, based on MD5 hash comparison. Both a Swing-based GUI and a headless console mode are supported.\n\nTwo S3 buckets are synced:\n\n- **`quetoo`** — Platform-specific binaries and libraries\n- **`quetoo-data`** — Game assets (platform-agnostic)\n\n### Supported Platforms\n\n| Build name             | Platform |\n|------------------------|---|\n| `arm64-apple-darwin`   | macOS |\n| `x86_64-pc-linux`      | Linux |\n| `x86_64-pc-windows`    | Windows |\n\nThe platform is auto-detected from the host OS at runtime.\n\n## Requirements\n\n- Java 21 or later\n\n## Building\n\nThis project builds with [Maven 3](https://maven.apache.org/):\n\n```bash\nmvn package [-DskipTests]\n```\n\nThe [Shade](https://maven.apache.org/plugins/maven-shade-plugin/) plugin produces an _uber_ `.jar` with all dependencies bundled.\n\nTo also minify with [ProGuard](https://github.com/wvengen/proguard-maven-plugin):\n\n```bash\nmvn -Pproguard package\n```\n\n## Usage\n\n### GUI mode (default)\n\n```bash\njava -jar quetoo-installer.jar\n```\n\nLaunches a Swing UI with a progress bar, status label, and scrollable log output.\n\n### Console mode\n\n```bash\njava -jar quetoo-installer.jar --console\n```\n\nPrints sync progress to stdout and errors to stderr.\n\n### CLI Options\n\n| Option | Long | Default | Description |\n|---|---|---|---|\n| `-b` | `--build` | auto-detected | Target platform (e.g. `x86_64-w64-mingw32`) |\n| `-d` | `--dir` | OS-dependent | Installation directory |\n| `-p` | `--prune` | `false` | Remove local files not present in the remote index |\n| `-c` | `--console` | `false` | Run in console mode (no GUI) |\n\n## License\n\nSee [COPYING](COPYING) for license details.\n\n## Support\n\n- Join the [Quetoo Discord](https://discord.gg/unb9U4b)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdolan%2Fquetoo-installer-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjdolan%2Fquetoo-installer-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdolan%2Fquetoo-installer-java/lists"}