# The remote definition users add. Published to the root of the GitHub Pages # site by .github/workflows/flatpak.yml, which is also the only thing that # should ever edit it: # # flatpak remote-add --if-not-exists cordial \ # https://luohoa97.github.io/cordial/cordial.flatpakrepo # flatpak install cordial io.github.luohoa97.Cordial # # There is deliberately no GPGKey line here. The workflow appends one when the # FLATPAK_GPG_PRIVATE_KEY secret is set, and appends nothing when it is not. # # That second half used to read "adds `GPGKey=` with nothing after it, which is # how a .flatpakrepo says this remote is unsigned in a way flatpak understands, # rather than by omission". It is a nice sentence and it is false. Measured # against the deployed remote with flatpak 1.18.0, `GPGKey=` with an empty value # is refused outright — `error: Invalid gpg key`, and `remote-add` fails — while # omitting the line is accepted and sets gpg-verify=false. The published file # was unusable for the first eight minutes of its existence for exactly this. # # A key committed to the repository would be a key anyone can sign with, so the # real one only ever exists as an Actions secret. # # Url has to be the OSTree repository, not the site root: the site root is the # project's web page and a browser hitting it should get that. # # The repository carries two branches. `stable` is only ever moved by a # tagged release and is this remote's default, so the install command above # lands there with no branch named. `master` moves on every push to main and # is what installing before this comment existed put you on -- if `flatpak # list` shows `io.github.luohoa97.Cordial` on branch `master`, move to the # release channel with: # # flatpak uninstall io.github.luohoa97.Cordial//master # flatpak install cordial io.github.luohoa97.Cordial//stable # # (add --user to both if you installed with it). To stay on master instead -- # every commit, not just releases -- name it explicitly: # # flatpak install cordial io.github.luohoa97.Cordial//master [Flatpak Repo] Title=Cordial Url=https://luohoa97.github.io/cordial/repo/ Homepage=https://luohoa97.github.io/cordial/ Icon=https://raw.githubusercontent.com/luohoa97/cordial/main/packaging/icons/hicolor/scalable/apps/io.github.luohoa97.Cordial.svg Description=Run Roblox on Linux natively. Cordial loads Roblox's official Android x86-64 engine directly, with no emulator, container or virtual machine. It ships no Roblox code; you supply the Android client yourself.