{"id":24226716,"url":"https://github.com/doczi-dominik/gelavolt","last_synced_at":"2026-03-09T04:31:30.644Z","repository":{"id":41279523,"uuid":"461528288","full_name":"doczi-dominik/gelavolt","owner":"doczi-dominik","description":"A fanmade version of Japan's favorite puzzle fighter!","archived":false,"fork":false,"pushed_at":"2026-02-11T10:29:13.000Z","size":1141,"stargazers_count":14,"open_issues_count":2,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-11T18:24:30.277Z","etag":null,"topics":["cpp-game","fangame","game","haxe","haxe-game","html5-game","kha","kinc","multiplatform","multiplayer-game","peer-to-peer","peerjs","puyo","puyo-puyo","puzzle-game","websocket"],"latest_commit_sha":null,"homepage":"https://doczi-dominik.github.io/gelavolt-web/","language":"Haxe","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/doczi-dominik.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-02-20T15:23:55.000Z","updated_at":"2026-02-11T10:25:34.000Z","dependencies_parsed_at":"2022-08-02T23:30:05.875Z","dependency_job_id":null,"html_url":"https://github.com/doczi-dominik/gelavolt","commit_stats":null,"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/doczi-dominik/gelavolt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doczi-dominik%2Fgelavolt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doczi-dominik%2Fgelavolt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doczi-dominik%2Fgelavolt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doczi-dominik%2Fgelavolt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doczi-dominik","download_url":"https://codeload.github.com/doczi-dominik/gelavolt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doczi-dominik%2Fgelavolt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30283414,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: 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":["cpp-game","fangame","game","haxe","haxe-game","html5-game","kha","kinc","multiplatform","multiplayer-game","peer-to-peer","peerjs","puyo","puyo-puyo","puzzle-game","websocket"],"created_at":"2025-01-14T09:17:03.248Z","updated_at":"2026-03-09T04:31:30.622Z","avatar_url":"https://github.com/doczi-dominik.png","language":"Haxe","funding_links":[],"categories":[],"sub_categories":[],"readme":"![GelaVolt](readme-icon.png)\n\n# Project GelaVolt\n\n### Join the Development Discord: https://discord.gg/wsWArpAFJK\n### Try GelaVolt's web build at: https://doczi-dominik.github.io/gelavolt-web/\n\nWelcome to GelaVolt, a fanmade version of Japan's favourite competitive puzzle fighter!\n\nGelaVolt's primary goals are:\n- Introduce more people to the game\n- Help new players learn and intermediate players improve\n- (Eventually) Recreate and improve the online experience using rollback netcode, a more robust lobby and matchmaking system, crossplay and more!\n\n\n# Example build environment setup\n## Linux (Debian 11, Ubuntu 20.04)\nUbuntu only; add the `universe` repository (required for `nodejs`):\n```sh\nsudo add-apt-repository universe  # Ubuntu only\n```\n### Install the tools used in these examples:\n```sh\nsudo apt install -V  git nodejs\n```\n### Dependencies\nInstall dependencies for the Kha SDK found at https://github.com/Kode/Kha/wiki/Linux. As of 2022-03-07 these are:\n```sh\nsudo apt install -V  make g++ libxinerama-dev libxrandr-dev libasound2-dev libxi-dev mesa-common-dev libgl-dev libxcursor-dev libvulkan-dev libudev-dev\n```\nInstall other dependencies:\n```sh\nsudo apt install -V  libwayland-dev libegl-dev wayland-protocols libxkbcommon-dev\n```\n(Tested on [debian-live-11.2.0-amd64-standard.iso](https://cdimage.debian.org/cdimage/release/11.2.0-live/amd64/iso-hybrid/) and [ubuntu-20.04.4-desktop-amd64.iso](https://releases.ubuntu.com/20.04.4/))\n##\n\n### Get the GelaVolt source code and the [Kha](https://github.com/Kode/Kha) SDK:\nMake a new folder and set it as the current working directory (optional):\n```sh\nmkdir new_folder \u0026\u0026 cd new_folder\n```\n```sh\ngit clone https://github.com/doczi-dominik/gelavolt.git\n```\n```sh\ngit clone --recursive https://github.com/Kode/Kha.git\n```\n\n### Build\nSet `./gelavolt` as the current working directory:\n```sh\ncd ./gelavolt\n```\nLinux:\n```sh\nnode ../Kha/make.js --compile -t linux -g opengl\n```\nWindows:\n```sh\nnode ../Kha/make.js --compile -t windows -g direct3d11\n```\nhtml5:\n```sh\nnode ../Kha/make.js -t html5\n```\n\n(Use `node ../Kha/make.js -h` for more info about `make.js`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoczi-dominik%2Fgelavolt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoczi-dominik%2Fgelavolt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoczi-dominik%2Fgelavolt/lists"}